diff --git a/frontend/templateHelper.go b/frontend/templateHelper.go index dfeeb8f..f2245a3 100644 --- a/frontend/templateHelper.go +++ b/frontend/templateHelper.go @@ -34,6 +34,8 @@ func renderTemplate(w http.ResponseWriter, r *http.Request, title string, conten "route_where": "show route where net ~ [ ... ]", "route_where_all": "show route where net ~ [ ... ] all", "route_where_bgpmap": "show route where net ~ [ ... ] (bgpmap)", + "route_generic": "show route ...", + "generic": "show ...", "whois": "whois ...", "traceroute": "traceroute ...", } diff --git a/frontend/webserver.go b/frontend/webserver.go index dfd4047..bc36594 100644 --- a/frontend/webserver.go +++ b/frontend/webserver.go @@ -28,6 +28,8 @@ func webBackendCommunicator(endpoint string, command string) func(w http.Respons "route_all": "show route for %s all", "route_where": "show route where net ~ [ %s ]", "route_where_all": "show route where net ~ [ %s ] all", + "route_generic": "show route %s", + "generic": "show %s", "traceroute": "%s", })[command] @@ -143,6 +145,10 @@ func webServerStart() { http.HandleFunc("/ipv6/route_where_all/", webBackendCommunicator("bird6", "route_where_all")) http.HandleFunc("/ipv4/route_where_bgpmap/", webHandlerBGPMap("bird", "route_where_bgpmap")) http.HandleFunc("/ipv6/route_where_bgpmap/", webHandlerBGPMap("bird6", "route_where_bgpmap")) + http.HandleFunc("/ipv4/route_generic/", webBackendCommunicator("bird", "route_generic")) + http.HandleFunc("/ipv6/route_generic/", webBackendCommunicator("bird6", "route_generic")) + http.HandleFunc("/ipv4/generic/", webBackendCommunicator("bird", "generic")) + http.HandleFunc("/ipv6/generic/", webBackendCommunicator("bird6", "generic")) http.HandleFunc("/ipv4/traceroute/", webBackendCommunicator("traceroute", "traceroute")) http.HandleFunc("/ipv6/traceroute/", webBackendCommunicator("traceroute6", "traceroute")) http.HandleFunc("/whois/", webHandlerWhois)