forked from networktocode/ntc-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue networktocode#1923 Optional Flag values ignored (networktocode#…
…1928) Co-authored-by: Kyle Phillipson <[email protected]> Co-authored-by: Michael Bear <[email protected]>
- Loading branch information
1 parent
aee4973
commit c22240d
Showing
3 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
tests/cisco_nxos/show_ip_arp_detail/cisco_nxos_show_ip_arp_detail_flags.raw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Flags: * - Adjacencies learnt on non-active FHRP router | ||
+ - Adjacencies synced via CFSoE | ||
# - Adjacencies Throttled for Glean | ||
|
||
IP ARP Table for context default | ||
Total number of entries: 1725 | ||
Address Age MAC Address Interface Physical Interface | ||
10.10.10.194 00:03:10 aaaa.bbbb.cccc Ethernet1/9 Ethernet1/9 | ||
10.10.10.190 00:03:18 aaaa.bbbb.cccc Ethernet2/9 Ethernet2/9 | ||
10.10.10.81 00:02:14 aaaa.bbbb.cccc Ethernet2/12 Ethernet2/12 | ||
192.168.1.1 00:02:06 aaaa.bbbb.cccc Ethernet7/47 Ethernet7/47 | ||
10.10.11.2 00:03:12 aaaa.bbbb.cccc Vlan11 port-channel1 * | ||
10.10.11.20 00:00:18 aaaa.bbbb.cccc Vlan11 port-channel3 + | ||
10.10.11.21 00:00:06 aaaa.bbbb.cccc Vlan11 port-channel3 # |
37 changes: 37 additions & 0 deletions
37
tests/cisco_nxos/show_ip_arp_detail/cisco_nxos_show_ip_arp_detail_flags.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
parsed_sample: | ||
- age: "00:03:10" | ||
interface: "Ethernet1/9" | ||
ip_address: "10.10.10.194" | ||
mac_address: "aaaa.bbbb.cccc" | ||
physical_interface: "Ethernet1/9" | ||
- age: "00:03:18" | ||
interface: "Ethernet2/9" | ||
ip_address: "10.10.10.190" | ||
mac_address: "aaaa.bbbb.cccc" | ||
physical_interface: "Ethernet2/9" | ||
- age: "00:02:14" | ||
interface: "Ethernet2/12" | ||
ip_address: "10.10.10.81" | ||
mac_address: "aaaa.bbbb.cccc" | ||
physical_interface: "Ethernet2/12" | ||
- age: "00:02:06" | ||
interface: "Ethernet7/47" | ||
ip_address: "192.168.1.1" | ||
mac_address: "aaaa.bbbb.cccc" | ||
physical_interface: "Ethernet7/47" | ||
- age: "00:03:12" | ||
interface: "Vlan11" | ||
ip_address: "10.10.11.2" | ||
mac_address: "aaaa.bbbb.cccc" | ||
physical_interface: "port-channel1" | ||
- age: "00:00:18" | ||
interface: "Vlan11" | ||
ip_address: "10.10.11.20" | ||
mac_address: "aaaa.bbbb.cccc" | ||
physical_interface: "port-channel3" | ||
- age: "00:00:06" | ||
interface: "Vlan11" | ||
ip_address: "10.10.11.21" | ||
mac_address: "aaaa.bbbb.cccc" | ||
physical_interface: "port-channel3" |