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

Need Assistance - T1 Point to Point

Status
Not open for further replies.

pchan

Technical User
Jul 29, 2000
53
US
I have two 1720 routers with a T1 in between location 'A' and 'B'. Also have a DSL connection at location 'A' which we get the internet. The problem is that any workstations in location 'A' or 'B' cannot get to any outside external address. Both routers can ping external addresses but not the workstations. The workstations do have the gateway set for these routers.

Thanks in advance for any assistance.

Here is the config for location 'A'.

Current configuration : 945 bytes
!
! Last configuration change at 20:32:22 UTC Wed Jun 4 2003
! NVRAM config last updated at 20:30:29 UTC Wed Jun 4 2003
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname ChandlerUptown
!
enable secret 5 $1$8Nl6$68x2wM8LaHNNvURjFDCP/1
enable password abc
!
ip subnet-zero
!
!
!
!
interface FastEthernet0
ip address 192.168.1.50 255.255.255.0
speed auto
full-duplex
!
interface Serial0
description T1 to ChandlerDowntown Office
ip address 192.168.0.1 255.255.255.0
encapsulation ppp
service-module t1 clock source internal
!
router rip
redistribute connected
passive-interface Serial0
network 192.168.1.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.1.254
ip route 192.168.2.0 255.255.255.0 Serial0
no ip http server
!
!
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
!
line con 0
line aux 0
line vty 0 4
password !abc!
login
!
end

Config for location 'B'

Current configuration : 786 bytes
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname ChandlerDowntown
!
enable secret 5 $1$gdcA$wLn2A8JbKZ.y6TyHagkwU/
enable password !abc!
!
ip subnet-zero
!
!
!
!
interface FastEthernet0
ip address 192.168.2.50 255.255.255.0
speed auto
full-duplex
!
interface Serial0
description T1 to ChandlerUptown Office
ip address 192.168.0.2 255.255.255.0
encapsulation ppp
!
router rip
redistribute connected
passive-interface Serial0
network 192.168.2.0
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.1.254
ip route 192.168.1.0 255.255.255.0 Serial0
no ip http server
!
!
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
!
line con 0
line aux 0
line vty 0 4
password !abc!
login
!
end

 
I think you are missing a NAT stament or two if you are going from Private to Public ip's
 
dconstatino: it doesn't appear as though the internet is connected to that router so therefore the NAT would be on another router.

pchan: what addresses are your clients on?
 
I assume your DSL is connected to FE0 on Router A, correct? What is it connnected to? Is it a cable/dsl router? What is the IP on it? Your default route points to .1.254 so make sure the IP on the next hop is .1.254
What ip are the computers using for the gateway?

Degg
Network Administrator
 
If the DSL is connected on FE0, where is the router connected to the LAN? The DSL router must be seperate.
 
It sounds like he has a cable/dsl router/switch connected to FE0, and the Lan is connected to the dsl router/switch as well. If this is the case, the gateway for computers on RouterA should be 192.68.1.254.

Also, I noticed you have RIP running, but have both Serial interfaces set to passive. This does no good, as neither router will pass RIP updates out it serial interface. You dont really need RIP anyways in my opinion.

Degg
Network Administrator
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top