summaryrefslogtreecommitdiffhomepage
path: root/docs/sources/route-reflector.md
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2016-01-08 14:09:27 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-01-09 05:17:57 -0800
commitda01fa48af05820d8b8731379cf647be049be503 (patch)
tree5c804613de7f1602bf2a3eba4cf876abf7a1ecdc /docs/sources/route-reflector.md
parent6ee7c63eb36412903476b6b14e6ec83b6fe5f1ba (diff)
docs: update
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.md56
1 files changed, 29 insertions, 27 deletions
diff --git a/docs/sources/route-reflector.md b/docs/sources/route-reflector.md
index f640564b..ed037656 100644
--- a/docs/sources/route-reflector.md
+++ b/docs/sources/route-reflector.md
@@ -12,33 +12,35 @@ Configure `RouteReflector.RouteReflectorConfig` section to enable route reflecto
The configuration below configures two route reflector clients and two normal iBGP peers.
```toml
-[Global]
- [Global.Config]
- RouterId = "192.168.0.1"
- As = 65000
-[Neighbors]
- [[Neighbors.NeighborList]]
- [Neighbors.NeighborList.Config]
- NeighborAddress = "192.168.10.2"
- PeerAs = 65000
- [Neighbors.NeighborList.RouteReflector.Config]
- RouteReflectorClient = true
- RouteReflectorClusterId = "192.168.0.1"
- [[Neighbors.NeighborList]]
- [Neighbors.NeighborList.Config]
- NeighborAddress = "192.168.10.3"
- PeerAs = 65000
- [Neighbors.NeighborList.RouteReflector.Config]
- RouteReflectorClient = true
- RouteReflectorClusterId = "192.168.0.1"
- [[Neighbors.NeighborList]]
- [Neighbors.NeighborList.Config]
- NeighborAddress = "192.168.10.4"
- PeerAs = 65000
- [[Neighbors.NeighborList]]
- [Neighbors.NeighborList.Config]
- NeighborAddress = "192.168.10.5"
- PeerAs = 65000
+[global.config]
+ router-id = "192.168.0.1"
+ as = 65000
+
+[[neighbors]]
+ [neighbors.config]
+ neighbor-address = "192.168.10.2"
+ peer-as = 65000
+ [neighbors.route-reflector.config]
+ route-reflector-client = true
+ route-reflector-cluster-id = "192.168.0.1"
+
+[[neighbors]]
+ [neighbors.config]
+ neighbor-address = "192.168.10.3"
+ peer-as = 65000
+ [neighbors.route-reflector.config]
+ route-reflector-client = true
+ route-reflector-cluster-id = "192.168.0.1"
+
+[[neighbors]]
+ [neighbors.config]
+ neighbor-address = "192.168.10.4"
+ peer-as = 65000
+
+[[neighbors]]
+ [neighbors.config]
+ neighbor-address = "192.168.10.5"
+ peer-as = 65000
```
## Check route reflector behavior