December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to use EIGRP to exchange routing information between your CE and PE routers.
The solution to this problem is similar to the RIP solution in Recipe 26.5 and the OSPF solution in Recipe 26.6. First we have to enable the routing protocol on the CE routers, which we do in the usual way:
Router-CE-A1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router-CE-A1(config)#router eigrpRouter-CE-A1(config-router)#156networkRouter-CE-A1(config-router)#192.168.1.0networkRouter-CE-A1(config-router)#192.168.5.0no auto-summaryRouter-CE-A1(config-router)#endRouter-CE-A1#
We have disabled EIGRP autosummarization because, for the clarity of the example, we want to see all of the subnets. The other CE router’s configuration is similar:
Router-CE-A2#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router-CE-A2(config)#router eigrpRouter-CE-A2(config-router)#156networkRouter-CE-A2(config-router)#10.0.0.0networkRouter-CE-A2(config-router)#192.168.3.0no auto-summaryRouter-CE-A2(config-router)#endRouter-CE-A2#
And then we must configure the PE routers to take part in EIGRP for this VRF:
Router-PE1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router-PE1(config)#router eigrpRouter-PE1(config-router)#1001no auto-summaryRouter-PE1(config-router)#address-family ipv4 vrfRouter-PE1(config-router-af)#NetworkAredistribute bgp100metric10000 10 255 ...
Read now
Unlock full access