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!

Help with ms callback

Status
Not open for further replies.
Mar 16, 2000
4
US
Hi,<br><br>Do anybody how to get work callback with a Windows 98 client and a RAS Cisco 26xx ?<br>The ras has Cisco IOS 12.0 and my config is :<br>username Ted callback-dialstring &quot;1234567&quot; callback-rotary 77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;password Rhoda<br>interface async7<br>&nbsp;ip unnumbered ethernet0<br>&nbsp;encapsulation ppp<br>&nbsp;no keepalive<br>&nbsp;async default ip address 1.1.1.1<br>&nbsp;async mode interactive<br>&nbsp;ppp callback accept<br>&nbsp;ppp authentication pap<br>&nbsp;<br>interface async8<br>&nbsp;ip unnumbered ethernet0<br>&nbsp;encapsulation ppp<br>&nbsp;no keepalive<br>&nbsp;async default ip address 1.1.1.2<br>&nbsp;async mode interactive<br>&nbsp;ppp callback accept<br>&nbsp;ppp authentication pap<br>&nbsp;<br>interface async9<br>&nbsp;ip unnumbered ethernet0<br>&nbsp;encapsulation ppp<br>&nbsp;no keepalive<br>&nbsp;async default ip address 1.1.1.3<br>&nbsp;async mode interactive<br>&nbsp;ppp callback accept<br>&nbsp;ppp authentication pap<br>&nbsp;<br>line 7<br>&nbsp;login local<br>&nbsp;modem InOut<br>&nbsp;rotary 77<br>&nbsp;autoselect ppp<br>&nbsp;<br>line 8<br>&nbsp;login local<br>&nbsp;modem InOut<br>&nbsp;rotary 77<br>&nbsp;autoselect ppp<br>&nbsp;<br>line 9<br>&nbsp;login local<br>&nbsp;modem InOut<br>&nbsp;rotary 77<br><br>&nbsp;autoselect ppp<br><br>i call the RAS and get authentication but the call dont hang up and there isnt callback.<br><br>Thanks<br>Mhernand<br>
 
I don't use it in the same way but....<br><br>CISCO2511 as Callback Server running TACACS and Win95 PC calling in....<br><br>(2511 router)<br>service exec-callback<br>service timestamps debug datetime localtime<br>service timestamps log datetime localtime<br>service password-encryption<br>service udp-small-servers<br>service tcp-small-servers<br>!<br>hostname xxxxxx<br>!<br>username 12345 callback-dialstring &quot;&quot; password 7 678910<br>partition flash 2 8 8<br>!<br>chat-script offhook &quot;&quot; \c<br>chat-script dial ABORT BUSY &quot;&quot; ATDT\T TIMEOUT 35 CONNECT \c<br>chat-script callback ABORT ERROR ABORT BUSY &quot;&quot; &quot;ATZ&quot; OK &quot;ATDT \T&quot; TIMEOUT 30 CON<br>NECT \c&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>!<br>interface Async1<br>&nbsp;ip unnumbered Ethernet0<br>&nbsp;encapsulation ppp<br>&nbsp;async dynamic address<br>&nbsp;async mode interactive<br>&nbsp;no snmp trap link-status<br>&nbsp;peer default ip address xxx.xxx.xxx.xxx<br>&nbsp;no cdp enable<br>&nbsp;ppp authentication chap<br>&nbsp;ppp use-tacacs&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>!<br>line 1 <br>&nbsp;exec-timeout 0 0<br>&nbsp;autoselect during-login<br>&nbsp;autoselect ppp<br>&nbsp;script modem-off-hook offhook<br>&nbsp;script callback callback<br>&nbsp;login tacacs<br>&nbsp;modem InOut<br>&nbsp;transport input all<br>&nbsp;rxspeed 38400<br>&nbsp;txspeed 38400<br>&nbsp;flowcontrol hardware&nbsp;&nbsp;&nbsp;&nbsp;<br>!<br>end<br><br><br><br>For the PC side I use DUN and have the Dial-Up Scripting Tool installed to run a script prior to the TACACS and PPP session being fully established.<br><br>On the PC the modem is set with teh additional modem commnads s0=1&c0 so as to autoanswer after one call and toi ignore carrier which will maintain the PPP started session active until callback has completed.<br><br>The script looks as follows (very basic)...<br><br>proc main<br>delay 2<br>transmit &quot;^M&quot;<br>waitfor &quot;Username:&quot;<br>transmit &quot;support^M&quot;<br>waitfor &quot;Password:&quot;<br>transmit &quot;homeuser^M&quot;<br>waitfor &quot;Callback Dialstring:&quot;<br>transmit &quot;0123456789^M&quot;<br>waitfor &quot;RING&quot;<br>delay 15<br>endproc<br><br><br>This has not failed to work for me so far.<br><br>Scripting Tool downloadable from Microsoft. <br><br>Hope it helps
 
Thanks Aceman,this is very helpful for me. Im gonna try with your information. Really thank you very much.<br><br>Mhernandez
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top