Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions lg.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,22 @@ my %valid_query = (
"trace" => "traceroute ipv6 %s"
}
},
"iosxr" => {
"ipv4" => {
"bgp" => "show bgp ipv4 unicast %s",
"advertised-routes" => "show bgp ipv4 unicast neighbors %s advertised-routes",
"summary" => "show bgp ipv4 unicast summary",
"ping" => "ping %s",
"trace" => "traceroute %s"
},
"ipv6" => {
"bgp" => "show bgp ipv6 unicast %s",
"advertised-routes" => "show bgp ipv6 unicast neighbors %s advertised-routes",
"summary" => "show bgp ipv6 unicast summary",
"ping" => "ping ipv6 %s",
"trace" => "traceroute ipv6 %s"
}
},
"zebra" => {
"ipv4" => {
"bgp" => "show ip bgp %s",
Expand Down