frontend: generic query types
This commit is contained in:
parent
93f03bfe4e
commit
18d2d5ba6c
@ -34,6 +34,8 @@ func renderTemplate(w http.ResponseWriter, r *http.Request, title string, conten
|
|||||||
"route_where": "show route where net ~ [ ... ]",
|
"route_where": "show route where net ~ [ ... ]",
|
||||||
"route_where_all": "show route where net ~ [ ... ] all",
|
"route_where_all": "show route where net ~ [ ... ] all",
|
||||||
"route_where_bgpmap": "show route where net ~ [ ... ] (bgpmap)",
|
"route_where_bgpmap": "show route where net ~ [ ... ] (bgpmap)",
|
||||||
|
"route_generic": "show route ...",
|
||||||
|
"generic": "show ...",
|
||||||
"whois": "whois ...",
|
"whois": "whois ...",
|
||||||
"traceroute": "traceroute ...",
|
"traceroute": "traceroute ...",
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,8 @@ func webBackendCommunicator(endpoint string, command string) func(w http.Respons
|
|||||||
"route_all": "show route for %s all",
|
"route_all": "show route for %s all",
|
||||||
"route_where": "show route where net ~ [ %s ]",
|
"route_where": "show route where net ~ [ %s ]",
|
||||||
"route_where_all": "show route where net ~ [ %s ] all",
|
"route_where_all": "show route where net ~ [ %s ] all",
|
||||||
|
"route_generic": "show route %s",
|
||||||
|
"generic": "show %s",
|
||||||
"traceroute": "%s",
|
"traceroute": "%s",
|
||||||
})[command]
|
})[command]
|
||||||
|
|
||||||
@ -143,6 +145,10 @@ func webServerStart() {
|
|||||||
http.HandleFunc("/ipv6/route_where_all/", webBackendCommunicator("bird6", "route_where_all"))
|
http.HandleFunc("/ipv6/route_where_all/", webBackendCommunicator("bird6", "route_where_all"))
|
||||||
http.HandleFunc("/ipv4/route_where_bgpmap/", webHandlerBGPMap("bird", "route_where_bgpmap"))
|
http.HandleFunc("/ipv4/route_where_bgpmap/", webHandlerBGPMap("bird", "route_where_bgpmap"))
|
||||||
http.HandleFunc("/ipv6/route_where_bgpmap/", webHandlerBGPMap("bird6", "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("/ipv4/traceroute/", webBackendCommunicator("traceroute", "traceroute"))
|
||||||
http.HandleFunc("/ipv6/traceroute/", webBackendCommunicator("traceroute6", "traceroute"))
|
http.HandleFunc("/ipv6/traceroute/", webBackendCommunicator("traceroute6", "traceroute"))
|
||||||
http.HandleFunc("/whois/", webHandlerWhois)
|
http.HandleFunc("/whois/", webHandlerWhois)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user