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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frame Relay Channelized Frac T1

Status
Not open for further replies.

minoad

Programmer
Mar 28, 2001
138
0
0
US
Can somone tell me what the command is to specify the channels to be used in a frame relay network.
I have channels 1-10 in use for voice and channels 21-24 dedicated as data.

I am trying
serial1 service-module timeslots 21-24
serial1 frame-relay lmi-type ansi

serial1.1 dlci 104

I have spoken with Tech support and they say they have turned on the line even though I get no connection and lmi timeouts when i attempt to connect. Below is the full config. Hopefully someone can see what i am missing.

Current configuration:
!
version 11.2
no service password-encryption
no service udp-small-servers
no service tcp-small-servers
!
hostname Router
!
!
ip subnet-zero
no ip domain-lookup
ip domain-name ccswfl.org
ip name-server 192.168.1.30
!
interface Ethernet0
ip address 192.168.2.36 255.255.255.0
!
interface Serial0
no ip address
shutdown
service-module 56k clock source line
service-module 56k network-type dds
!
interface Serial1
no ip address
encapsulation frame-relay
service-module t1 timeslots 21-24
frame-relay lmi-type ansi
!
interface Serial1.1 point-to-point
ip address 172.16.1.2 255.255.255.252
frame-relay interface-dlci 104
!
router rip
version 2
network 172.16.0.0
network 192.168.1.0
network 192.168.2.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 172.16.1.1
ip http server
!
Thanks

Micah A. Norman
 
On our routers, the timeslots are configured on the Serial Interface itself, not the sub-interface...

interface Serial0
description Connected to T1
no ip address
encapsulation frame-relay
no fair-queue
service-module t1 timeslots 1-4
frame-relay lmi-type ansi
!
interface Serial0.1 point-to-point
description Connected to Houston Frame
ip address 192.168.x.x 255.255.255.0
ip helper-address 192.168.x.0
frame-relay interface-dlci 100


Thanks,

Matt Wray

GFH

 
Doh! Just noticed that you had 2 serials, sorry about that.

You ought to verify with the carrier what slots they are using. Sometimes they go backwards from what you might think, 1-4 instead...

Thanks,

Matt Wray

GFH

 
Might sound a bit obvious, but since you aren't getting LMI keepalives, are you using the correct LMI protocol? Please post if you solve the problem, as I'm curious about the cause.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top