1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-05-07 12:43:05 +00:00

Added example commands for Arista devices

This commit is contained in:
Spencer Ryan 2019-08-14 16:18:56 -04:00
parent b9b42192a0
commit 9fe175a617

View file

@ -36,3 +36,16 @@ traceroute = "traceroute inet {target} wait 1 source {source}"
bgp_route = "show route protocol bgp table inet6.0 {target} detail"
ping = "ping inet6 {target} count 5 source {source}"
traceroute = "traceroute inet6 {target} wait 1 source {source}"
[[arista_eos]]
[arista_eos.dual]
ping = "ping {target} source {source}"
traceroute = "traceroute {target} source {source}"
[arista_eos.ipv4]
bgp_route = "show ip bgp {target}"
bgp_community = "show ip bgp community {target}"
bgp_aspath = "show ip bgp regexp {target}"
[arista_eos.ipv6]
bgp_route = "show ipv6 bgp {target}"
bgp_community = "show ipv6 bgp community {target}"
bgp_aspath = "show ipv6 bgp regexp {target}"