From 9efe00c241110fd1018dcb04b5aaa1489e18a57d Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 12:23:35 -0300 Subject: [PATCH 01/34] Update index cisco_xr_show_ipv4_interface.textfsm, .*, cisco_xr, sh[[ow]] ip[[v4]](?: vrf \S+)? int[[erface]] can now serve both "show ipv4 interface" and "show ipv4 vrf interface" commands --- ntc_templates/templates/index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntc_templates/templates/index b/ntc_templates/templates/index index c6ddfb85f5..886e237560 100644 --- a/ntc_templates/templates/index +++ b/ntc_templates/templates/index @@ -509,7 +509,7 @@ cisco_xr_show_interface_brief.textfsm, .*, cisco_xr, sh[[ow]] int[[erface]] br[[ cisco_xr_admin_show_platform.textfsm, .*, cisco_xr, adm[[in]] sh[[ow]] pla[[tform]] cisco_xr_show_install_active.textfsm, .*, cisco_xr, sh[[ow]] install active cisco_xr_show_ip_bgp_summary.textfsm, .*, cisco_xr, sh[[ow]] ip b[[gp]] s[[ummary]] -cisco_xr_show_ipv4_interface.textfsm, .*, cisco_xr, sh[[ow]] ip[[v4]] int[[erface]] +cisco_xr_show_ipv4_interface.textfsm, .*, cisco_xr, sh[[ow]] ip[[v4]](?: vrf \S+)? int[[erface]] cisco_xr_show_ipv6_neighbors.textfsm, .*, cisco_xr, sh[[ow]] ipv6 ne[[ighbors]] cisco_xr_show_isis_neighbors.textfsm, .*, cisco_xr, sh[[ow]] isis ne[[ighbors]] cisco_xr_show_lldp_neighbors.textfsm, .*, cisco_xr, sh[[ow]] lld[[p]] neig[[hbors]] From 8bf47af4e0d1cd746d1e9dd5d601a988f12a1669 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 12:26:49 -0300 Subject: [PATCH 02/34] Update cisco_xr_show_ipv4_interface.textfsm Added fields of interest: Secondary IP address Secondary IP prefix lenght VRF ID Output ACL Input ACL RPF Check --- .../cisco_xr_show_ipv4_interface.textfsm | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/ntc_templates/templates/cisco_xr_show_ipv4_interface.textfsm b/ntc_templates/templates/cisco_xr_show_ipv4_interface.textfsm index 3884512ad2..f5404b15c3 100644 --- a/ntc_templates/templates/cisco_xr_show_ipv4_interface.textfsm +++ b/ntc_templates/templates/cisco_xr_show_ipv4_interface.textfsm @@ -3,18 +3,27 @@ Value LINK_STATUS (\S+) Value PROTOCOL (\S+) Value PROTOCOL_STATUS (\S+) Value VRF (\S+) +Value VRF_ID (\S+) Value IP_ADDRESS (\S+?) +Value List SEC_IP_ADDRESS (\S+?) Value PREFIX_LENGTH (\d*) +Value List SEC_PREFIX_LENGTH (\d*) Value MTU (\d+) Value IP_MTU (\d+) Value List MULTICAST_GROUPS (\d+\.\d+\.\d+\.\d+) +Value OUT_ACL (.*) +Value IN_ACL (.*) +Value RPF_CHECK (\S+) + Start ^(Mon?)|(Tue?)|(Wed?)|(Thu?)|(Fri?)|(Sat?)|(Sun?)\s.*$$ ^\S+\s+is -> Continue.Record ^${INTERFACE}\sis\s${LINK_STATUS},\s+${PROTOCOL}\sprotocol\sis\s${PROTOCOL_STATUS}.*$$ - ^\s+Vrf\sis\s${VRF}\s.*$$ + ^\s+Vrf\s+is\s+${VRF}\s+\(vrfid\s+${VRF_ID}\) ^\s+Internet\s+address\s+is\s+${IP_ADDRESS}/?${PREFIX_LENGTH}\s*$$ + ^\s+Secondary\s+address\s+${SEC_IP_ADDRESS}/?${SEC_PREFIX_LENGTH}\s*$$ + ^\s+Interface\s+is\s+unnumbered\S* ^\s+MTU\s+is\s+${MTU}\s+\(${IP_MTU}\s+is\s+available\s+to\s+IP\) ^\s+Helper.*$$ ^\s+Multicast\s+reserved\s+groups\s+joined\:\s+${MULTICAST_GROUPS} -> Continue @@ -23,15 +32,15 @@ Start ^\s+Multicast\s+reserved\s+groups\s+joined\:\s+ -> MULTICAST ^\s+Internet\s+protocol.*$$ ^\s+Directed.*$$ - ^\s+Outgoing.*$$ - ^\s+Inbound.*$$ + ^\s+Outgoing\s+access\s+list\s+is\s+${OUT_ACL} + ^\s+Inbound\s+(?:common)?\s+access\s+list\s+is\s+${IN_ACL} ^\s+Proxy.*$$ ^\s+ICMP redirects.*$$ ^\s+ICMP unreachables.*$$ ^\s+ICMP mask.*$$ ^\s+Table.*$$ ^\s+mLACP.*$$ - ^IP\s+unicast\s+RPF.*$$ + ^IP\s+unicast\s+RPF\s+check\s+is\s+${RPF_CHECK} ^RPF\s+mode.*$$ ^\s*$$ ^. -> Error @@ -50,4 +59,4 @@ MULTICAST ^\s+(?:\S+\s+){9}${MULTICAST_GROUPS} -> Continue ^\s+(?:\S+\s+){10}${MULTICAST_GROUPS} -> Continue ^.* -> Start - ^. -> Error MULTICAST \ No newline at end of file + ^. -> Error MULTICAST From f9eee7b86fdc18bf475c8be167b04fb19051a326 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 15:05:14 -0300 Subject: [PATCH 03/34] Create cisco_xr_show_ipv4_interface4.raw Test file with values for secondary IP and mask lenght, access list, RPF --- .../cisco_xr_show_ipv4_interface4.raw | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.raw diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.raw b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.raw new file mode 100644 index 0000000000..204ad3d084 --- /dev/null +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.raw @@ -0,0 +1,78 @@ +Mon Jul 22 13:06:06.159 BRA +TenGigE0/4/0/2.16089 is Up, ipv4 protocol is Up + Vrf is default (vrfid 0x60000000) + Internet address is 10.23.115.17/30 + Secondary address 10.90.15.3/30 + MTU is 1522 (1500 is available to IP) + Helper address is not set + Multicast reserved groups joined: 224.0.0.2 224.0.0.1 224.0.0.1 + Directed broadcast forwarding is disabled + Outgoing access list is not set + Inbound access list is iACL + Proxy ARP is disabled + ICMP redirects are never sent + ICMP unreachables are always sent + ICMP mask replies are never sent + Table Id is 0xe0000000 +TenGigE0/4/0/4.18846 is Up, ipv4 protocol is Up + Vrf is default (vrfid 0x60000000) + Internet address is 10.21.19.29/30 + Secondary address 10.55.55.1/30 + MTU is 1522 (1500 is available to IP) + Helper address is not set + Multicast reserved groups joined: 224.0.0.2 224.0.0.1 224.0.0.1 + Directed broadcast forwarding is disabled + Outgoing access list is oACL + Inbound access list is iACL + Proxy ARP is disabled + ICMP redirects are never sent + ICMP unreachables are always sent + ICMP mask replies are never sent + Table Id is 0xe0000000 +IP unicast RPF check is enabled +TenGigE0/4/0/4.22006 is Up, ipv4 protocol is Up + Vrf is RED_CLIENT:5581 (vrfid 0x6000002c) + Internet address is 10.11.124.29/30 + Secondary address 10.31.1.1/30 + MTU is 1522 (1500 is available to IP) + Helper address is not set + Multicast reserved groups joined: 224.0.0.2 224.0.0.1 224.0.0.1 + Directed broadcast forwarding is disabled + Outgoing access list is not set + Inbound access list is not set + Proxy ARP is disabled + ICMP redirects are never sent + ICMP unreachables are always sent + ICMP mask replies are never sent + Table Id is 0xe0000000 +GigabitEthernet0/4/0/10.17 is Up, ipv4 protocol is Up + Vrf is default (vrfid 0x60000000) + Internet address is 10.250.25.33/30 + Secondary address 10.21.21.11/30 + MTU is 1518 (1500 is available to IP) + Helper address is not set + Multicast reserved groups joined: 224.0.0.2 224.0.0.1 224.0.0.1 + Directed broadcast forwarding is disabled + Outgoing access list is oACL + Inbound access list is iACL + Proxy ARP is disabled + ICMP redirects are never sent + ICMP unreachables are always sent + ICMP mask replies are never sent + Table Id is 0xe0000000 +IP unicast RPF check is enabled +TenGigE0/4/0/4.15025 is Up, ipv4 protocol is Up + Vrf is RED_CLIENT:5581 (vrfid 0x6000002c) + Internet address is 10.186.149.1/30 + MTU is 1522 (1500 is available to IP) + Helper address is not set + Multicast reserved groups joined: 224.0.0.2 224.0.0.1 + Directed broadcast forwarding is disabled + Outgoing access list is not set + Inbound access list is not set + Proxy ARP is disabled + ICMP redirects are never sent + ICMP unreachables are always sent + ICMP mask replies are never sent + Table Id is 0xe000003b +IP unicast RPF check is enabled From 5f18eac1d8e995657116f35de4e23ead8708ce90 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 15:06:28 -0300 Subject: [PATCH 04/34] Create cisco_xr_show_ipv4_interface4.yaml --- .../cisco_xr_show_ipv4_interface4.yaml | 104 ++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml new file mode 100644 index 0000000000..f855fc810e --- /dev/null +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml @@ -0,0 +1,104 @@ +--- +parsed_sample: + - interface: TenGigE0/4/0/2.16089 + in_acl: iACL + ip_address: 10.23.115.17 + ip_mtu: '1500' + link_status: Up + mtu: '1522' + multicast_groups: + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.1 + out_acl: not set + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: + - 10.90.15.3 + sec_prefix_length: + - '30' + vrf: default + vrf_id: '0x60000000' + - interface: TenGigE0/4/0/4.18846 + in_acl: iACL + ip_address: 10.21.19.29 + ip_mtu: '1500' + link_status: Up + mtu: '1522' + multicast_groups: + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.1 + out_acl: oACL + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: enabled + sec_ip_address: + - 10.55.55.1 + sec_prefix_length: + - '30' + vrf: default + vrf_id: '0x60000000' + - interface: TenGigE0/4/0/4.22006 + in_acl: not set + ip_address: 10.11.124.29 + ip_mtu: '1500' + link_status: Up + mtu: '1522' + multicast_groups: + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.1 + out_acl: not set + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: + - 10.31.1.1 + sec_prefix_length: + - '30' + vrf: RED_CLIENT:5581 + vrf_id: '0x6000002c' + - interface: GigabitEthernet0/4/0/10.17 + in_acl: iACL + ip_address: 10.250.25.33 + ip_mtu: '1500' + link_status: Up + mtu: '1518' + multicast_groups: + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.1 + out_acl: oACL + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: enabled + sec_ip_address: + - 10.21.21.11 + sec_prefix_length: + - '30' + vrf: default + vrf_id: '0x60000000' + - interface: TenGigE0/4/0/4.15025 + in_acl: not set + ip_address: 10.186.149.1 + ip_mtu: '1500' + link_status: Up + mtu: '1522' + multicast_groups: + - 224.0.0.2 + - 224.0.0.1 + out_acl: not set + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: enabled + sec_ip_address: [] + sec_prefix_length: [] + vrf: RED_CLIENT:5581 + vrf_id: '0x6000002c' From 7d3618978af2ebc3e07415326fa4105ee81fc873 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 15:08:07 -0300 Subject: [PATCH 05/34] Update cisco_xr_show_ipv4_interface3.yml --- .../cisco_xr_show_ipv4_interface3.yml | 886 +++++++++++------- 1 file changed, 545 insertions(+), 341 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 08be1b56d2..92496a9005 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -1,377 +1,581 @@ --- parsed_sample: - - interface: "Loopback0" - ip_address: "172.12.12.72" - ip_mtu: "1500" - link_status: "Up" - mtu: "1500" + - interface: Loopback0 + in_acl: not set, access list is not set + ip_address: 172.12.12.72 + ip_mtu: '1500' + link_status: Up + mtu: '1500' multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.13" - - "224.0.0.22" - - "224.0.1.40" - prefix_length: "32" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "FourHundredGigE0/0/0/0" - ip_address: "172.1.1.78" - ip_mtu: "9100" - link_status: "Up" - mtu: "9114" + - 224.0.0.1 + - 224.0.0.2 + - 224.0.0.13 + - 224.0.0.22 + - 224.0.1.40 + out_acl: not set + prefix_length: '32' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/0 + in_acl: not set, access list is not set + ip_address: 172.1.1.78 + ip_mtu: '9100' + link_status: Up + mtu: '9114' multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" - prefix_length: "31" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "FourHundredGigE0/0/0/1" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + - 224.0.0.1 + - 224.0.0.2 + - 224.0.0.5 + - 224.0.0.6 + - 224.0.0.13 + - 224.0.0.22 + out_acl: not set + prefix_length: '31' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/1 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/2" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/2 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/3" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/3 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/4" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/4 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/5" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/5 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/6" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/6 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/7" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/7 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/8" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/8 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/9" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/9 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/10" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/10 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/11" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/11 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/12" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/12 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/13" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/13 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/14" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/14 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/15" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/15 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/16" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/16 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/17" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/17 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/18" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/18 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/19" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/19 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/20" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/20 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/21" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/21 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/22" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/22 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/23" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/23 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/24" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/24 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/25" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/25 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/26" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/26 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/27" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/27 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "FourHundredGigE0/0/0/28" - ip_address: "172.1.1.65" - ip_mtu: "9100" - link_status: "Up" - mtu: "9114" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/28 + in_acl: not set, access list is not set + ip_address: 172.1.1.65 + ip_mtu: '9100' + link_status: Up + mtu: '9114' multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" - prefix_length: "31" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "FourHundredGigE0/0/0/29" - ip_address: "172.1.1.67" - ip_mtu: "9100" - link_status: "Up" - mtu: "9114" + - 224.0.0.1 + - 224.0.0.2 + - 224.0.0.5 + - 224.0.0.6 + - 224.0.0.13 + - 224.0.0.22 + out_acl: not set + prefix_length: '31' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: FourHundredGigE0/0/0/29 + in_acl: not set, access list is not set + ip_address: 172.1.1.67 + ip_mtu: '9100' + link_status: Up + mtu: '9114' multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" - prefix_length: "31" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "HundredGigE0/0/0/30" - ip_address: "172.1.1.72" - ip_mtu: "9100" - link_status: "Up" - mtu: "9114" + - 224.0.0.1 + - 224.0.0.2 + - 224.0.0.5 + - 224.0.0.6 + - 224.0.0.13 + - 224.0.0.22 + out_acl: not set + prefix_length: '31' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: HundredGigE0/0/0/30 + in_acl: not set, access list is not set + ip_address: 172.1.1.72 + ip_mtu: '9100' + link_status: Up + mtu: '9114' multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" - prefix_length: "31" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "HundredGigE0/0/0/31" - ip_address: "172.1.1.74" - ip_mtu: "9100" - link_status: "Up" - mtu: "9114" + - 224.0.0.1 + - 224.0.0.2 + - 224.0.0.5 + - 224.0.0.6 + - 224.0.0.13 + - 224.0.0.22 + out_acl: not set + prefix_length: '31' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: HundredGigE0/0/0/31 + in_acl: not set, access list is not set + ip_address: 172.1.1.74 + ip_mtu: '9100' + link_status: Up + mtu: '9114' multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" - prefix_length: "31" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "MgmtEth0/RP0/CPU0/0" - ip_address: "172.1.55.93" - ip_mtu: "1500" - link_status: "Up" - mtu: "1514" + - 224.0.0.1 + - 224.0.0.2 + - 224.0.0.5 + - 224.0.0.6 + - 224.0.0.13 + - 224.0.0.22 + out_acl: not set + prefix_length: '31' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: MgmtEth0/rp0/cpu0/0 + in_acl: not set, access list is not set + ip_address: 172.1.55.93 + ip_mtu: '1500' + link_status: Up + mtu: '1514' multicast_groups: [] - prefix_length: "24" - protocol: "ipv4" - protocol_status: "Up" - vrf: "management" + out_acl: not set + prefix_length: '24' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: management + vrf_id: '0x60000001' From 08cc7115013828d659ad5f7ad1ebe3e16ee23333 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 15:08:31 -0300 Subject: [PATCH 06/34] Update cisco_xr_show_ipv4_interface2.yml --- .../cisco_xr_show_ipv4_interface2.yml | 96 +++++++++++-------- 1 file changed, 57 insertions(+), 39 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml index 9a2a9a0f64..1eb7a34049 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml @@ -1,44 +1,62 @@ --- parsed_sample: - - interface: "TenGigE0/0/0/6" - ip_address: "10.1.1.1" - ip_mtu: "9202" - link_status: "Up" - mtu: "9216" + - interface: TengigE0/0/0/6 + in_acl: not set + ip_address: 10.1.1.1 + ip_mtu: '9202' + link_status: Up + mtu: '9216' multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" - prefix_length: "31" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "Bundle-Ether10.23" - ip_address: "10.1.1.7" - ip_mtu: "9100" - link_status: "Up" - mtu: "9118" + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.5 + - 224.0.0.6 + - 224.0.0.13 + - 224.0.0.22 + out_acl: not set + prefix_length: '31' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: Bundle-Ether10.23 + in_acl: not set + ip_address: 10.1.1.7 + ip_mtu: '9100' + link_status: Up + mtu: '9118' multicast_groups: - - "224.0.0.1" - - "224.0.0.6" - prefix_length: "31" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" - - interface: "TenGigE0/5/0/2.3" - ip_address: "10.2.2.1" - ip_mtu: "1500" - link_status: "Up" - mtu: "9210" + - 224.0.0.1 + - 224.0.0.6 + out_acl: not set + prefix_length: '31' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: TengigE0/5/0/2.3 + in_acl: BLOCK + ip_address: 10.2.2.1 + ip_mtu: '1500' + link_status: Up + mtu: '9210' multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.13" - - "224.0.0.22" - prefix_length: "30" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.13 + - 224.0.0.22 + out_acl: not set + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: enabled + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' From 88527b195006514808e01be211e3be248499030c Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 15:09:01 -0300 Subject: [PATCH 07/34] Update cisco_xr_show_ipv4_interface1.yml --- .../cisco_xr_show_ipv4_interface1.yml | 52 ++++++++++++------- 1 file changed, 32 insertions(+), 20 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml index 5aace0f6b6..6b35cb5954 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml @@ -1,24 +1,36 @@ --- parsed_sample: - - interface: "MgmtEth0/0/CPU0/0" - ip_address: "172.25.82.44" - ip_mtu: "1500" - link_status: "Up" - mtu: "1514" + - interface: MgmtEth0/0/cpu0/0 + in_acl: not set, access list is not set + ip_address: 172.25.82.44 + ip_mtu: '1500' + link_status: Up + mtu: '1514' multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - prefix_length: "24" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "GigabitEthernet0/0/0/0" - ip_address: "" - ip_mtu: "" - link_status: "Shutdown" - mtu: "" + - 224.0.0.2 + - 224.0.0.1 + out_acl: not set + prefix_length: '24' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: GigabitEthernet0/0/0/0 + in_acl: '' + ip_address: '' + ip_mtu: '' + link_status: Shutdown + mtu: '' multicast_groups: [] - prefix_length: "" - protocol: "ipv4" - protocol_status: "Down" - vrf: "default" + out_acl: '' + prefix_length: '' + protocol: ipv4 + protocol_status: Down + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' From ffe315b8874b6d8b0f5dda5094c959ec7dbe2bbb Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 15:09:24 -0300 Subject: [PATCH 08/34] Update cisco_xr_show_ipv4_interface.yml --- .../cisco_xr_show_ipv4_interface.yml | 64 +++++++++++-------- 1 file changed, 38 insertions(+), 26 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml index 98aa0ba7ac..42571001c3 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml @@ -1,30 +1,42 @@ --- parsed_sample: - - interface: "GigabitEthernet0/0/0/0" - ip_address: "10.2.0.2" - ip_mtu: "1500" - link_status: "Up" - mtu: "1514" + - interface: GigabitEthernet0/0/0/0 + in_acl: not set, access list is not set + ip_address: 10.2.0.2 + ip_mtu: '1500' + link_status: Up + mtu: '1514' multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.9" - - "224.0.0.10" - prefix_length: "30" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" - - interface: "GigabitEthernet0/0/0/1" - ip_address: "10.0.7.1" - ip_mtu: "1500" - link_status: "Up" - mtu: "1514" + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.9 + - 224.0.0.10 + out_acl: not set + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' + - interface: GigabitEthernet0/0/0/1 + in_acl: not set, access list is not set + ip_address: 10.0.7.1 + ip_mtu: '1500' + link_status: Up + mtu: '1514' multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.5" - - "224.0.0.6" - prefix_length: "30" - protocol: "ipv4" - protocol_status: "Up" - vrf: "default" + - 224.0.0.2 + - 224.0.0.1 + - 224.0.0.5 + - 224.0.0.6 + out_acl: not set + prefix_length: '30' + protocol: ipv4 + protocol_status: Up + rpf_check: '' + sec_ip_address: [] + sec_prefix_length: [] + vrf: default + vrf_id: '0x60000000' From 6a4a1572d7a1efce5b55af579bf1f87d3b9ccb6e Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:09:22 -0300 Subject: [PATCH 09/34] Update cisco_xr_show_ipv4_interface.yml --- .../cisco_xr_show_ipv4_interface.yml | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml index 42571001c3..e5a355b1da 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml @@ -1,42 +1,42 @@ --- parsed_sample: - - interface: GigabitEthernet0/0/0/0 - in_acl: not set, access list is not set - ip_address: 10.2.0.2 - ip_mtu: '1500' - link_status: Up - mtu: '1514' + - interface: "GigabitEthernet0/0/0/0" + in_acl: "not set, access list is not set" + ip_address: "10.2.0.2" + ip_mtu: "1500" + link_status: "Up" + mtu: "1514" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.9 - - 224.0.0.10 - out_acl: not set - prefix_length: '30' - protocol: ipv4 - protocol_status: Up - rpf_check: '' + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.9" + - "224.0.0.10" + out_acl: "not set" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" sec_ip_address: [] sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: GigabitEthernet0/0/0/1 - in_acl: not set, access list is not set - ip_address: 10.0.7.1 - ip_mtu: '1500' - link_status: Up - mtu: '1514' + vrf: "default + vrf_id: "0x60000000" + - interface: "GigabitEthernet0/0/0/1" + in_acl: "not set, access list is not set" + ip_address: "10.0.7.1" + ip_mtu: "1500" + link_status: "Up + mtu: "1514" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.5 - - 224.0.0.6 - out_acl: not set - prefix_length: '30' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.5" + - "224.0.0.6" + out_acl: "not set" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" + sec_ip_address: "[]" + sec_prefix_length: "[]" + vrf: "default + vrf_id: "0x60000000" From 319327c26e880cde7c496bde06f43fc187a4288c Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:09:40 -0300 Subject: [PATCH 10/34] Update cisco_xr_show_ipv4_interface1.yml --- .../cisco_xr_show_ipv4_interface1.yml | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml index 6b35cb5954..39d9a8fcbe 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml @@ -1,36 +1,36 @@ --- parsed_sample: - - interface: MgmtEth0/0/cpu0/0 - in_acl: not set, access list is not set - ip_address: 172.25.82.44 - ip_mtu: '1500' - link_status: Up - mtu: '1514' + - interface: "MgmtEth0/0/cpu0/0" + in_acl: "not set, access list is not set" + ip_address: "172.25.82.44" + ip_mtu: "1500" + link_status: "Up" + mtu: "1514" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - out_acl: not set - prefix_length: '24' - protocol: ipv4 - protocol_status: Up - rpf_check: '' + - "224.0.0.2" + - "224.0.0.1" + out_acl: "not set" + prefix_length: "24" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" sec_ip_address: [] sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: GigabitEthernet0/0/0/0 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + vrf: "default" + vrf_id: "0x60000000" + - interface: "GigabitEthernet0/0/0/0" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' + out_acl: "" + prefix_length: "" + protocol: "ipv4" + protocol_status: "Down" + rpf_check: "" + sec_ip_address: "[]" + sec_prefix_length: "[]" + vrf: "default" + vrf_id: "0x60000000" From 31a86155f86ac67f6b8fbb220f47f440dcd776a9 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:10:07 -0300 Subject: [PATCH 11/34] Update cisco_xr_show_ipv4_interface2.yml --- .../cisco_xr_show_ipv4_interface2.yml | 106 +++++++++--------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml index 1eb7a34049..5bb4e0ef1c 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml @@ -1,62 +1,62 @@ --- parsed_sample: - - interface: TengigE0/0/0/6 - in_acl: not set - ip_address: 10.1.1.1 - ip_mtu: '9202' - link_status: Up - mtu: '9216' + - interface: "TengigE0/0/0/6" + in_acl: "not set" + ip_address: "10.1.1.1" + ip_mtu: "9202" + link_status: "Up" + mtu: "9216" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.5 - - 224.0.0.6 - - 224.0.0.13 - - 224.0.0.22 - out_acl: not set - prefix_length: '31' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: Bundle-Ether10.23 - in_acl: not set - ip_address: 10.1.1.7 - ip_mtu: '9100' - link_status: Up - mtu: '9118' + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" + out_acl: "not set" + prefix_length: "31" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" + sec_ip_address: "[]" + sec_prefix_length: "[]" + vrf: "default" + vrf_id: "0x60000000" + - interface: "Bundle-Ether10.23" + in_acl: "not set" + ip_address: "10.1.1.7" + ip_mtu: "9100" + link_status: "Up" + mtu: "9118" multicast_groups: - - 224.0.0.1 - - 224.0.0.6 - out_acl: not set - prefix_length: '31' - protocol: ipv4 - protocol_status: Down - rpf_check: '' + - "224.0.0.1" + - "224.0.0.6" + out_acl: "not set" + prefix_length: "31" + protocol: "ipv4" + protocol_status: "Down" + rpf_check: "" sec_ip_address: [] sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: TengigE0/5/0/2.3 - in_acl: BLOCK - ip_address: 10.2.2.1 - ip_mtu: '1500' - link_status: Up - mtu: '9210' + vrf: "default" + vrf_id: "0x60000000" + - interface: "TengigE0/5/0/2.3" + in_acl: "BLOCK" + ip_address: "10.2.2.1" + ip_mtu: "1500" + link_status: "Up" + mtu: "9210" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.13 - - 224.0.0.22 - out_acl: not set - prefix_length: '30' - protocol: ipv4 - protocol_status: Up - rpf_check: enabled + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.13" + - "224.0.0.22" + out_acl: "not set" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "enabled" sec_ip_address: [] sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' + vrf: "default" + vrf_id: "0x60000000" From e69bfdf0742d520669f0baa754c3f5732aa8db79 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:10:30 -0300 Subject: [PATCH 12/34] Update cisco_xr_show_ipv4_interface3.yml --- .../cisco_xr_show_ipv4_interface3.yml | 1086 ++++++++--------- 1 file changed, 543 insertions(+), 543 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 92496a9005..f048326dc3 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -1,581 +1,581 @@ --- parsed_sample: - - interface: Loopback0 - in_acl: not set, access list is not set - ip_address: 172.12.12.72 - ip_mtu: '1500' - link_status: Up - mtu: '1500' + - interface: "Loopback0" + in_acl: "not set", access list is not set" + ip_address: "172.12.12.72" + ip_mtu: "1500" + link_status: "Up" + mtu: "1500" multicast_groups: - - 224.0.0.1 - - 224.0.0.2 - - 224.0.0.13 - - 224.0.0.22 - - 224.0.1.40 - out_acl: not set - prefix_length: '32' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/0 - in_acl: not set, access list is not set - ip_address: 172.1.1.78 - ip_mtu: '9100' - link_status: Up - mtu: '9114' + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.13" + - "224.0.0.22" + - "224.0.1.40" + out_acl: "not set" + prefix_length: "32" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - interface: "FourHundredGigE0/0/0/0" + in_acl: "not set, access list is not set" + ip_address: "172.1.1.78 + ip_mtu: "9100" + link_status: "Up" + mtu: "9114" multicast_groups: - - 224.0.0.1 - - 224.0.0.2 - - 224.0.0.5 - - 224.0.0.6 - - 224.0.0.13 - - 224.0.0.22 - out_acl: not set - prefix_length: '31' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/1 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" + out_acl: "not set" + prefix_length: "31" + protocol: "ipv4 + protocol_status: "Up" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/1 + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/2 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/2" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/3 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/3" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/4 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/4" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/5 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/5" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/6 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/6" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/7 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/7 + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/8 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/8" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/9 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/9" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/10 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/10 + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/11 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/11" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/12 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/12" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/13 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/13" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/14 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/14" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/15 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/15" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/16 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/16" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/17 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/17" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/18 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/18" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/19 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/19" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/20 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/20" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/21 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/21" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/22 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/22" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/23 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/23" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/24 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/24" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/25 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/25" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/26 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/26" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/27 - in_acl: '' - ip_address: '' - ip_mtu: '' - link_status: Shutdown - mtu: '' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/27" + in_acl: "" + ip_address: "" + ip_mtu: "" + link_status: "Shutdown" + mtu: "" multicast_groups: [] - out_acl: '' - prefix_length: '' - protocol: ipv4 - protocol_status: Down - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/28 - in_acl: not set, access list is not set - ip_address: 172.1.1.65 - ip_mtu: '9100' - link_status: Up - mtu: '9114' + out_acl: "" + prefix_length: "" + protocol: "ipv4 + protocol_status: "Down" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/28" + in_acl: "not set", access list is not set" + ip_address: "172.1.1.65 + ip_mtu: "9100" + link_status: "Up" + mtu: "9114" multicast_groups: - - 224.0.0.1 - - 224.0.0.2 - - 224.0.0.5 - - 224.0.0.6 - - 224.0.0.13 - - 224.0.0.22 - out_acl: not set - prefix_length: '31' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: FourHundredGigE0/0/0/29 - in_acl: not set, access list is not set - ip_address: 172.1.1.67 - ip_mtu: '9100' - link_status: Up - mtu: '9114' + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" + out_acl: "not set" + prefix_length: "31" + protocol: "ipv4 + protocol_status: "Up" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "FourHundredGigE0/0/0/29 + in_acl: "not set, access list is not set" + ip_address: "172.1.1.67" + ip_mtu: "9100" + link_status: "Up" + mtu: "9114" multicast_groups: - - 224.0.0.1 - - 224.0.0.2 - - 224.0.0.5 - - 224.0.0.6 - - 224.0.0.13 - - 224.0.0.22 - out_acl: not set - prefix_length: '31' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: HundredGigE0/0/0/30 - in_acl: not set, access list is not set - ip_address: 172.1.1.72 - ip_mtu: '9100' - link_status: Up - mtu: '9114' + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" + out_acl: "not set" + prefix_length: "31" + protocol: "ipv4 + protocol_status: "Up" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "HundredGigE0/0/0/30" + in_acl: "not set, access list is not set" + ip_address: "172.1.1.72" + ip_mtu: "9100" + link_status: "Up" + mtu: "9114" multicast_groups: - - 224.0.0.1 - - 224.0.0.2 - - 224.0.0.5 - - 224.0.0.6 - - 224.0.0.13 - - 224.0.0.22 - out_acl: not set - prefix_length: '31' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: HundredGigE0/0/0/31 - in_acl: not set, access list is not set - ip_address: 172.1.1.74 - ip_mtu: '9100' - link_status: Up - mtu: '9114' + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" + out_acl: "not set" + prefix_length: "31" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "HundredGigE0/0/0/31" + in_acl: "not set, access list is not set" + ip_address: "172.1.1.74" + ip_mtu: "9100" + link_status: "Up" + mtu: "9114" multicast_groups: - - 224.0.0.1 - - 224.0.0.2 - - 224.0.0.5 - - 224.0.0.6 - - 224.0.0.13 - - 224.0.0.22 - out_acl: not set - prefix_length: '31' - protocol: ipv4 - protocol_status: Up - rpf_check: '' - sec_ip_address: [] - sec_prefix_length: [] - vrf: default - vrf_id: '0x60000000' - - interface: MgmtEth0/rp0/cpu0/0 - in_acl: not set, access list is not set - ip_address: 172.1.55.93 - ip_mtu: '1500' - link_status: Up - mtu: '1514' + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" + out_acl: "not set" + prefix_length: "31" + protocol: "ipv4 + protocol_status: "Up" + rpf_check: "" + sec_ip_address: [] + sec_prefix_length: [] + vrf: "default" + vrf_id: "0x60000000" + - "interface: "MgmtEth0/rp0/cpu0/0" + in_acl: "not set, access list is not set" + ip_address: "172.1.55.93" + ip_mtu: "1500" + link_status: "Up" + mtu: "1514" multicast_groups: [] - out_acl: not set - prefix_length: '24' - protocol: ipv4 - protocol_status: Up - rpf_check: '' + out_acl: "not set" + prefix_length: "24" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" sec_ip_address: [] sec_prefix_length: [] - vrf: management - vrf_id: '0x60000001' + vrf: "management" + vrf_id: "0x60000001" From ddde5344f641456a20ba91159563b195dd190618 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:10:47 -0300 Subject: [PATCH 13/34] Update cisco_xr_show_ipv4_interface4.yaml --- .../cisco_xr_show_ipv4_interface4.yaml | 170 +++++++++--------- 1 file changed, 85 insertions(+), 85 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml index f855fc810e..8f5cfcfe81 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml @@ -1,104 +1,104 @@ --- parsed_sample: - - interface: TenGigE0/4/0/2.16089 - in_acl: iACL - ip_address: 10.23.115.17 - ip_mtu: '1500' - link_status: Up - mtu: '1522' + - interface: "TenGigE0/4/0/2.16089" + in_acl: "iACL" + ip_address: "10.23.115.17" + ip_mtu: "1500" + link_status: "Up" + mtu: "1522" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.1 - out_acl: not set - prefix_length: '30' - protocol: ipv4 - protocol_status: Up - rpf_check: '' + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" + out_acl: "not set" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" sec_ip_address: - - 10.90.15.3 + - "10.90.15.3" sec_prefix_length: - - '30' - vrf: default - vrf_id: '0x60000000' - - interface: TenGigE0/4/0/4.18846 - in_acl: iACL + - "30" + vrf: "default" + vrf_id: "0x60000000" + - interface: "TenGigE0/4/0/4.18846" + in_acl: "iACL" ip_address: 10.21.19.29 - ip_mtu: '1500' - link_status: Up - mtu: '1522' + ip_mtu: "1500" + link_status: "Up" + mtu: "1522" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.1 - out_acl: oACL - prefix_length: '30' - protocol: ipv4 - protocol_status: Up - rpf_check: enabled + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" + out_acl: "oACL" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "enabled" sec_ip_address: - - 10.55.55.1 + - "10.55.55.1" sec_prefix_length: - - '30' - vrf: default - vrf_id: '0x60000000' - - interface: TenGigE0/4/0/4.22006 - in_acl: not set - ip_address: 10.11.124.29 - ip_mtu: '1500' - link_status: Up - mtu: '1522' + - "30" + vrf: "default" + vrf_id: "0x60000000" + - interface: "TenGigE0/4/0/4.22006" + in_acl: "not set" + ip_address: "10.11.124.29" + ip_mtu: "1500" + link_status: "Up" + mtu: "1522" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.1 - out_acl: not set - prefix_length: '30' - protocol: ipv4 - protocol_status: Up - rpf_check: '' + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" + out_acl: "not set" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "" sec_ip_address: - - 10.31.1.1 + - "10.31.1.1" sec_prefix_length: - - '30' - vrf: RED_CLIENT:5581 - vrf_id: '0x6000002c' - - interface: GigabitEthernet0/4/0/10.17 - in_acl: iACL - ip_address: 10.250.25.33 - ip_mtu: '1500' - link_status: Up - mtu: '1518' + - "30" + vrf: "RED_CLIENT:5581" + vrf_id: "0x6000002c" + - interface: "GigabitEthernet0/4/0/10.17" + in_acl: "iACL" + ip_address: "10.250.25.33" + ip_mtu: "1500" + link_status: "Up" + mtu: "1518" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - - 224.0.0.1 - out_acl: oACL - prefix_length: '30' - protocol: ipv4 - protocol_status: Up + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" + out_acl: "oACL" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" rpf_check: enabled sec_ip_address: - - 10.21.21.11 + - "10.21.21.11" sec_prefix_length: - - '30' - vrf: default - vrf_id: '0x60000000' - - interface: TenGigE0/4/0/4.15025 - in_acl: not set - ip_address: 10.186.149.1 - ip_mtu: '1500' - link_status: Up - mtu: '1522' + - "30" + vrf: "default" + vrf_id: "0x60000000" + - interface: "TenGigE0/4/0/4.15025" + in_acl: "not set" + ip_address: "10.186.149.1" + ip_mtu: "1500" + link_status: "Up" + mtu: "1522" multicast_groups: - - 224.0.0.2 - - 224.0.0.1 - out_acl: not set - prefix_length: '30' - protocol: ipv4 - protocol_status: Up - rpf_check: enabled + - "224.0.0.2" + - "224.0.0.1" + out_acl: "not set" + prefix_length: "30" + protocol: "ipv4" + protocol_status: "Up" + rpf_check: "enabled" sec_ip_address: [] sec_prefix_length: [] - vrf: RED_CLIENT:5581 - vrf_id: '0x6000002c' + vrf: "RED_CLIENT:5581" + vrf_id: "0x6000002c" From df704dfd2af2615fd52096baec3f24142075d6eb Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:16:40 -0300 Subject: [PATCH 14/34] Update cisco_xr_show_ipv4_interface.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml index e5a355b1da..e3e841afc1 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml @@ -18,7 +18,7 @@ parsed_sample: rpf_check: "" sec_ip_address: [] sec_prefix_length: [] - vrf: "default + vrf: "default" vrf_id: "0x60000000" - interface: "GigabitEthernet0/0/0/1" in_acl: "not set, access list is not set" From 7b548ce2d3995595082c29360346bc51806dea1e Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:19:51 -0300 Subject: [PATCH 15/34] Update cisco_xr_show_ipv4_interface3.yml --- .../cisco_xr_show_ipv4_interface3.yml | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index f048326dc3..72f4a00264 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -1,17 +1,17 @@ --- parsed_sample: - interface: "Loopback0" - in_acl: "not set", access list is not set" + in_acl: "not set, access list is not set" ip_address: "172.12.12.72" ip_mtu: "1500" link_status: "Up" mtu: "1500" multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.13" - - "224.0.0.22" - - "224.0.1.40" + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.13" + - "224.0.0.22" + - "224.0.1.40" out_acl: "not set" prefix_length: "32" protocol: "ipv4" @@ -28,12 +28,12 @@ parsed_sample: link_status: "Up" mtu: "9114" multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" out_acl: "not set" prefix_length: "31" protocol: "ipv4 @@ -482,12 +482,12 @@ parsed_sample: link_status: "Up" mtu: "9114" multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" out_acl: "not set" prefix_length: "31" protocol: "ipv4 @@ -504,12 +504,12 @@ parsed_sample: link_status: "Up" mtu: "9114" multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" out_acl: "not set" prefix_length: "31" protocol: "ipv4 @@ -526,12 +526,12 @@ parsed_sample: link_status: "Up" mtu: "9114" multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" out_acl: "not set" prefix_length: "31" protocol: "ipv4" @@ -548,12 +548,12 @@ parsed_sample: link_status: "Up" mtu: "9114" multicast_groups: - - "224.0.0.1" - - "224.0.0.2" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" + - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" out_acl: "not set" prefix_length: "31" protocol: "ipv4 From 598b0da2d137808954f803d8db4f2a6433206c85 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:20:53 -0300 Subject: [PATCH 16/34] Update cisco_xr_show_ipv4_interface2.yml --- .../cisco_xr_show_ipv4_interface2.yml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml index 5bb4e0ef1c..ac8d70fbdd 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml @@ -7,12 +7,12 @@ parsed_sample: link_status: "Up" mtu: "9216" multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.5" - - "224.0.0.6" - - "224.0.0.13" - - "224.0.0.22" + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.5" + - "224.0.0.6" + - "224.0.0.13" + - "224.0.0.22" out_acl: "not set" prefix_length: "31" protocol: "ipv4" @@ -29,8 +29,8 @@ parsed_sample: link_status: "Up" mtu: "9118" multicast_groups: - - "224.0.0.1" - - "224.0.0.6" + - "224.0.0.1" + - "224.0.0.6" out_acl: "not set" prefix_length: "31" protocol: "ipv4" @@ -47,10 +47,10 @@ parsed_sample: link_status: "Up" mtu: "9210" multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.13" - - "224.0.0.22" + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.13" + - "224.0.0.22" out_acl: "not set" prefix_length: "30" protocol: "ipv4" From 7d319d57fce9453c74ce5a6178abbb6b7e382a0f Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:22:52 -0300 Subject: [PATCH 17/34] Update cisco_xr_show_ipv4_interface4.yaml --- .../cisco_xr_show_ipv4_interface4.yaml | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml index 8f5cfcfe81..d3b2ed5052 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml @@ -7,37 +7,37 @@ parsed_sample: link_status: "Up" mtu: "1522" multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" out_acl: "not set" prefix_length: "30" protocol: "ipv4" protocol_status: "Up" rpf_check: "" sec_ip_address: - - "10.90.15.3" + - "10.90.15.3" sec_prefix_length: - "30" vrf: "default" vrf_id: "0x60000000" - interface: "TenGigE0/4/0/4.18846" in_acl: "iACL" - ip_address: 10.21.19.29 + ip_address: "10.21.19.29" ip_mtu: "1500" link_status: "Up" mtu: "1522" multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" out_acl: "oACL" prefix_length: "30" protocol: "ipv4" protocol_status: "Up" rpf_check: "enabled" sec_ip_address: - - "10.55.55.1" + - "10.55.55.1" sec_prefix_length: - "30" vrf: "default" @@ -49,18 +49,18 @@ parsed_sample: link_status: "Up" mtu: "1522" multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" out_acl: "not set" prefix_length: "30" protocol: "ipv4" protocol_status: "Up" rpf_check: "" sec_ip_address: - - "10.31.1.1" + - "10.31.1.1" sec_prefix_length: - - "30" + - "30" vrf: "RED_CLIENT:5581" vrf_id: "0x6000002c" - interface: "GigabitEthernet0/4/0/10.17" @@ -70,16 +70,16 @@ parsed_sample: link_status: "Up" mtu: "1518" multicast_groups: - - "224.0.0.2" - - "224.0.0.1" - - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.1" + - "224.0.0.1" out_acl: "oACL" prefix_length: "30" protocol: "ipv4" protocol_status: "Up" - rpf_check: enabled + rpf_check: "enabled" sec_ip_address: - - "10.21.21.11" + - "10.21.21.11" sec_prefix_length: - "30" vrf: "default" @@ -91,8 +91,8 @@ parsed_sample: link_status: "Up" mtu: "1522" multicast_groups: - - "224.0.0.2" - - "224.0.0.1" + - "224.0.0.2" + - "224.0.0.1" out_acl: "not set" prefix_length: "30" protocol: "ipv4" From fc0ec422d2d1b250cef7debabe6f06231157884a Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:25:09 -0300 Subject: [PATCH 18/34] Update cisco_xr_show_ipv4_interface.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml index e3e841afc1..cfa9e6c410 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml @@ -24,7 +24,7 @@ parsed_sample: in_acl: "not set, access list is not set" ip_address: "10.0.7.1" ip_mtu: "1500" - link_status: "Up + link_status: "Up" mtu: "1514" multicast_groups: - "224.0.0.2" From 3fe6477026451e728add629996e3e6a35e114189 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:25:49 -0300 Subject: [PATCH 19/34] Update cisco_xr_show_ipv4_interface3.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 72f4a00264..baf8658bda 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -23,7 +23,7 @@ parsed_sample: vrf_id: "0x60000000" - interface: "FourHundredGigE0/0/0/0" in_acl: "not set, access list is not set" - ip_address: "172.1.1.78 + ip_address: "172.1.1.78" ip_mtu: "9100" link_status: "Up" mtu: "9114" From 532cd6a8d65632615080386d1f7ec3d0c36c9bf9 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:26:32 -0300 Subject: [PATCH 20/34] Update cisco_xr_show_ipv4_interface4.yaml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml index d3b2ed5052..7f15024f79 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml @@ -18,7 +18,7 @@ parsed_sample: sec_ip_address: - "10.90.15.3" sec_prefix_length: - - "30" + - "30" vrf: "default" vrf_id: "0x60000000" - interface: "TenGigE0/4/0/4.18846" @@ -39,7 +39,7 @@ parsed_sample: sec_ip_address: - "10.55.55.1" sec_prefix_length: - - "30" + - "30" vrf: "default" vrf_id: "0x60000000" - interface: "TenGigE0/4/0/4.22006" @@ -81,7 +81,7 @@ parsed_sample: sec_ip_address: - "10.21.21.11" sec_prefix_length: - - "30" + - "30" vrf: "default" vrf_id: "0x60000000" - interface: "TenGigE0/4/0/4.15025" From 2a3baea2e313ac1a418dba6e01dda248e7389a1c Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:29:40 -0300 Subject: [PATCH 21/34] Update cisco_xr_show_ipv4_interface.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml index cfa9e6c410..21afc57d27 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml @@ -38,5 +38,5 @@ parsed_sample: rpf_check: "" sec_ip_address: "[]" sec_prefix_length: "[]" - vrf: "default + vrf: "default" vrf_id: "0x60000000" From b78716841a5b265ee574eb3a6360c02f5c953383 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:30:15 -0300 Subject: [PATCH 22/34] Update cisco_xr_show_ipv4_interface3.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index baf8658bda..52a9f1e17b 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -36,7 +36,7 @@ parsed_sample: - "224.0.0.22" out_acl: "not set" prefix_length: "31" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Up" rpf_check: "" sec_ip_address: [] From 997c546752c4d0a7b58db77d86b88dde8ad2a20a Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:34:44 -0300 Subject: [PATCH 23/34] Update cisco_xr_show_ipv4_interface3.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 52a9f1e17b..aeba1a0bb3 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -43,7 +43,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/1 + - "interface: "FourHundredGigE0/0/0/1" in_acl: "" ip_address: "" ip_mtu: "" @@ -139,7 +139,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/7 + - "interface: "FourHundredGigE0/0/0/7" in_acl: "" ip_address: "" ip_mtu: "" @@ -187,7 +187,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/10 + - "interface: "FourHundredGigE0/0/0/10" in_acl: "" ip_address: "" ip_mtu: "" @@ -497,7 +497,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/29 + - "interface: "FourHundredGigE0/0/0/29" in_acl: "not set, access list is not set" ip_address: "172.1.1.67" ip_mtu: "9100" From 1f9a3d8495cc6a0f6d698b77440b5c58116dd41c Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:38:45 -0300 Subject: [PATCH 24/34] Update cisco_xr_show_ipv4_interface3.yml --- .../cisco_xr_show_ipv4_interface3.yml | 64 +++++++++---------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index aeba1a0bb3..05b32de4ab 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -43,7 +43,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/1" + - interface: "FourHundredGigE0/0/0/1" in_acl: "" ip_address: "" ip_mtu: "" @@ -59,7 +59,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/2" + - interface: "FourHundredGigE0/0/0/2" in_acl: "" ip_address: "" ip_mtu: "" @@ -75,7 +75,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/3" + - interface: "FourHundredGigE0/0/0/3" in_acl: "" ip_address: "" ip_mtu: "" @@ -91,7 +91,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/4" + - interface: "FourHundredGigE0/0/0/4" in_acl: "" ip_address: "" ip_mtu: "" @@ -107,7 +107,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/5" + - interface: "FourHundredGigE0/0/0/5" in_acl: "" ip_address: "" ip_mtu: "" @@ -123,7 +123,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/6" + - interface: "FourHundredGigE0/0/0/6" in_acl: "" ip_address: "" ip_mtu: "" @@ -139,7 +139,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/7" + - interface: "FourHundredGigE0/0/0/7" in_acl: "" ip_address: "" ip_mtu: "" @@ -155,7 +155,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/8" + - interface: "FourHundredGigE0/0/0/8" in_acl: "" ip_address: "" ip_mtu: "" @@ -171,7 +171,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/9" + - interface: "FourHundredGigE0/0/0/9" in_acl: "" ip_address: "" ip_mtu: "" @@ -187,7 +187,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/10" + - interface: "FourHundredGigE0/0/0/10" in_acl: "" ip_address: "" ip_mtu: "" @@ -203,7 +203,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/11" + - interface: "FourHundredGigE0/0/0/11" in_acl: "" ip_address: "" ip_mtu: "" @@ -219,7 +219,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/12" + - interface: "FourHundredGigE0/0/0/12" in_acl: "" ip_address: "" ip_mtu: "" @@ -235,7 +235,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/13" + - interface: "FourHundredGigE0/0/0/13" in_acl: "" ip_address: "" ip_mtu: "" @@ -251,7 +251,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/14" + - interface: "FourHundredGigE0/0/0/14" in_acl: "" ip_address: "" ip_mtu: "" @@ -267,7 +267,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/15" + - interface: "FourHundredGigE0/0/0/15" in_acl: "" ip_address: "" ip_mtu: "" @@ -283,7 +283,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/16" + - interface: "FourHundredGigE0/0/0/16" in_acl: "" ip_address: "" ip_mtu: "" @@ -299,7 +299,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/17" + - interface: "FourHundredGigE0/0/0/17" in_acl: "" ip_address: "" ip_mtu: "" @@ -315,7 +315,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/18" + - interface: "FourHundredGigE0/0/0/18" in_acl: "" ip_address: "" ip_mtu: "" @@ -331,7 +331,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/19" + - interface: "FourHundredGigE0/0/0/19" in_acl: "" ip_address: "" ip_mtu: "" @@ -347,7 +347,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/20" + - interface: "FourHundredGigE0/0/0/20" in_acl: "" ip_address: "" ip_mtu: "" @@ -363,7 +363,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/21" + - interface: "FourHundredGigE0/0/0/21" in_acl: "" ip_address: "" ip_mtu: "" @@ -379,7 +379,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/22" + - interface: "FourHundredGigE0/0/0/22" in_acl: "" ip_address: "" ip_mtu: "" @@ -395,7 +395,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/23" + - interface: "FourHundredGigE0/0/0/23" in_acl: "" ip_address: "" ip_mtu: "" @@ -411,7 +411,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/24" + - interface: "FourHundredGigE0/0/0/24" in_acl: "" ip_address: "" ip_mtu: "" @@ -427,7 +427,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/25" + - interface: "FourHundredGigE0/0/0/25" in_acl: "" ip_address: "" ip_mtu: "" @@ -443,7 +443,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/26" + - interface: "FourHundredGigE0/0/0/26" in_acl: "" ip_address: "" ip_mtu: "" @@ -459,7 +459,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/27" + - interface: "FourHundredGigE0/0/0/27" in_acl: "" ip_address: "" ip_mtu: "" @@ -475,7 +475,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/28" + - interface: "FourHundredGigE0/0/0/28" in_acl: "not set", access list is not set" ip_address: "172.1.1.65 ip_mtu: "9100" @@ -497,7 +497,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "FourHundredGigE0/0/0/29" + - interface: "FourHundredGigE0/0/0/29" in_acl: "not set, access list is not set" ip_address: "172.1.1.67" ip_mtu: "9100" @@ -519,7 +519,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "HundredGigE0/0/0/30" + - interface: "HundredGigE0/0/0/30" in_acl: "not set, access list is not set" ip_address: "172.1.1.72" ip_mtu: "9100" @@ -541,7 +541,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "HundredGigE0/0/0/31" + - interface: "HundredGigE0/0/0/31" in_acl: "not set, access list is not set" ip_address: "172.1.1.74" ip_mtu: "9100" @@ -563,7 +563,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - "interface: "MgmtEth0/rp0/cpu0/0" + - interface: "MgmtEth0/rp0/cpu0/0" in_acl: "not set, access list is not set" ip_address: "172.1.55.93" ip_mtu: "1500" From 5e73dfb7aa2a6789bd3d59fb905ed22c2dd7084f Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:52:28 -0300 Subject: [PATCH 25/34] Update cisco_xr_show_ipv4_interface3.yml --- .../cisco_xr_show_ipv4_interface3.yml | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 05b32de4ab..0388fe2f11 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -52,7 +52,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -68,7 +68,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -84,7 +84,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -100,7 +100,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -116,7 +116,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -132,7 +132,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -148,7 +148,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -164,7 +164,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -180,7 +180,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -196,7 +196,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -212,7 +212,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -228,7 +228,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -244,7 +244,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -260,7 +260,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -276,7 +276,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -292,7 +292,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -308,7 +308,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -324,7 +324,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -340,7 +340,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -356,7 +356,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -372,7 +372,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -388,7 +388,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -404,7 +404,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -420,7 +420,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -436,7 +436,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -452,7 +452,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -468,7 +468,7 @@ parsed_sample: multicast_groups: [] out_acl: "" prefix_length: "" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Down" rpf_check: "" sec_ip_address: [] @@ -490,7 +490,7 @@ parsed_sample: - "224.0.0.22" out_acl: "not set" prefix_length: "31" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Up" rpf_check: "" sec_ip_address: [] @@ -512,7 +512,7 @@ parsed_sample: - "224.0.0.22" out_acl: "not set" prefix_length: "31" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Up" rpf_check: "" sec_ip_address: [] @@ -556,7 +556,7 @@ parsed_sample: - "224.0.0.22" out_acl: "not set" prefix_length: "31" - protocol: "ipv4 + protocol: "ipv4" protocol_status: "Up" rpf_check: "" sec_ip_address: [] From c2089da5746fdab3a55e4147c6a74214ff78ea02 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:55:22 -0300 Subject: [PATCH 26/34] Update cisco_xr_show_ipv4_interface3.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 0388fe2f11..0041800627 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -476,7 +476,7 @@ parsed_sample: vrf: "default" vrf_id: "0x60000000" - interface: "FourHundredGigE0/0/0/28" - in_acl: "not set", access list is not set" + in_acl: "not set, access list is not set" ip_address: "172.1.1.65 ip_mtu: "9100" link_status: "Up" From e27d8a52e0997701c595bad34ae6eafefd8c7acd Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 16:58:19 -0300 Subject: [PATCH 27/34] Update cisco_xr_show_ipv4_interface3.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 0041800627..51ffd4fb21 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -477,7 +477,7 @@ parsed_sample: vrf_id: "0x60000000" - interface: "FourHundredGigE0/0/0/28" in_acl: "not set, access list is not set" - ip_address: "172.1.1.65 + ip_address: "172.1.1.65" ip_mtu: "9100" link_status: "Up" mtu: "9114" From 1d06e17cfe2768ecc8e1e81dc11b2e11b423db4d Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 17:13:40 -0300 Subject: [PATCH 28/34] Rename cisco_xr_show_ipv4_interface4.yaml to cisco_xr_show_ipv4_interface4.yml --- ...how_ipv4_interface4.yaml => cisco_xr_show_ipv4_interface4.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/cisco_xr/show_ipv4_interface/{cisco_xr_show_ipv4_interface4.yaml => cisco_xr_show_ipv4_interface4.yml} (100%) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yml similarity index 100% rename from tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yaml rename to tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface4.yml From 352d9519237e4d5d0bb70d8c8f512a69af7e4ada Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 17:46:51 -0300 Subject: [PATCH 29/34] Update cisco_xr_show_ipv4_interface1.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml index 39d9a8fcbe..cd05c3e7a9 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml @@ -1,6 +1,6 @@ --- parsed_sample: - - interface: "MgmtEth0/0/cpu0/0" + - interface: "MgmtEth0/0/CPU0/0" in_acl: "not set, access list is not set" ip_address: "172.25.82.44" ip_mtu: "1500" From 6ed3bda9119a86341b5e90205c376d08622a5f42 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 17:49:37 -0300 Subject: [PATCH 30/34] Update cisco_xr_show_ipv4_interface2.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml index ac8d70fbdd..3a615f32d4 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml @@ -1,6 +1,6 @@ --- parsed_sample: - - interface: "TengigE0/0/0/6" + - interface: "TenGigE0/0/0/6" in_acl: "not set" ip_address: "10.1.1.1" ip_mtu: "9202" @@ -40,7 +40,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - interface: "TengigE0/5/0/2.3" + - interface: "TenGigE0/5/0/2.3" in_acl: "BLOCK" ip_address: "10.2.2.1" ip_mtu: "1500" From 9e461befbf4d2ae299161abe5f74a10df663a683 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 17:51:18 -0300 Subject: [PATCH 31/34] Update cisco_xr_show_ipv4_interface.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml index 21afc57d27..fde72aa52f 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface.yml @@ -36,7 +36,7 @@ parsed_sample: protocol: "ipv4" protocol_status: "Up" rpf_check: "" - sec_ip_address: "[]" - sec_prefix_length: "[]" + sec_ip_address: [] + sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" From cf5afa0d70036556ebf2bf200cf029edb95c4e91 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 18:04:25 -0300 Subject: [PATCH 32/34] Update cisco_xr_show_ipv4_interface1.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml index cd05c3e7a9..ba9340ef93 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface1.yml @@ -30,7 +30,7 @@ parsed_sample: protocol: "ipv4" protocol_status: "Down" rpf_check: "" - sec_ip_address: "[]" - sec_prefix_length: "[]" + sec_ip_address: [] + sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" From 8a7cf7714eb255b0a8b6b7f948a462ea5b293a0f Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 18:05:04 -0300 Subject: [PATCH 33/34] Update cisco_xr_show_ipv4_interface2.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml index 3a615f32d4..817d386a61 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface2.yml @@ -18,8 +18,8 @@ parsed_sample: protocol: "ipv4" protocol_status: "Up" rpf_check: "" - sec_ip_address: "[]" - sec_prefix_length: "[]" + sec_ip_address: [] + sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - interface: "Bundle-Ether10.23" From 5f0b128f26d0a8eb327d5fb8a0b6124009a66e94 Mon Sep 17 00:00:00 2001 From: Jose Orlando Date: Mon, 22 Jul 2024 18:06:21 -0300 Subject: [PATCH 34/34] Update cisco_xr_show_ipv4_interface3.yml --- .../show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml index 51ffd4fb21..be5215ce7c 100644 --- a/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml +++ b/tests/cisco_xr/show_ipv4_interface/cisco_xr_show_ipv4_interface3.yml @@ -563,7 +563,7 @@ parsed_sample: sec_prefix_length: [] vrf: "default" vrf_id: "0x60000000" - - interface: "MgmtEth0/rp0/cpu0/0" + - interface: "MgmtEth0/RP0/CPU0/0" in_acl: "not set, access list is not set" ip_address: "172.1.55.93" ip_mtu: "1500"