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

801 - Incoming connections

Status
Not open for further replies.

AMS100

Programmer
Oct 19, 2001
111
GB
I'm new to this Router malarkey, so any help is appreciated. So far I am able to set Cisco 801 routers to dial out on ISDN and connect to a remote IP address. The problem I'm having is trying the opposite - Dialling into a 801. It doesn't seem to be as straight forward, could anybody point me in the right direction. Thanks
 
Hi

below is a basic setup (ISP dialout and remote user dialin):
Certain settings are country specific, eg. we use Switch type Basic Net3 and no SPID's that might be different in your case. Since this was only a test installation I didn't care much about security, eg. no dialback etc.

(helpful troubleshooting commands:
- debug dialer
- debug ppp authentication
- debug isdn events
If you're connected through a Telnet Session, enter TERM MON to get the debug outputs displayed.)

Hope this helps!

regards,
Alan


router1#sh conf
Using 2210 out of 8058 bytes
!
version 12.0
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname router1
!
boot system flash c800-y6-mw_120-7_T.bin
enable password 7 xy
!
username admin password 7 xy
!
!
ip subnet-zero
!
no ip domain-lookup
isdn switch-type basic-net3
isdn voice-call-failure 0
!
interface Ethernet0
description connected to EthernetLAN
ip address 192.168.0.1 255.255.255.0
no ip directed-broadcast
ip nat inside
no keepalive
!
interface BRI0
no ip address
no ip directed-broadcast
encapsulation ppp
dialer pool-member 1
isdn switch-type basic-net3
ppp authentication chap pap callin
!
interface Dialer1
description Dial-in, Remote Maintenance
ip address 192.168.1.1 255.255.255.0
no ip directed-broadcast
ip nat inside
encapsulation ppp
dialer remote-name admin
dialer pool 1
dialer-group 2
peer default ip address pool pool1
ppp authentication chap pap callin
!
interface Dialer2
description connected to Internet
ip address negotiated
no ip directed-broadcast
ip nat outside
encapsulation ppp
no ip split-horizon
dialer remote-name isp
dialer pool 1
dialer idle-timeout 45
dialer string 10766015111111
dialer hold-queue 10
dialer-group 1
no cdp enable
ppp authentication chap pap callin
ppp chap hostname isp
ppp chap password 7 xy
ppp pap sent-username router1 password 7 xy
!
router rip
version 1
passive-interface Dialer1
passive-interface Dialer2
network 192.168.0.0
network 192.168.1.0
no auto-summary
!
ip local pool pool1 192.168.1.10 192.168.1.20
ip nat inside source list 1 interface Dialer2 overload
no ip http server
ip classless
ip route 0.0.0.0 0.0.0.0 Dialer2
!
access-list 1 permit 192.168.0.0 0.0.0.255
access-list 1 permit 192.168.1.0 0.0.0.255
access-list 101 deny udp any eq netbios-dgm any
access-list 101 deny udp any eq netbios-ss any
access-list 101 deny udp any eq netbios-ns any
access-list 101 permit ip any any
dialer-list 1 protocol ip list 101
dialer-list 2 protocol ip permit
!
line con 0
exec-timeout 0 0
login
transport input none
stopbits 1
line vty 0 4
password 7 xy
login
!
end


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top