From fe42879d209490c4787113db925c7e2db62a91cd Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Mon, 4 May 2020 12:42:18 +0800 Subject: [PATCH] frontend: remove brackets from ASN (caused by confederation) --- frontend/bgpmap.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/bgpmap.go b/frontend/bgpmap.go index 254c749..115f054 100644 --- a/frontend/bgpmap.go +++ b/frontend/bgpmap.go @@ -74,6 +74,11 @@ func birdRouteToGraphviz(servers []string, responses []string, target string) st // Connect each node on AS path paths := strings.Split(strings.TrimSpace(routeASPath), " ") + for pathIndex := range paths { + paths[pathIndex] = strings.TrimPrefix(paths[pathIndex], "(") + paths[pathIndex] = strings.TrimSuffix(paths[pathIndex], ")") + } + // First step starting from originating server if len(paths) > 0 { if len(routeNexthop) > 0 {