diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-12-28 21:02:03 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-12-28 21:02:03 +0900 |
commit | 58946b7924840f1effc993e95440266479c668d5 (patch) | |
tree | ac6fe1387af028f49a93f9f74f5bcf6ae694a376 /docs/sources/route-server.md | |
parent | 7a2b3951160804c6895714621099168e8e56aa74 (diff) |
config: make config/state variable name simple
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
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 ``` |