1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

added columns to default order

This commit is contained in:
Matthias Hannig
2018-08-03 10:52:41 +02:00
parent 58b809678f
commit f11198520d

View File

@ -210,7 +210,14 @@ func getLookupColumnsDefaults() (map[string]string, []string, error) {
"routeserver.name": "RS",
}
order := []string{"network", "bgp.as_path", "gateway", "interface"}
order := []string{
"network",
"gateway",
"neighbour.asn",
"neighbour.description",
"bgp.as_path",
"routeserver.name",
}
return columns, order, nil
}