diff options
Diffstat (limited to 'docs/sources/route-server.md')
-rw-r--r-- | docs/sources/route-server.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/sources/route-server.md b/docs/sources/route-server.md index 94751c77..f628e02a 100644 --- a/docs/sources/route-server.md +++ b/docs/sources/route-server.md @@ -18,33 +18,33 @@ the configuration file used in [Getting Started](https://github.com/osrg/gobgp/b ``` $ cat gobgpd.conf [Global] - [Global.GlobalConfig] + [Global.Config] As = 64512 RouterId = "192.168.255.1" [Neighbors] [[Neighbors.NeighborList]] - [Neighbors.NeighborList.NeighborConfig] + [Neighbors.NeighborList.Config] NeighborAddress = "10.0.255.1" PeerAs = 65001 AuthPassword = "hoge1" [Neighbors.NeighborList.Transport] - [Neighbors.NeighborList.Transport.TransportConfig] + [Neighbors.NeighborList.Transport.Config] PassiveMode = true [Neighbors.NeighborList.RouteServer] - [Neighbors.NeighborList.RouteServer.RouteServerConfig] + [Neighbors.NeighborList.RouteServer.Config] RouteServerClient = true [[Neighbors.NeighborList]] - [Neighbors.NeighborList.NeighborConfig] + [Neighbors.NeighborList.Config] NeighborAddress = "10.0.255.2" PeerAs = 65002 AuthPassword = "hoge2" [Neighbors.NeighborList.Transport] - [Neighbors.NeighborList.Transport.TransportConfig] + [Neighbors.NeighborList.Transport.Config] PassiveMode = true [Neighbors.NeighborList.RouteServer] - [Neighbors.NeighborList.RouteServer.RouteServerConfig] + [Neighbors.NeighborList.RouteServer.Config] RouteServerClient = true ``` |