@@ -37,10 +37,10 @@ get peered.
3737
3838### Route-Reflector setup  Without Full Mesh  
3939
40- This model support the common scheme of using Route Reflector Server node to concentrate  
40+ This model support the common scheme of using Route Reflector Server node to concentrate
4141peering from Client Peer. This has the big advantage of not needing full mesh, and
42- scale better. In this mode kube-router expects each node is configured either in  
43- Route Reflector server mode or in Route Reflector client mode. This is done  
42+ scale better. In this mode kube-router expects each node is configured either in
43+ Route Reflector server mode or in Route Reflector client mode. This is done
4444with node ` kube-router.io/rr.server=ClusterID ` , ` kube-router.io/rr.client=ClusterId ` 
4545respectively. In this mode each Route Reflector Client will only peer with Route
4646Reflector Servers. Each Route Route Reflector Server will peer other Route Reflector
@@ -52,7 +52,7 @@ Users can annotate node objects with the following command:
5252kubectl annotate node <kube-node> "kube-router.io/rr.server=42" 
5353``` 
5454
55- for Route Reflector server mode, and  
55+ for Route Reflector server mode, and
5656
5757``` 
5858kubectl annotate node <kube-node> "kube-router.io/rr.client=42" 
@@ -92,6 +92,20 @@ kubectl annotate node <kube-node> "kube-router.io/peer.ips=192.168.1.99,192.168.
9292kubectl annotate node <kube-node> "kube-router.io/peer.asns=65000,65000" 
9393``` 
9494
95+ ### AS Path Prepending  
96+ 
97+ For traffic shaping purposes, you may want to prepend the AS path announced to peers.
98+ This can be accomplished on a per-node basis with annotations:
99+ -  ` kube-router.io/path-prepend.as ` 
100+ -  ` kube-router.io/path-prepend.repeat-n ` 
101+ 
102+ If you wanted to prepend all routes from a particular node with the AS 65000 five times,
103+ you would run the following commands:
104+ ``` 
105+ kubectl annotate node <kube-node> "kube-router.io/path-prepend.as=65000" 
106+ kubectl annotate node <kube-node> "kube-router.io/path-prepend.repeat-n=5" 
107+ ``` 
108+ 
95109### BGP Peer Password Authentication  
96110
97111The examples above have assumed there is no password authentication with BGP
0 commit comments