December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to use RIP to exchange routing information between the CE and PE routers.
You can use RIP to exchange customer routing information between the CE and PE routers at each site. The advantage to doing this is that any customer routes at one site can be automatically propagated to other customer sites. This requires a normal RIP configuration on the CE router:
Router-CE-A2#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router-CE-A2(config)#router ripRouter-CE-A2(config-router)#versionRouter-CE-A2(config-router)#2networkRouter-CE-A2(config-router)#10.0.0.0networkRouter-CE-A2(config-router)#192.168.3.0endRouter-CE-A2#
And there must be a matching RIP configuration for this VRF on the PE router:
Router-PE2#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router-PE2(config)#router ripRouter-PE2(config-router)#versionRouter-PE2(config-router)#2address-family ipv4 vrfRouter-PE2(config-router-af)#NetworkAversionRouter-PE2(config-router-af)#2redistribute bgp100metricRouter-PE2(config-router-af)#4networkRouter-PE2(config-router-af)#192.168.3.0exit-address-familyRouter-PE2(config-router)#exitRouter-PE2(config)#router bgpRouter-PE2(config-router)#100address-family ipv4 vrfRouter-PE2(config-router-af)#NetworkAredistribute rip metricRouter-PE2(config-router-af)#4endRouter-PE2#
There are a few key points to note in this configuration. First, this just ...
Read now
Unlock full access