-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Arista eos show ip bgp summary (#2012)
- Loading branch information
1 parent
9b5f368
commit 12bdca2
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
7 changes: 7 additions & 0 deletions
7
tests/arista_eos/show_ip_bgp_summary/arista_eos_show_ip_bgp_summary_vrf2.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,7 @@ | ||
BGP summary information for VRF default | ||
Router identifier 169.254.1.1, local AS number 65486 | ||
Neighbor Status Codes: m - Under maintenance | ||
Description Neighbor V AS MsgRcvd MsgSent InQ OutQ Up/Down State PfxRcd PfxAcc | ||
FOO-BAR-PRIMARY 10.255.255.221 4 5000 171068 171430 0 0 34d20h Estab 121 76 | ||
BAZ 10.255.255.191 4 5000 0 0 0 0 118d18h Idle(NoIf) | ||
OTC-MARKETS-A 10.255.254.217 4 65100 3420465 3420500 0 0 51d12h Estab 13 12 |
44 changes: 44 additions & 0 deletions
44
tests/arista_eos/show_ip_bgp_summary/arista_eos_show_ip_bgp_summary_vrf2.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,44 @@ | ||
--- | ||
parsed_sample: | ||
- bgp_neigh: "10.255.255.221" | ||
description: "FOO-BAR-PRIMARY" | ||
in_queue: "0" | ||
local_as: "65486" | ||
msg_rcvd: "171068" | ||
msg_sent: "171430" | ||
neigh_as: "5000" | ||
out_queue: "0" | ||
router_id: "169.254.1.1" | ||
state: "Estab" | ||
state_pfxacc: "76" | ||
state_pfxrcd: "121" | ||
up_down: "34d20h" | ||
vrf: "default" | ||
- bgp_neigh: "10.255.255.191" | ||
description: "BAZ" | ||
in_queue: "0" | ||
local_as: "65486" | ||
msg_rcvd: "0" | ||
msg_sent: "0" | ||
neigh_as: "5000" | ||
out_queue: "0" | ||
router_id: "169.254.1.1" | ||
state: "Idle(NoIf)" | ||
state_pfxacc: "" | ||
state_pfxrcd: "" | ||
up_down: "118d18h" | ||
vrf: "default" | ||
- bgp_neigh: "10.255.254.217" | ||
description: "OTC-MARKETS-A" | ||
in_queue: "0" | ||
local_as: "65486" | ||
msg_rcvd: "3420465" | ||
msg_sent: "3420500" | ||
neigh_as: "65100" | ||
out_queue: "0" | ||
router_id: "169.254.1.1" | ||
state: "Estab" | ||
state_pfxacc: "12" | ||
state_pfxrcd: "13" | ||
up_down: "51d12h" | ||
vrf: "default" |