Wednesday, May 17, 2017

Lab.6 Troubleshoot EIGRP 1

First Time Troubleshoting EIGRP Lab it's Going To Be Fun In This Troubleshooting
So This is the Topology : 
The Purpose is simple just to connect all router so all router can get information from all router 😄☺😃 also in R1 there are 2 loopback interface we must make 2 of them can parsing data with all router too

I have configured this topology like this :

R1 :

interface Loopback0
 ip address 1.1.1.1 255.255.255.255
!
interface Loopback2
 ip address 11.11.11.3 255.255.255.254
!
interface FastEthernet0/0
 ip address 12.12.12.1 255.255.255.0
 duplex auto
 speed auto
!
router eigrp 10
 network 1.0.0.0
 network 12.0.0.0
 no auto-summary
R2 :

interface FastEthernet0/0
 ip address 12.12.12.2 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 23.23.23.10 255.255.255.252
 duplex auto
 speed auto
!
router eigrp 10
 network 12.0.0.0
 network 23.0.0.0
 no auto-summary
R3 :

interface FastEthernet0/0
 ip address 23.23.23.9 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 34.34.34.30 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 23.0.0.0
 network 34.0.0.0
 no auto-summary
R4 :

interface FastEthernet0/0
 ip address 34.34.34.29 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 34.0.0.0
 no auto-summary
By the configuration that have made before there is a big mistake of making the EIGRP topology and that mistake is just wrong putting the network that we want to advertise it so if we want to make ALL router and loopback can communicate each other

we have to put the netmask of the network but in this EIGRP configuration we have to put the Wildcard

and what is Wildcard,A wildcard mask is a mask of bits that indicates which parts of an IP address are available for examination. In the Cisco IOS, they are used in several places, for example:

List of Wildcard Mask
SlashNetmaskWildcard Mask
/30255.255.255.2520.0.0.3
/29255.255.255.2480.0.0.7
/28255.255.255.2400.0.0.15
/27255.255.255.2240.0.0.31
/26255.255.255.1920.0.0.63
/25255.255.255.1280.0.0.127
/24255.255.255.00.0.0.255
/23255.255.254.00.0.1.255
/22255.255.252.00.0.3.255
/21255.255.248.00.0.7.255
/20255.255.240.00.0.15.255
/19255.255.224.00.0.31.255
/18255.255.192.00.0.63.255
/17255.255.128.00.0.127.255
/16255.255.0.00.0.255.255
/15255.254.0.00.1.255.255
/14255.252.0.00.3.255.255
/13255.248.0.00.7.255.255
/12255.240.0.00.15.255.255
/11255.224.0.00.31.255.255
/10255.192.0.00.63.255.255
/9255.128.0.00.127.255.255
/8255.0.0.00.255.255.255
/7254.0.0.01.255.255.255
/6252.0.0.03.255.255.255
/5248.0.0.07.255.255.255
/4240.0.0.015.255.255.255
/3224.0.0.031.255.255.255
/2192.0.0.063.255.255.255
/1128.0.0.0127.255.255.255
And here are the true configuration for this topology :
R1 :

interface Loopback0
 ip address 1.1.1.1 255.255.255.255
!
interface Loopback2
 ip address 11.11.11.3 255.255.255.254
!
interface FastEthernet0/0
 ip address 12.12.12.1 255.255.255.0
 duplex auto
 speed auto
!
router eigrp 10
 network 1.1.1.1 0.0.0.0
 network 11.11.11.2 0.0.0.1
 network 12.12.12.0 0.0.0.255
 no auto-summary
R2 :

interface FastEthernet0/0
 ip address 12.12.12.2 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 23.23.23.10 255.255.255.252
 duplex auto
 speed auto
!
router eigrp 10
 network 12.12.12.0 0.0.0.3
 network 23.23.23.8 0.0.0.3
 no auto-summary
R3 :

interface FastEthernet0/0
 ip address 23.23.23.9 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 34.34.34.30 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 23.23.23.8 0.0.0.3
 network 34.34.34.0 0.0.0.63
 no auto-summary
R4 :

interface FastEthernet0/0
 ip address 34.34.34.29 255.255.255.192
 duplex auto
 speed auto
!
router eigrp 10
 network 34.34.34.0 0.0.0.63
 no auto-summary
After so much changing configuration finally we have done configure the EIGRP Troubleshooting you can test it by yourself and i'm going to give you the Lab you can lab this topology this one i have configured so you may see the configuration or delete the configuration to try this troubleshooting again


EmoticonEmoticon