Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

frame relay question

Status
Not open for further replies.

wpski

IS-IT--Management
Joined
Aug 2, 2002
Messages
82
Location
US
Hello.

I am trying to set up a test lab for frame relay. i have two 2620 routers plugged into one 2503 router with 2 serial ports. The 2503 is acting as the DCE for each. I am having two problems. I am unable to ping the router on the far interface of the 2503.(from the router on the s0 to the router on the s1). What do I need to do to enable this? Also I seem to be loosing packets somewhere, as my pings are only about 60% successful. Any advice would be great. Thanks in advance

Will
 
Hi Will

I did this with 3 1750 routers, but the setup should be similar.

On the Frame relay switching router:

version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname frameswitch1
!
!
ip subnet-zero
frame-relay switching
!
!
!
interface Ethernet0
no ip address
no ip directed-broadcast
shutdown
!
interface Serial0
no ip address
no ip directed-broadcast
encapsulation frame-relay
no ip mroute-cache
clockrate 64000
cdp enable
frame-relay intf-type dce
frame-relay route 100 interface Serial1 16
frame-relay route 101 interface Serial1 17
!
interface Serial1
no ip address
no ip directed-broadcast
encapsulation frame-relay
clockrate 64000
cdp enable
frame-relay intf-type dce
frame-relay route 16 interface Serial0 100
frame-relay route 17 interface Serial0 101
!
interface BRI0
no ip address
no ip directed-broadcast
shutdown
!
ip classless
!
!
!
line con 0
transport input none
line aux 0
line vty 0 4
login


On the other two routers I had:


interface Serial0
no ip address
no ip directed-broadcast
encapsulation frame-relay
!
interface Serial0.1 point-to-point
ip address 192.168.100.2 255.255.255.252
no ip directed-broadcast
frame-relay interface-dlci 16
!
interface Serial0.2 point-to-point
ip address 192.168.101.2 255.255.255.252
no ip directed-broadcast
shutdown
frame-relay interface-dlci 17
!
interface Serial0.101 point-to-point
no ip directed-broadcast



and:

!
interface Serial0
no ip address
no ip directed-broadcast
encapsulation frame-relay
no fair-queue
!
interface Serial0.100 point-to-point
backup delay 5 5
backup interface BRI0
ip address 192.168.100.1 255.255.255.252
no ip directed-broadcast
frame-relay interface-dlci 100
!
interface Serial0.101 point-to-point
ip address 192.168.101.1 255.255.255.252
no ip directed-broadcast
frame-relay interface-dlci 101


Hope that is useful
Eurobadger
 
worked thanks a lot

Will
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top