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-reflector.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-reflector.md')
-rw-r--r-- | docs/sources/route-reflector.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/sources/route-reflector.md b/docs/sources/route-reflector.md index c8fbce50..f640564b 100644 --- a/docs/sources/route-reflector.md +++ b/docs/sources/route-reflector.md @@ -13,30 +13,30 @@ The configuration below configures two route reflector clients and two normal iB ```toml [Global] - [Global.GlobalConfig] + [Global.Config] RouterId = "192.168.0.1" As = 65000 [Neighbors] [[Neighbors.NeighborList]] - [Neighbors.NeighborList.NeighborConfig] + [Neighbors.NeighborList.Config] NeighborAddress = "192.168.10.2" PeerAs = 65000 - [Neighbors.NeighborList.RouteReflector.RouteReflectorConfig] + [Neighbors.NeighborList.RouteReflector.Config] RouteReflectorClient = true RouteReflectorClusterId = "192.168.0.1" [[Neighbors.NeighborList]] - [Neighbors.NeighborList.NeighborConfig] + [Neighbors.NeighborList.Config] NeighborAddress = "192.168.10.3" PeerAs = 65000 - [Neighbors.NeighborList.RouteReflector.RouteReflectorConfig] + [Neighbors.NeighborList.RouteReflector.Config] RouteReflectorClient = true RouteReflectorClusterId = "192.168.0.1" [[Neighbors.NeighborList]] - [Neighbors.NeighborList.NeighborConfig] + [Neighbors.NeighborList.Config] NeighborAddress = "192.168.10.4" PeerAs = 65000 [[Neighbors.NeighborList]] - [Neighbors.NeighborList.NeighborConfig] + [Neighbors.NeighborList.Config] NeighborAddress = "192.168.10.5" PeerAs = 65000 ``` |