This is a discussion on telnet please help auto login within the BSNL broadband forums, part of the Broadband Internet Service Providers category; in reference to these http://www.indiabroadband.net/bsnl-b...-plz-help.html http://www.indiabroadband.net/bsnl-b...n-problem.html i have the following doubts- should we add reboot.txt to scheduling task? this script ...
| |||||||
| BSNL broadband Bsnl broadband internet connection and modems, routers and other bsnl dataone related issues can be discussed here. |
| LinkBack | Thread Tools | Display Modes |
| | #1 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | in reference to these http://www.indiabroadband.net/bsnl-b...-plz-help.html (Help on UT300R2U,pppoe,Home500.. plz help!!!!) http://www.indiabroadband.net/bsnl-b...n-problem.html (Auto login problem) i have the following doubts- should we add reboot.txt to scheduling task? this script is not rebooting- 192.168.1.1 23 WAIT "Login:" SEND "admin\m" WAIT "Password:" SEND "\madmin\m" WAIT "Login:" SEND "admin\m" WAIT "Password:" SEND "admin\m" WAIT SEND "reboot\m" WAIT i m having ut300r2u and home 500c plan please help since i need to get up at 2 am daily |
| | |
| | #2 |
| Silver Member Join Date: Jan 2008 Location: Chennai - Tamil Nadu - India Age: 26
Posts: 418
Rep Power: 2 | Here we go.. 1. Download this and put it in one folder say.. c:\restart This folder should contain the downloaded 5 r 6 files. (dont put any subfolder) WinSite: Telnet Scripting Tool 2. create one txt file with the following content in c:\restart.. say restart.txt 192.168.1.1 23 WAIT "Login:" SEND "admin\m" WAIT "Password:" SEND "\madmin\m" WAIT "Login:" SEND "admin\m" WAIT "Password:" SEND "admin\m" WAIT SEND "reboot\m" WAIT 3. create one new schedule... use ur system password while scheduling task. 4. After created the task.. right click on it and in the Run.. do this "c:\restart\tst10.bat" /r:restart.txt (not sure with the file name.. but do it correctly... then save it.. again it will ask ur system username and password.. give it.. it should not throw any error. 5. u done it... do it.. and let me know |
| | |
| | #3 | |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | Quote:
should we create any batch file? | |
| | |
| | #4 |
| Silver Member Join Date: Jan 2008 Location: Chennai - Tamil Nadu - India Age: 26
Posts: 418
Rep Power: 2 | |
| | |
| | #5 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | |
| | |
| | #6 |
| Silver Member Join Date: Jan 2008 Location: Chennai - Tamil Nadu - India Age: 26
Posts: 418
Rep Power: 2 | |
| | |
| | #7 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | after i make reboot.txt file and type the following 192.168.1.1 23 WAIT "Login:" SEND "admin\m" WAIT "Password:" SEND "\madmin\m" WAIT "Login:" SEND "admin\m" WAIT "Password:" SEND "admin\m" WAIT SEND "reboot\m" WAIT and save .Open windows schedule task and add "browse" and add "tst10.exe" and then "right click" on tst10.exe in schedule task and then click on "properties" and give the path in "run" as "C:\tst\reboot.txt" (tst is the folder in C:\) and click "apply" once again i type the password but its not rebooting. please help |
| | |
| | #9 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | |
| | |
| | #10 | |
| Platinum Member | Quote:
| |
| | |
| | #11 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | |
| | |
| | #12 | |
| Platinum Member | Quote:
"C:\tst10.exe" /r:reboot.txt note space between tst10.exe & /r:rebbot.txt On the Task tab you will see "Run", where the location of tst10.exe woold be present already. At the end of this line, outside the quotes, add /r:reboot.txt so it looks like "C:\tst10.exe" /r:reboot.txt | |
| | |
| | #13 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | C:\tst\TST10.exe /r:reboot.txt it worked!!!! BUT now a menu opens "telnet scripting tool v1.1 by........" waiting for login [ BCM96338 ADSL Router Login: admin admin Password: \admin ] what to do now? |
| | |
| | #14 |
| Silver Member Join Date: Jan 2008 Location: Chennai - Tamil Nadu - India Age: 26
Posts: 418
Rep Power: 2 | |
| | |
| | #15 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | here s the screen shot----- |
| | |
| | #16 |
| Silver Member Join Date: Jan 2008 Location: Chennai - Tamil Nadu - India Age: 26
Posts: 418
Rep Power: 2 | |
| | |
| | #17 |
| Platinum Member | The script for TST10.EXE is case sensitive and it depends upon the modem. For example my script (for UT-300R2U) is as follows: Code: 192.168.1.1 23 WAIT "login:" SEND "admin\m" WAIT "password:" SEND "<my_pwd>\m" WAIT "$" SEND "reboot\m" WAIT "$" You must make sure of what the router login wants and code accordingly. To explain the router reboot script: Line 1: 192.168.1.1 23: This tells TST10 that it should connect to IP address 192.168.1.1 on port number 23 (telnet port) Line 2: WAIT "login:": This tells that router will display "login:" as the prompt and it is waiting for input. Line 3: SEND "admin\m": This tells TST10 that it should send 'admin' as the input followed by ENTER (\m) Line 4: WAIT "password:": This tells that router will display "password:" as the prompt and it is waiting for input. Line 5: SEND "<my_pwd>\m": This tells TST10 that it should send '<my_pwd' as the input followed by ENTER (\m) Line 6: WAIT "$": This tells that router will display "$" as the prompt and it is waiting for input. Line 7: SEND "reboot\m": This tells TST10 that it should send 'reboot' as the input followed by ENTER (\m) Line 8: WAIT "$": This tells that router will display "$" as the prompt and it is waiting for input.
__________________ *** Never argue with an idiot *** To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. | To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. ------------------------------------------------------------------------------------------- |
| | |
| | #18 | |
| Silver Member Join Date: Jan 2008 Location: Chennai - Tamil Nadu - India Age: 26
Posts: 418
Rep Power: 2 | Quote:
| |
| | |
| | #20 |
| Junior Member Join Date: Feb 2008 Location: mysore
Posts: 24
Rep Power: 2 | i tried the following 192.168.1.1 23 WAIT "login:" SEND "admin\m" WAIT "password:" SEND "admin\m" WAIT "$" SEND "reboot\m" WAIT "$" and it this screen appears (see attachmet) what to do next? the modem did not reboot.. |
| | |
| Tags |
| auto, login, telnet |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Some important features of Indian Auto Market | MyWay | Cars in India | 4 | 11-06-08 01:24 AM |
| Auto login problem | akshaymys | BSNL broadband | 7 | 08-27-08 05:10 AM |
| How to login through portalid to check usage? | sonsandeep | BSNL broadband | 1 | 03-01-08 01:35 PM |
| Auto Bid Systems, Inc. Announces Next Version of eNegotiation for Online Vehicle | Guest | PR Releases Database | 0 | 03-16-07 03:48 AM |
| Bajaj Auto to stop manufacturing 100cc Platina in the next couple of years | Guest | News and Views from the Business World | 0 | 12-02-06 02:40 AM |