Link to home
Start Free TrialLog in
Avatar of Enhance Technology
Enhance TechnologyFlag for India

asked on

EIGRP Confg

How to configure point to point link with 2 router in single location (single switch) which is connected to single router, detail find below
R1 192.168.1.1
(E1 Link 10.10.10.2)
R2 192.168.1.2
(Eth Link 20.20.20.2)

3 router installed 2nd location
R1 192.168.20.1
(E1 Link 10.10.10.1)
(Eth Link 20.20.20.1)
Avatar of Predrag Jovic
Predrag Jovic
Flag of Poland image

I am not sure that I understand what you need. Can you, please, provide topology?
Avatar of Enhance Technology

ASKER

Hello Sir,
Please find the attachment for topology detail.
Topology.jpg
Router 1 (uper left)
router eigrp 1
 passive-interface FastEthernet0/1  <-- do not send hellos to private network
 network 90.90.90.2 0.0.0.0  <---- 0.0.0.0 means advertise networks only on that specific address
 network 192.168.90.1 0.0.0.0
 no auto-summary

Router2 (upper right)
router eigrp 1
 passive-interface FastEthernet0/1<-- do not send hellos to private network
 network 80.80.80.2 0.0.0.0
 network 192.168.90.6 0.0.0.0
 no auto-summary

Router3 (router down)
router eigrp 1
 passive-interface FastEthernet0/1 <-- do not send hello to private network
 network 80.80.80.1 0.0.0.0
 network 90.90.90.1 0.0.0.0
 network 192.168.207.1 0.0.0.0
 no auto-summary

However, on drawing you have in network down ip addresses from 192.168.90.X/X assigned to hosts I guess those should not be down :). Also address on router is 192.168.0.201 and hosts are 192.168.207.x/x I guess it is typo (check you design and adjust IP addresses).
If those are not typo I guess you created router on the stick and then passive interfaces for EIGRP should be all subinterfaces to local network and rest of the networks should be added to EIGRP so those too can be advertised.
I assumed everywhere fa0/1 was used as interface to local network (you should adapt it to your design).
It is easy to check what interface should be passive (the one with private IP address on it (that should be configured with network statement)):
sh ip int brief
Interface              IP-Address      OK? Method Status                Protocol
FastEthernet0/0        90.90.90.2      YES manual up                    up
FastEthernet0/1        192.168.90.1    YES manual up                    up
Sir,
I did it, after that m not able to reach my network, please suggest...

Router 1 (uper left)

interface FastEthernet0/0
 ip address 192.168.90.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Serial0/0/0
 ip address 90.90.90.2 255.255.255.0
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 90.90.90.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end


Router2 (upper right)

interface FastEthernet0/0
 ip address 192.168.90.6 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 80.80.80.2 255.255.255.0
 duplex auto
 speed auto
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 80.80.80.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end



Router3 (router down)

interface FastEthernet0/0
 ip address 192.168.90.6 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 80.80.80.2 255.255.255.0
 duplex auto
 speed auto
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 80.80.80.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end
R-192.168.90.1.txt
R-192.168.90.6.txt
R-192.168.207.1.txt
Router3 (router down)

interface FastEthernet0/0
 ip address 192.168.90.6 255.255.255.0
 duplex auto
 speed auto

router eigrp 1
 passive-interface FastEthernet0/1
 network 80.80.80.0 0.0.0.3
 network 192.168.90.0

Wrong network and passive interface (you have wrong passive interface on router 1 and 2). According to configurations passive interfaces everywhere should be fa0/0.
On router 3 network should be 192.168.271.0

But you can remove passive interface command for practice, it is security mechanism. passive interface should match with interface to hosts, not to EIGRP neighbors. If interface is passive hello messages will not be sent from that interface and routers can't establish neighbor relationships on those interfaces.
Dear Sir,
Sorry for the inconvenience, previously giving configuration was wrong, kindly consider following configuration.


Router1 (upper left)

interface FastEthernet0/0
 ip address 192.168.90.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Serial0/0/0
 ip address 90.90.90.2 255.255.255.0
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 90.90.90.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end



Router2 (upper right)

interface FastEthernet0/0
 ip address 192.168.90.6 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 80.80.80.2 255.255.255.0
 duplex auto
 speed auto
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 80.80.80.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end


Router3 (router down)

interface FastEthernet0/0
 ip address 192.168.207.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 80.80.80.1 255.255.255.0
 duplex auto
 speed auto
!
interface Serial0/0/0
 ip address 90.90.90.1 255.255.255.0
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 80.80.80.0 0.0.0.3
 network 90.90.90.0 0.0.0.3
 network 192.168.207.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end
R-192.168.90.1.txt
R-192.168.90.6.txt
R-192.168.207.1.txt
ASKER CERTIFIED SOLUTION
Avatar of Predrag Jovic
Predrag Jovic
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In between Router 3 & Router 2 communication is done, but Router 3 & Router 1 still not able to communicate (serial interface down showing), whats need to be change, please suggest.

Router 1

#sh ip int brief
Interface              IP-Address      OK? Method Status                Protocol
 
FastEthernet0/0        192.168.90.1    YES manual up                    up
 
FastEthernet0/1        unassigned      YES manual administratively down down
 
Serial0/0/0            90.90.90.2      YES manual up                    down

Vlan1                  unassigned      YES manual administratively down down


#sh running-config
interface FastEthernet0/0
 ip address 192.168.90.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Serial0/0/0
 ip address 90.90.90.2 255.255.255.0
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 90.90.90.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end



Router 3

#sh ip interface brief
Interface              IP-Address      OK? Method Status                Protocol
 
FastEthernet0/0        192.168.207.1   YES manual up                    up
 
FastEthernet0/1        80.80.80.1      YES manual up                    up
 
Serial0/0/0            90.90.90.1      YES manual up                    down
 
Vlan1                  unassigned      YES manual administratively down down


#sh running-config
Building configuration...

Current configuration : 558 bytes
!
version 12.4
no service password-encryption
!
hostname Router
!
!
!
!
!
ip ssh version 1
!
!
interface FastEthernet0/0
 ip address 192.168.207.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 80.80.80.1 255.255.255.0
 duplex auto
 speed auto
!
interface Serial0/0/0
 ip address 90.90.90.1 255.255.255.0
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 network 80.80.80.0 0.0.0.3
 network 90.90.90.0 0.0.0.3
 network 192.168.207.0
 no auto-summary
!
ip classless
!
!
!
!
!
line con 0
line vty 0 4
 login
!
!
end
Serial0/0/0            90.90.90.2      YES manual up                    down
Your serial interface protocol is down. Problem is not related to EIGRP, but for serial interface.


You can try cable serial DCE cable instead of serial DTE that you are using.
Since for serial links one side must be DCE, if both sides are DTE protocol will be down.
But I am not sure what is solution for Packet tracer.
Both link working, but why all traffic going through Router2 only

Router 1


Router#sh ip int brief
Interface              IP-Address      OK? Method Status                Protocol
 
FastEthernet0/0        192.168.90.1    YES manual up                    up
 
FastEthernet0/1        unassigned      YES unset  administratively down down
 
Serial0/0/0            90.90.90.2      YES manual up                    up
 
Vlan1                  unassigned      YES unset  administratively down down

Router#traceroute 192.168.207.100
Type escape sequence to abort.
Tracing the route to 192.168.207.100

  1   192.168.90.6    1 msec    0 msec    0 msec    
  2   80.80.80.1      0 msec    1 msec    0 msec    
  3   192.168.207.100 11 msec   0 msec    0 msec    


Router#sh running-config
Building configuration...

Current configuration : 778 bytes
!
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
!
!
!
ip cef
no ipv6 cef
!
!
!
!
!
!
!
!
!
!
ip ssh version 1
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface FastEthernet0/0
 ip address 192.168.90.1 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 no ip address
 duplex auto
 speed auto
 shutdown
!
interface Serial0/0/0
 ip address 90.90.90.2 255.255.255.0
 clock rate 2000000
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 passive-interface FastEthernet0/1
 network 90.90.90.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
ip flow-export version 9
!
!
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
 login
!
!
!
end



Router 2

Router#sh ip int brief
Interface              IP-Address      OK? Method Status                Protocol
 
FastEthernet0/0        192.168.90.6    YES manual up                    up
 
FastEthernet0/1        80.80.80.2      YES manual up                    up
 
Vlan1                  unassigned      YES unset  administratively down down

Router#traceroute 192.168.207.100
Type escape sequence to abort.
Tracing the route to 192.168.207.100

  1   80.80.80.1      0 msec    0 msec    0 msec    
  2   192.168.207.100 0 msec    1 msec    0 msec    

Router#sh running-config
Building configuration...

Current configuration : 677 bytes
!
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
!
!
!
no ip cef
no ipv6 cef
!
!
!
!
!
!
!
!
!
!
ip ssh version 1
!
!
spanning-tree mode pvst
!
!
!
!
!
!
interface FastEthernet0/0
 ip address 192.168.90.6 255.255.255.0
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 80.80.80.2 255.255.255.0
 duplex auto
 speed auto
!
interface Vlan1
 no ip address
 shutdown
!
router eigrp 1
 network 80.80.80.0 0.0.0.3
 network 192.168.90.0
 no auto-summary
!
ip classless
!
ip flow-export version 9
!
!
!
!
!
!
!
line con 0
!
line aux 0
!
line vty 0 4
 login
!
!
!
end
That's how EIGRP works.
:)
Serial link is way much slower than Fast Ethernet link.
By default you can load balance traffic only through 4 equal cost paths.
If routes are not equal cost routes, by default only best route will be placed in routing table.
Ok got it sir, but there is a problem actually we have 2 different ISP link in my network which is connected to a single router with different location. in my network there is 100 + computer out of which 50 in connected with 1 ISP router & rest of connected with 2 ISP router. What happens now is if my 1st ISP goes down my all 50 user stuck in same case we run batch file for using 2nd ISP & all 100 user will be connect with 2nd router.

In that scenario if my 1st ISP or 2nd ISP goes down, i am not able to find out which one is down because it will connect computers automatically for running ISP router.

I would like automatically fail over should stop.
EIGRP knows that both neighbors exists and what networks are advertised by each of them. Router will have to rediscover the best path, no problem there. EIGRP can be configured to use unequal load balancing if you want to do so (but it can create new challenges).

router eigrp 1
 variance x

However for failover scenario, have in mind that if one of the links is down you can run into problem with NAT.
Ok got it sir,
Thank You so much.
You can shut Fa 0/1 interface on R2 or R3 and see that is traffic rerouted.

You are welcome.
Sir,
There is a issue is my serial link goes down in same time eth link getting RTO 5-6 time because of which user disconnect which is connected with eth link. what is the way to serial traffic in & out via serial link only & eth traffic in out via eth link only ?
Not sure what are you trying to describe.
Real world or lab situation?
I tried it in packet tracer and the same happened what you described. That is some packet tracer bug. That's should not happen in real world, I expect other problems in the real world.