I'm working on configuring dialout with a Cisco 2511 router and external modems. The end point is a dial-in server, which will create a ppp connection. I use this guide as a reference but it only work with async1 port, when I switch to async2 and ping the server, the router doesn't dial the server.
Config: client computer==(ethernet)router==(async port)modems----pstn----modem==dial-in server(s)
Can someone help me out of this? A detail answer or document will help me much since I'm new with this things.
Update: the result of sho run
!
version 11.2
no service password-encryption
no service udp-small-servers
no service tcp-small-servers
!
hostname Cisco
!
!
chat-script dialnum ABORT ERROR ABORT BUSY "" "ATD\T" TIMEOUT 180 CONNECT
chat-script DialOut ABORT ERROR ABORT BUSY "" "ATD\T" TIMEOUT 120 CONNECT
modemcap entry Zyxelsetup:MSC=&FS0=1&K4&N70
modemcap entry hayes:MSC=&FS0=1&K4&N70
modemcap entry Mosetup MSC=&FS0=1+MS=11,1,19200,19200
!
interface Ethernet0
description !!----- LAN interface -----!!
ip address 192.185.10.254 255.255.255.0
ip access-group 100 in
ip access-group 100 out
no ip mroute-cache
!
interface Serial0
no ip address
shutdown
no fair-queue
!
interface Serial1
no ip address
shutdown
!
interface Async1
no ip address
encapsulation ppp
async mode dedicated
dialer in-band
dialer rotary-group 0
!
interface Async2
no ip address
encapsulation ppp
async mode dedicated
dialer in-band
dialer rotary-group 1
!
interface Dialer0
ip address 192.184.10.254 255.255.255.0
encapsulation ppp
dialer in-band
dialer idle-timeout 180
dialer string xxxxxxx
dialer-group 1
ppp chap hostname CISCO1
ppp chap password 7 0010161510
!
interface Dialer1
ip address 192.184.9.254 255.255.255.0
encapsulation ppp
dialer in-band
dialer idle-timeout 60
dialer string xxxxxxxx
dialer-group 1
ppp chap hostname CISCO2
ppp chap password 7 110A11001419
!
ip classless
ip route 192.184.9.0 255.255.255.0 Dialer1
ip route 192.184.10.0 255.255.255.255 Dialer0
access-list 100 permit tcp any any
access-list 100 permit icmp any any
access-list 100 permit ip any any
!
dialer-list 1 protocol ip list 100
!
line con 0
line 1 16
script dialer DialOut
modem InOut
modem autoconfigure discovery
speed 115200
flowcontrol hardware
line aux 0
line vty 0 4
login
!
end
Thank you!