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

Setting up Cisco 1003 as access router

Status
Not open for further replies.

hossilein

IS-IT--Management
Aug 2, 2001
2
AT
Hi,

I have a Cisco 1003 ISDN router with a pretty simple setup configured as an access router to let remote workstations dial in to the company network:

The ethernet interface (Ethernet0) has IP 192.168.1.65 and is connected to the intranet LAN (192.168.1.0)

The ISDN interface (BRI0) has IP 192.168.0.1 and has as Dial-In Pool the addresses 192.168.0.2 and .3

Now my users can wonderfully dial in from their remote PCs and get their IP address.
But unfortunately they just see the Cisco, and not the rest of the intranet.

How do the "ip route" commands have to be issued, that for example 192.168.0.2 (the remote PC) sees 192.168.1.1 (the name server and gateway for the whole company)?

Here is the router configuration (without usernames and passwds):

!
version 11.1
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
no service udp-small-servers
no service tcp-small-servers
!
ip subnet-zero
no ip source-route
isdn switch-type basic-net3
!
interface Ethernet0
description connected to EthernetLAN
ip address 192.168.1.65 255.255.255.0
ip helper-address 192.168.1.1
!
interface BRI0
description connected to Dial-inPCs(ISDN)
no ip address
encapsulation ppp
dialer rotary-group 1
no fair-queue
!
interface Dialer1
description connected to Dial-inPCs(ISDN)
ip address 192.168.0.1 255.255.255.0
encapsulation ppp
no ip split-horizon
dialer in-band
dialer-group 1
peer default ip address pool cisco-Group-1
no fair-queue
ppp multilink
ppp authentication chap pap callin
!
router rip
version 2
network 192.168.0.0
network 192.168.1.0
no auto-summary
!
ip local pool cisco-Group-1 192.168.0.2 192.168.0.3
ip name-server 192.168.1.1
ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.1.1
logging buffered
access-list 101 permit ip any any
!

Thanks,
Bernard
 
I solved the problem. It was not on the Cisco Router but on the firewall itself which had no route layed to the 192.168.0.0 network.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top