1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00

Merge pull request #11 from spencerryan/master

Added example commands for Arista devices

Thanks @spencerryan - sorry for the delay, I wanted to properly vet & fix #14 prior to merging this so the CI build would actually pass, even though your changes aren't really related to the CI tests themselves, but still.
This commit is contained in:
Matt Love 2019-08-19 13:16:27 -07:00 committed by GitHub
commit 128a5d427b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}"