|
|
|
Bookmark this page:
Yahoo!
Windows Live
del.icio.us
digg
Netscape
|
|
||||||||||
|
Posted by tg on June 27, 2009, 6:24 pm
Please log in for more thread options
dialup card doing a UK dialup? I'm in the UK, got this card fitted inside a cisco 2651xm router, I've tried to configure it but I'm puzzled as to how to get it to dialup to my isp. None of the modems lights have come on - I don't know if this is a duff card or if I haven't configured it properly.. I did find http://www.cisco.com/en/US/docs/ios/12_3t/12_3t14/feature/guide/gt12pwi8.html on google but I can't get this modem card to dial out. I also found http://fromatobtoit.co.uk/2008/04/20/cisco-modems-and-dialtone/ but still no joy. What commands test the modems functions? Thanks for any pointers. | ||||||||||
|
Posted by bod43 on June 27, 2009, 9:03 pm
Please log in for more thread options Please post sh ver sh ip int br sh modem output. Sanitise ip addresses/serial numbers if required. I have never used a modem like this but I have done a bit of dialup years ago. By default on cisco interfaces are shutdown, that may be why you have no lights. ####### I have been making some notes on what might need done. I may as well paste them in here. I do not know anything about the line33 commands however the document that you pointed at has them. The rest should be pretty close I think. First find out what async interface/line number your card is on. sh ip int br sh modem e.g. "Modem 0/3/0 [line 50], Async0/3/0, TTY50" Substitute this number in all command below for the 33 one. interface Dialer1 ip address negotiated encapsulation ppp dialer pool 1 ! this is the link to the physical interface dialer string 6662000 ! the phone number to dial dialer-group 11 ! this is the link with the dialer-list ppp authentication chap dialer in-band ppp authentication chap pap ppp chap hostname user@xyz.com ppp chap password yourpassword ppp pap sent-username user@xyz.com password yourpassword dialer idle-timeout 300 ! check that this is seconds and ! choose for yourself no shut interface Async33 ! substitute your number here no ip address dialer pool-member 1 ! phy async mode interactive no shut ! ! Identify "interesting" traffic that will bring up the dialer ! in this case ANY IP traffic. dialer-list 11 protocol ip permit ip route 0.0.0.0 int dialer 1 !/very important/ line 33 ! substitute your number here autoselect ppp modem Out flowcontrol hardware transport input all | ||||||||||
|
Posted by Uli Link on June 28, 2009, 4:24 am
Please log in for more thread options bod43 schrieb:
>> does anyone have a sample config I can look at for a cisco wic-1am-v2
>> dialup card doing a UK dialup? I'm in the UK, got this card fitted >> inside a cisco 2651xm router, I've tried to configure it but I'm puzzled >
> Please post > sh ver > sh ip int br > sh modem > > output. > > Sanitise ip addresses/serial numbers if required. > > I have never used a modem like this but I have done a bit of > dialup years ago. > > By default on cisco interfaces are shutdown, that may > be why you have no lights. > > ####### > > I have been making some notes on what might need done. > I may as well paste them in here. I do not know anything about > the line33 commands however the document that you pointed > at has them. The rest should be pretty close I think. > > First find out what async interface/line number your > card is on. > > sh ip int br > sh modem > > e.g. "Modem 0/3/0 [line 50], Async0/3/0, TTY50" > > Substitute this number in all command below > for the 33 one. > > interface Dialer1 > ip address negotiated > encapsulation ppp > dialer pool 1 ! this is the link to the physical interface > dialer string 6662000 ! the phone number to dial > dialer-group 11 ! this is the link with the dialer-list > ppp authentication chap > dialer in-band > ppp authentication chap pap > ppp chap hostname user@xyz.com > ppp chap password yourpassword > ppp pap sent-username user@xyz.com password yourpassword > > dialer idle-timeout 300 ! check that this is seconds and > ! choose for yourself > no shut > > interface Async33 ! substitute your number here > no ip address > dialer pool-member 1 ! phy > async mode interactive > no shut > ! > > ! Identify "interesting" traffic that will bring up the dialer > ! in this case ANY IP traffic. > dialer-list 11 protocol ip permit > > ip route 0.0.0.0 int dialer 1 > > !/very important/ > > line 33 ! substitute your number here > autoselect ppp > modem Out > flowcontrol hardware > transport input all > You'll also need a chat script and perhaps you'll need to disable the modem waiting for the dial tone before dialing. This is what the ATX3 command does, if the modem can detect the dial tone when it goes off-hook, you can just dial with ATD instead of ATX3D. Here is my chat script which works with chap authentication by the ISP chat-script dial "" AT OK "ATX3D \T" TIMEOUT 60 CONNECT \C under the Dialer interface the dialer string is for multitone dialing, for pulse dialing ommit the leading T (or you can put it into the chat script...) dialer string T<telephone number> modem-script dial
This works nicely with a WIC-1AM (non -V2, but this should not make any difference in the config) -- ULi | ||||||||||

req: sample config wic-1am-v2 modem card
Yahoo!
Windows Live
del.icio.us
digg
Netscape 






> dialup card doing a UK dialup? I'm in the UK, got this card fitted
> inside a cisco 2651xm router, I've tried to configure it but I'm puzzled