mirror of
https://github.com/checktheroads/hyperglass-bird.git
synced 2024-05-11 05:55:35 +00:00
21 lines
545 B
TOML
21 lines
545 B
TOML
debug = false
|
|
|
|
[api]
|
|
# listen_addr = "*"
|
|
# port = 8080
|
|
key = "1234"
|
|
|
|
[commands.dual]
|
|
bgp_community = "show route all where {target} ~ bgp_community"
|
|
bgp_aspath = "show route all where bgp_path ~ {target}"
|
|
|
|
[commands.ipv4]
|
|
bgp_route = "show route all where {target} ~ net"
|
|
ping = "ping -4 -c 5 -I {source} {target}"
|
|
traceroute = "traceroute -4 -w 1 -q 1 -s {source} {target}"
|
|
|
|
[commands.ipv6]
|
|
bgp_route = "show route all where {target} ~ net"
|
|
ping = "ping -6 -c 5 -I {source} {target}"
|
|
traceroute = "traceroute -6 -w 1 -q 1 -s {source} {target}"
|