From e53dc1d508f23512222980babe2f1a8a111ecb8f Mon Sep 17 00:00:00 2001 From: checktheroads Date: Mon, 24 Jun 2019 01:22:30 -0700 Subject: [PATCH] Fix incorrect example values --- hyperglass_bird/configuration.toml.example | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hyperglass_bird/configuration.toml.example b/hyperglass_bird/configuration.toml.example index fc7ff43..09f61ab 100644 --- a/hyperglass_bird/configuration.toml.example +++ b/hyperglass_bird/configuration.toml.example @@ -5,15 +5,16 @@ debug = false # port = 8080 key = "1234" -[commands.1] -bgp_route = "show route all where {target} ~ net" +[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}"