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.
Merge pull request #1 from mjbear/nxos_arp_detail_pr1928
Test data for nxos arp detail pr1928
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
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" |