diff options
Diffstat (limited to 'docs/sources/mrt.md')
-rw-r--r-- | docs/sources/mrt.md | 40 |
1 files changed, 17 insertions, 23 deletions
diff --git a/docs/sources/mrt.md b/docs/sources/mrt.md index 5818a8cc..b4ea5fdd 100644 --- a/docs/sources/mrt.md +++ b/docs/sources/mrt.md @@ -17,15 +17,13 @@ You don't need any special configuration for MRT feature. This page assume the configuration below. ```toml -[Global] - [Global.GlobalConfig] - As = 64512 - RouterId = "192.168.255.1" -[Neighbors] - [[Neighbors.NeighborList]] - [Neighbors.NeighborList.NeighborConfig] - NeighborAddress = "10.0.0.1" - PeerAs = 65001 +[global.config] + as = 64512 + router-id = "192.168.255.1" +[[neighbors]] + [neighbors.config] + neighbor-address = "10.0.0.1" + peer-as = 65001 ``` ## <a name="section1">Dump MRT Table v2 Records @@ -90,20 +88,16 @@ rpc error: code = 2 desc = "no local rib for 10.0.0.1" Oops! Before trying this feature, you must enable route server feature. Configuration is something like below. -``` -$ cat gobgpd.conf -[Global] - [Global.Config] - As = 64512 - RouterId = "192.168.255.1" -[Neighbors] - [[Neighbors.NeighborList]] - [Neighbors.NeighborList.Config] - NeighborAddress = "10.0.0.1" - PeerAs = 65001 - [Neighbors.NeighborList.RouteServer] - [Neighbors.NeighborList.RouteServer.Config] - RouteServerClient = true +```toml +[global.config] + as = 64512 + router-id = "192.168.255.1" +[[neighbors]] + [neighbors.config] + neighbor-address = "10.0.0.1" + peer-as = 65001 + [neighbors.route-server.config] + route-server-client = true ``` OK, let's try again. |