December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You need to pass a dynamic routing protocol through your tunnels.
Dynamic routing and tunnels can be a dangerous combination. It is critical to ensure that the routers never get confused and think that the best path to the tunnel destination is through the tunnel itself. We offer three different ways of resolving this problem.
The first is to use static routes for the tunnel destination address:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#interface TunnelRouter1(config-if)#1ip addressRouter1(config-if)#192.168.35.6 255.255.255.252tunnel sourceRouter1(config-if)#172.25.1.5tunnel destinationRouter1(config-if)#172.22.1.2exitRouter1(config)#ip routeRouter1(config)#172.22.1.2 255.255.255.255 172.25.1.1router eigrpRouter1(config-router)#55networkRouter1(config-router)#192.168.35.0exitRouter1(config)#endRouter1#
The second method simply excludes the tunnel’s IP address range from the routing protocol. You can then run a different routing protocol for the addresses that you want to pass through the tunnel:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#interface TunnelRouter1(config-if)#1ip addressRouter1(config-if)#192.168.35.6 255.255.255.252tunnel sourceRouter1(config-if)#172.25.1.5tunnel destinationRouter1(config-if)#172.22.1.2exitRouter1(config)#router eigrpRouter1(config-router)#55network ...
Read now
Unlock full access