Você está na página 1de 14

Lab # 2-7 Troubleshooting EIGRP

Nghia Qui Nguyen Mr. JohnPickard ICTN 3250/51 section 301 or 601 09/15/2011 I. Overview and Comments Implement a topology and EIGRP routing. II. Topology

III.

Troubleshooting Notes 1. Step 1: I noticed that R1 and R2 didnt form neighbors-relationship. I also noticed that R3 and R4 didnt have the neighbor relationship. I checked interfaces on R1 and realized that the IP address was wrong. It was 172.16.21.1 instead of 172.16.12.1. So I changed the IP according to the topology. It fixed the problem and R1 is able to form neighbor relationship with R2. I then used tcl 2. Step 2: I checked router R4 eigrp statement and found out it didnt run the sam AS 1. It was configured to run EIGRP 100. So I changed that by no router eigrp 100 router eigrp 1 network 10.1.4.0 0.0.0.255 network 172.16.34.0 0.0.0.255 no auto-summary 3. Step 3: I could see R4 forming neighbor relationship with R3. So I started running tcl script for all four routers.

* On R1, there were two addresses that didnt have success ping. They were 10.1.4.1 and 172.16.3.1. *On R2, it couldnt ping 10.1.1.1, 10.1.4.1, and 172.16.3.1 *On R3, it couldnt ping 10.1.1.1 and 10.1.4.1 *On R4, it couldnt ping 10.1.1.1 and 172.16.3.1 4. With that information, I started to check routing table on each router. I found out there was a problem with auto-summarization on R1 and I fixed it. I re-ran the tcl script and I noticed that R1,R2,R4 couldnt ping 172.16.3.1. 5. I checked the eigrp 1 network statement and saw the problem. It enabled 172.16.30.0 instead of 172.16.3.0. I fixed that and re-ran tcl script again. This time, every router was able to reach out all ip addresses in the network. My mission established. IV. Show Commands

R1(tcl)#foreach address { +>(tcl)#10.1.1.1 +>(tcl)#172.16.12.1 +>(tcl)#172.16.12.2 +>(tcl)#172.16.2.1 +>(tcl)#172.16.23.2 +>(tcl)#172.16.23.3 +>(tcl)#172.16.3.1 +>(tcl)#172.16.34.3 +>(tcl)#172.16.34.4 +>(tcl)#10.1.4.1 +>(tcl)#} { ping $address } Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.2.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.23.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 172.16.23.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.3.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.4, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 84/84/84 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.4.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 84/84/84 ms R1#show run Building configuration... Current configuration : 1169 bytes ! version 12.3 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R1 ! boot-start-marker boot-end-marker ! ! no aaa new-model ! resource policy ! mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ip subnet-zero ip cef ! ! no ip dhcp use vrf connected !

! no ip domain lookup no ip ips deny-action ips-interface ! no ftp-server write-enable no crypto isakmp ccm interface Loopback0 ip address 10.1.1.1 255.255.255.0 ! interface FastEthernet0/0 no ip address shutdown duplex auto speed auto ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1/0 bandwidth 64 ip address 172.16.12.1 255.255.255.0 clockrate 64000 ! interface Serial0/1/1 no ip address shutdown ! router eigrp 1 network 10.1.1.0 0.0.0.255 network 172.16.12.0 0.0.0.255 no auto-summary neighbor 172.16.12.2 Serial0/1/0 ! ip classless ! ! no ip http server no ip http secure-server control-plane ! line con 0 exec-timeout 0 0 logging synchronous line aux 0 line vty 0 4

login ! End R2#tclsh R2(tcl)#foreach address { +>(tcl)#10.1.1.1 +>(tcl)#172.16.12.1 +>(tcl)#172.16.12.2 +>(tcl)#172.16.2.1 +>(tcl)#172.16.23.2 +>(tcl)#172.16.23.3 +>(tcl)#172.16.3.1 +>(tcl)#172.16.34.3 +>(tcl)#172.16.34.4 +>(tcl)#10.1.4.1 +>(tcl)#} { ping $address } Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/28 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/28 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/57/64 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.2.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.23.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.23.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.3.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.3, timeout is 2 seconds: !!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.4, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 52/55/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.4.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms R2#show run Building configuration... Current configuration : 1298 bytes ! version 12.3 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R2 ! boot-start-marker boot-end-marker ! ! no aaa new-model ! resource policy ! memory-size iomem 15 mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ip subnet-zero ip cef ! ! no ip dhcp use vrf connected ! ! no ip domain lookup no ip ips deny-action ips-interface ! no ftp-server write-enable ! no crypto isakmp ccm !

interface Loopback0 ip address 172.16.2.1 255.255.255.0 ! interface FastEthernet0/0 no ip address shutdown duplex auto speed auto ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1/0 bandwidth 64 ip address 172.16.12.2 255.255.255.0 ! interface Serial0/1/1 bandwidth 64 ip address 172.16.23.2 255.255.255.0 clockrate 64000 ! interface BRI0/2/0 no ip address shutdown ! router eigrp 1 network 172.16.2.0 0.0.0.255 network 172.16.12.0 0.0.0.255 network 172.16.23.0 0.0.0.255 no auto-summary neighbor 172.16.12.1 Serial0/1/0 ! ip classless no ip http server no ip http secure-server ! control-plane ! line con 0 exec-timeout 0 0 logging synchronous line aux 0 line vty 0 4 login ! End

R3#tclsh R3(tcl)#foreach address { +>(tcl)#10.1.1.1 +>(tcl)#172.16.12.1 +>(tcl)#172.16.12.2 +>(tcl)#172.16.2.1 +>(tcl)#172.16.23.2 +>(tcl)#172.16.23.3 +>(tcl)#172.16.3.1 +>(tcl)#172.16.34.3 +>(tcl)#172.16.34.4 +>(tcl)#10.1.4.1 +>(tcl)#} { ping $address } Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/28 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.2.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.23.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.23.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/57/64 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.3.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.4, timeout is 2 seconds:

!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/28 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.4.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms R3(tcl)#tclquit R3#show run Building configuration... Current configuration : 1333 bytes ! version 12.3 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R3 ! boot-start-marker boot-end-marker ! ! no aaa new-model ! resource policy ! memory-size iomem 15 mmi polling-interval 60 no mmi auto-configure no mmi pvc mmi snmp-timeout 180 ip subnet-zero ip cef ! ! no ip dhcp use vrf connected ! ! no ip ips deny-action ips-interface ! no ftp-server write-enable ! ! no crypto isakmp ccm ! interface Loopback0 ip address 172.16.3.1 255.255.255.0 !

interface FastEthernet0/0 no ip address shutdown duplex auto speed auto ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1/0 no ip address shutdown clockrate 2000000 ! interface Serial0/1/1 bandwidth 64 ip address 172.16.23.3 255.255.255.0 ! interface Serial0/2/0 bandwidth 64 ip address 172.16.34.3 255.255.255.0 clockrate 64000 ! interface Serial0/2/1 no ip address shutdown clockrate 125000 ! router eigrp 1 network 172.16.3.0 0.0.0.255 network 172.16.23.0 0.0.0.255 network 172.16.34.0 0.0.0.255 no auto-summary ! ip classless ! ! no ip http server no ip http secure-server ! control-plane ! line con 0 exec-timeout 0 0 logging synchronous line aux 0

line vty 0 4 login ! End R4#tclsh R4(tcl)#foreach address { +>(tcl)#10.1.1.1 +>(tcl)#172.16.12.1 +>(tcl)#172.16.12.2 +>(tcl)#172.16.2.1 +>(tcl)#172.16.23.2 +>(tcl)#172.16.23.3 +>(tcl)#172.16.3.1 +>(tcl)#172.16.34.3 +>(tcl)#172.16.34.4 +>(tcl)#10.1.4.1 +>(tcl)#} { ping $address } Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 84/84/84 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 84/84/84 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.12.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/57/64 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.2.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.23.2, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/56/56 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.23.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.3.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/32 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.3, timeout is 2 seconds:

!!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 28/28/28 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.34.4, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 56/57/64 ms Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.4.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms R4(tcl)#tclquit R4#show run Building configuration... Current configuration : 1268 bytes ! version 12.4 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname R4 ! boot-start-marker boot-end-marker ! logging message-counter syslog ! no aaa new-model memory-size iomem 10 ! dot11 syslog ip source-route ! ! ip cef ! ! no ipv6 cef ! multilink bundle-name authenticated ! voice-card 0 ! archive log config hidekeys !

interface Loopback0 ip address 10.1.4.1 255.255.255.0 ! interface FastEthernet0/0 no ip address shutdown duplex auto speed auto ! interface FastEthernet0/1 no ip address shutdown duplex auto speed auto ! interface Serial0/1/0 bandwidth 64 ip address 172.16.34.4 255.255.255.0 ! interface Serial0/1/1 no ip address shutdown ! interface BRI0/2/0 no ip address encapsulation hdlc shutdown ! interface BRI0/3/0 no ip address encapsulation hdlc shutdown ! router eigrp 1 network 10.1.4.0 0.0.0.255 network 172.16.34.0 0.0.0.255 no auto-summary ! ip forward-protocol nd no ip http server no ip http secure-server ! control-plane ! ! ! ccm-manager fax protocol cisco ! mgcp fax t38 ecm

line con 0 line aux 0 line vty 0 4 login ! scheduler allocate 20000 1000 end

Você também pode gostar