Locations of visitors to this page Perfect dream will never let you sleep in peace...untill you make it real: multipoint frame-relay- Hub and Spoke with RIP

Wednesday, September 8, 2010

multipoint frame-relay- Hub and Spoke with RIP

ah I took me some time to figure out how to configure multipoint frame-realy in hub and spoke network with RIP

hope this helps for you guys
                         <-------r2
r1---->FR cloud
                        <-------r3


r1 is my hub
===========================

!
interface FastEthernet0/0
 ip address 172.16.1.1 255.255.255.0
 duplex auto
 speed auto
!

interface Serial0/3/0
 ip address 192.168.1.1 255.255.255.0
 no ip split-horizon          ---->this command really killed me....this stops split horizon
 encapsulation frame-relay
 frame-relay map ip 192.168.1.2 102 broadcast
 frame-relay map ip 192.168.1.3 103 broadcast
 clock rate 64000
!

router rip
 network 172.16.0.0
 network 192.168.1.0
!
=================================================

r2 is my spoke
=====================================================

!
interface FastEthernet0/0
 ip address 172.17.1.1 255.255.255.0
 duplex auto
 speed auto
!

interface Serial0/3/0
 ip address 192.168.1.2 255.255.255.0
 encapsulation frame-relay
 frame-relay map ip 192.168.1.1 201 broadcast
 frame-relay map ip 192.168.1.2 201 broadcast
 clock rate 64000
!

router rip
 network 172.17.0.0
 network 192.168.1.0
!
========================================

r3 is my spoke
====================================

!
interface FastEthernet0/0
 ip address 172.18.1.1 255.255.255.0
 duplex auto
 speed auto
!

interface Serial0/3/0
 ip address 192.168.1.3 255.255.255.0
 encapsulation frame-relay
 frame-relay map ip 192.168.1.1 301 broadcast
 frame-relay map ip 192.168.1.2 301 broadcast
 clock rate 64000
!

router rip
 network 172.18.0.0
 network 192.168.1.0
!

No comments:

Post a Comment