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

2620 Point to Point T1 Requirements

Status
Not open for further replies.

techshoot

Programmer
Aug 25, 2001
173
US
I have a pair of 2620 Routers that had been used as frame relay/T1 connections between two locations. We are now installing a Point to Point connection between the two with a new vendor. I am at a loss on Cisco configurations, though have managed to squeak by a few issues so far. One unit has a T1 DSU/CSU module installed along with 56K DSU/CSU modules and one has a T1 Drop&Insert (2 port) daughter card and a 56K DSU/CSU and a High Density Voice port adapter, 0 ports installed. Are these sufficient for this configuration or is there something in addition that I need. There used to be another frame relay connection to the one with the drop&Insert card which is gone and it handled an 800 line across the T1 which is also gone.
 
so your going from a frame to a point to point. No problem that I see because you have a T1 wic on say router A and a drop insert im guessing a external csu/dsu V.35 connection if this is so than you are ok. Encapsulation HDLC rather than PPP lets insert a config here to give you an idea


routerA

interface Serial0
description ppp
ip address 192.168.1.1 255.255.255.252
no ip directed-broadcast
ipx network AAAA
service-module t1 clock source internal
!
interface Serial1
description PPP
bandwidth 1544
ip address 192.168.1.5 255.255.255.252
no ip directed-broadcast
!
interface FastEthernet0
ip address 172.16.11.64 255.255.0.0
no ip directed-broadcast
full-duplex
ipx network AA


Router B

interface FastEthernet0/0
ip address 172.16.11.64 255.255.0.0
speed auto
full-duplex
ipx network AA
!
interface Serial0/0
description ppp
ip address 192.168.1.2 255.255.255.252
encapsulation ppp
no ip mroute-cache
ipx network AAAA
no fair-queue
compress stac caim 0
service-module t1 clock source internal
!
interface Serial0/1
description ppp
bandwidth 1544
ip address 192.168.1.6 255.255.255.252
encapsulation ppp
no ip mroute-cache
no fair-queue
compress stac caim 0
service-module t1 clock source internal

You can setup a Route 0.0.0.0 0.0.0.0 next hop (ser int)

I hope this helps !!!


Jeter@LasVegas.com
Fisher CCNA
Sprint-Data
 
The router B configuration went pretty much fine for the router with the T1 DSU/CSU card in it, but the configuration for router A with the Channelized T1 would not accept very much at all.

Router B would not accept any ipx paraqmeters at all but the rest went in fine.

Router A configuration has "controller T1 0/1" and "controller T1 0/2" parameters to configure and the 56K DSU/CSU has been "serial 0/0" and "serial 0/1" and I cannot get a "serial1" or "serial2" entry to input. Below is the previous configuration from the frame relay.

!
version 12.0
service timestamps debug uptime
service timestamps log uptime
service password-encryption
service udp-small-servers
service tcp-small-servers
!
hostname xxxxxx
!
enable password 7 08234942061011
!
!
!
!
!
no ip subnet-zero
no ip domain-lookup
!
!
!
controller T1 0/1
framing esf
linecode b8zs
channel-group 0 timeslots 1-4 speed 64
tdm-group 1 timeslots 13-24 type e&m
description T1 from AT&T CO
!
controller T1 0/2
framing esf
linecode b8zs
tdm-group 2 timeslots 13-24 type e&m
description T1 to PBX
!
!
process-max-time 200
!
interface FastEthernet0/0
ip address 10.127.1.4 255.255.255.0
no ip directed-broadcast
!
interface Serial0/0
bandwidth 56
ip address 209.7.134.33 255.255.255.252
no ip directed-broadcast
no ip mroute-cache
shutdown
fair-queue 64 256 0
!
interface Serial0/1:0
no ip address
ip directed-broadcast
encapsulation frame-relay
fair-queue 64 256 0
frame-relay lmi-type cisco
!
interface Serial0/1:0.1 point-to-point
ip address 10.128.2.4 255.255.255.0
ip directed-broadcast
frame-relay interface-dlci 105
!
interface Serial0/1:0.2 point-to-point
ip address 10.128.3.4 255.255.255.0
ip directed-broadcast
frame-relay interface-dlci 110
!
router rip
version 2
network 10.0.0.0
no auto-summary
!
ip classless
ip route 0.0.0.0 255.255.255.0 10.127.3.4
ip route 0.0.0.0 255.255.255.0 10.127.2.4
ip route 0.0.0.0 255.255.255.0 Serial0/1:0
no ip http server
!
connect tdm-group T1 0/1 1 T1 0/2 2
!
!
snmp-server engineID local 0000000902000030801017E0
snmp-server community public RO
snmp-server community private RW
snmp-server location xxxxxxxx
snmp-server contact xxxxxxxx
!
line con 0
exec-timeout 0 0
password 7 104C0C150A1E06
login
transport input pad v120 telnet rlogin udptn
line aux 0
exec-timeout 0 0
modem InOut
modem autoconfigure discovery
transport input all
stopbits 1
speed 38400
flowcontrol hardware
line vty 0 4
password 7 14151707030D3E
login
!
!
no scheduler allocate
end
 
router B
>config t
>ipx routing
>int e0
>ipx network 12eff671 encapsulation sap

See if this works for you on your ipx problem, or
if it's a serial interface you will use hdlc by
default.
 
The sample was for a working router that was running IPX, if your not using ipx do not add the statment Jeter@LasVegas.com
Fisher CCNA,(Routing)
UOP Student BSIT
[americanflag]
 
Maybe I misunderstood you.
You did say that you were entering ipx commands..
You don't need ipx for an ip only config...
 
I made that comment and figured that much at the start but was asking for confirming. I tried a different configuration on the Channelized T1 router and it looked like it was going to work but had a problem with the one with the T1 DSU/CSU saying the serial was down and the line protocol was down indicating no CD. It was past business hours there so I couldn't have anyone check the cabling. Since the router works with the other line (which is still up until we get the new one working) it isn't a hardware problem.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top