Explanation: TunnelX temporarily disabled due to recursive routing
I wanted to take a few minutes to share a scenario that some seem to struggle with. This scenario is a routing issue that sometimes occurs when an interior routing protocol allows routes to leak back through a tunnel. To demonstrate this, I’ve built a lab with three routers. R1 and R3 are participating in EIGRP and have a GRE tunnel configured directly between them.
Topology
Router Configurations
R1
hostname R1 ! interface FastEthernet0/0 ip address 192.168.12.1 255.255.255.0 ! interface Tunnel0 ip address 192.168.13.1 255.255.255.0 tunnel source 192.168.12.1 tunnel destination 192.168.23.3 ! router eigrp 1 network 192.168.0.0 0.0.255.255 ! ip route 0.0.0.0 0.0.0.0 192.168.12.2
R2 (hub)
hostname R2 ! interface FastEthernet0/1 ip address 192.168.12.2 255.255.255.0 ! interface FastEthernet0/1 ip address 192.168.23.2 255.255.255.0 !
R3
hostname R3 ! interface FastEthernet0/1 ip address 192.168.23.3 255.255.255.0 ! interface Tunnel0 ip address 192.168.13.3 255.255.255.0 tunnel source 192.168.23.3 tunnel destination 192.168.12. Continue reading