Results 1 to 40 of 40

telnet please help auto login

  1. #1
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default telnet please help auto login

    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 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. #2
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Thumbs up

    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. #3
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    Quote Originally Posted by aruncse30 View Post
    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
    while in control panel>schedule tasks>add schedule tasks should we "browse" and add restart.txt ?
    should we create any batch file?

  4. #4
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by akshaymys View Post
    while in control panel>schedule tasks>add schedule tasks should we "browse" and add restart.txt ?
    should we create any batch file?
    NOOOOOOOO.. give tst10.bat

  5. #5
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    Quote Originally Posted by aruncse30 View Post
    NOOOOOOOO.. give tst10.bat




    where is this tst10.bat?

    i only made restart.txt in the folder containing one tst10.exe and tst10.txt

  6. #6
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by akshaymys View Post
    where is this tst10.bat?

    i only made restart.txt in the folder containing one tst10.exe and tst10.txt
    no.. i mean tst10.exe man... im not in my pc.. thats y cant give the exact info.. no need to create or use tst10.txt. ok??

  7. #7
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    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

  8. #8
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    SEND "\madmin\m"
    it should be SEND "admin\m"
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  9. #9
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    Quote Originally Posted by whitestar_999 View Post
    it should be SEND "admin\m"



    no luck whitestar_999

    just the reboot.txt notepad is opening

  10. #10
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    Now open Control Panel and open Scheduled Tasks. Add Scheduled Task. Follow the instructions. Browse to the directory you extracted tst10.exe to, and open it. Give a name to this task (only for your convenience, can be anything) and choose how often you want the reboot (daily/weekly/what?). Choose the time you want reboot to occur. If you are setting this up on a particular WinXP user account, you may be asked for your XP user password. OK, when the task is created and appears in Scheduled Tasks, right click on it and click on Properties. 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
    try this
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  11. #11
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    Quote Originally Posted by whitestar_999 View Post
    try this

    i made the following correction


    C:\tst\TST10.exe\r:reboot.txt (where tst is the folder in C:\)

    and the notepad didnt open at all

  12. #12
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    C:\tst\TST10.exe\r:reboot.txt
    no double quotes & no space


    "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
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  13. #13
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    i tried the following

    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. #14
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by akshaymys View Post
    i tried the following

    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?

    buddy can u attach the screen shot??

  15. #15
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    Quote Originally Posted by aruncse30 View Post
    buddy can u attach the screen shot??


    here s the screen shot-----

  16. #16
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by akshaymys View Post
    here s the screen shot-----
    problem with the script only... use as it is.. wat i gave to u

  17. #17
    Guardian Angel just4kix's Avatar
    Join Date
    Dec 2007
    Posts
    11,632

    Default

    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 "$"
    Note that I have login: instead of Login:, etc. After the login I get a $ prompt, some routers get a > prompt - so that needs to be coded.

    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. ***

    All my useful articles and Guides | My DVDs | My Blu-Rays | My Blogs
    -------------------------------------------------------------------------------------------

  18. #18
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by just4kix View Post
    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 "$"
    Note that I have login: instead of Login:, etc. After the login I get a $ prompt, some routers get a > prompt - so that needs to be coded.

    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.
    im also having UT300R2U.. but still mine is accepting Login and not login

  19. #19
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    siemens modems will accept only Login not login.
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  20. #20
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    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..

  21. #21
    Guardian Angel just4kix's Avatar
    Join Date
    Dec 2007
    Posts
    11,632

    Default

    Quote Originally Posted by aruncse30 View Post
    im also having UT300R2U.. but still mine is accepting Login and not login
    Arun, As I said it depends upon the how the prompt appears. And that depends upon the firmware. What is important and must be noted is that reboot.txt script should have case sensitive prompts (the word in double quotes after the WAIT command).

    Quote Originally Posted by akshaymys View Post
    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..
    Akshay, From your screenshot, I can see that the prompt is 'Login:' and not 'login:'. Hence change your script to:

    Code:
    192.168.1.1 23
    WAIT "Login:"
    SEND "admin\m"
    WAIT "Password:"
    SEND "admin\m"
    WAIT "$"
    SEND "reboot\m"
    WAIT "$"
    Note that lines which say WAIT "$" may require to be changed also. To know the exact, do the following:

    a) Copy the exe TST10.EXE and script 'reboot.txt' to a folder such as C:\TST10
    b) Using the Start --> Run --> cmd command, open a command window
    c) Change directory to c:\TST10
    d) Enter the command:
    Code:
    TST10 /r:reboot.txt
    at the command prompt and press enter.
    e) Watch what happens and especially note down the prompts. Click on 'Abort' button if the program stops responding. Note that 'reboot' command will take longer time to finish (about 30 seconds) and watch the modem lights during time for rebooting activity.
    f) If you have to abort, make changes to the script and test again.
    g) Keep testing till you are able to completely test it out.
    *** Never argue with an idiot. ***

    All my useful articles and Guides | My DVDs | My Blu-Rays | My Blogs
    -------------------------------------------------------------------------------------------

  22. #22
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default


    now i am getting this screen

    (see attachment)



    f) If you have to abort, make changes to the script and test again

    what chages should i make for the modem to reboot?



    Sorry to ask this .............

    but actually what does Telnet script does?
    does it just reboots the modem

    what is the use if we just reboot the modem?

    who s going to start u torrent ? (should we schedule it?)

    should we just keep our monitor off when we go to sleep at say 10pm and leave the pc on?


  23. #23
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    this telnet script reboots the modem.if your modem is set in pppoe mode as soon as modem reboots it will make the connection in a few seconds.you have to use scheduler option in uTorrent.you can keep the monitor off afterall if you are asleep what is the use.
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  24. #24
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by akshaymys View Post

    now i am getting this screen

    (see attachment)



    f) If you have to abort, make changes to the script and test again

    what chages should i make for the modem to reboot?



    Sorry to ask this .............

    but actually what does Telnet script does?
    does it just reboots the modem

    what is the use if we just reboot the modem?

    who s going to start u torrent ? (should we schedule it?)

    should we just keep our monitor off when we go to sleep at say 10pm and leave the pc on?


    yes... u should keep the pc ON.... u need to schedule 4 tasks like this
    2:05 - restart modem (by script)
    2:06 - call torrent (jus schedule)
    7:55 - restart modem (by same script)
    7:56 - turn off system (this is also possible by another script)

    P:S attach files (below 90kb) as it is.. dont zip it... cheers..

  25. #25
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by just4kix View Post
    Arun, As I said it depends upon the how the prompt appears. And that depends upon the firmware. What is important and must be noted is that reboot.txt script should have case sensitive prompts (the word in double quotes after the WAIT command).



    Akshay, From your screenshot, I can see that the prompt is 'Login:' and not 'login:'. Hence change your script to:

    Code:
    192.168.1.1 23
    WAIT "Login:"
    SEND "admin\m"
    WAIT "Password:"
    SEND "admin\m"
    WAIT "$"
    SEND "reboot\m"
    WAIT "$"
    Note that lines which say WAIT "$" may require to be changed also. To know the exact, do the following:

    a) Copy the exe TST10.EXE and script 'reboot.txt' to a folder such as C:\TST10
    b) Using the Start --> Run --> cmd command, open a command window
    c) Change directory to c:\TST10
    d) Enter the command:
    Code:
    TST10 /r:reboot.txt
    at the command prompt and press enter.
    e) Watch what happens and especially note down the prompts. Click on 'Abort' button if the program stops responding. Note that 'reboot' command will take longer time to finish (about 30 seconds) and watch the modem lights during time for rebooting activity.
    f) If you have to abort, make changes to the script and test again.
    g) Keep testing till you are able to completely test it out.
    try this script.. DONT change anything in this...

  26. #26
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default Thankyou

    The following script is working

    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
    SEND "exit\m"


    Thankyou all for helping me


    the modem reboots (see attachmet)
    what to do next

    ill set the script to work at 2:10 am
    and schedule u torrent at 2:11 am

    and shutdown the system at 7:50 using PC AUTO SHUTDOWN

    what to do with the "script screen" ? shall it be as it is till the sysem shutsdown? [or should i press "Abort"]

    also to schedule utorrent - options
    - preferences
    -scheduler ?

  27. #27
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    Quote Originally Posted by akshaymys View Post
    The following script is working

    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
    SEND "exit\m"


    Thankyou all for helping me


    the modem reboots (see attachmet)
    what to do next

    ill set the script to work at 2:10 am
    and schedule u torrent at 2:11 am

    and shutdown the system at 7:50 using PC AUTO SHUTDOWN

    what to do with the "script screen" ? shall it be as it is till the sysem shutsdown? [or should i press "Abort"]

    also to schedule utorrent - options
    - preferences
    -scheduler ?
    > be careful on the below points.
    1. u should restart once again before u shut down the pc... i.e before 7:50
    2. no need to press abort.. leave as it is.. its dead...
    3. DONT schedule torrent by its scheduler... have a schedule task for it... thats the better way... disable the torrent schedulr...

    p:s -- only thanks... no treat???

  28. #28
    Junior Member
    Join Date
    Feb 2008
    Posts
    24

    Default

    how to reboot the modem once again (at 7:50 am) ? should we use same script?


  29. #29
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    yes!same script will do.just add another task in scheduler with same settings at 7:50AM.
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  30. #30
    Junior Member
    Join Date
    Feb 2008
    Posts
    1

    Question

    hey thx for the help all of u....my modem is successfully rebooting but in the end i get a wierd message like "WARNING : ppp Interface down"
    any1 got any idea y it responds this way?

  31. #31
    Silver Member
    Join Date
    Jan 2008
    Posts
    423

    Default

    if ur modem is rebooting and u can surf after executing the script. then u no need to worry about this.. its dead...

  32. #32
    Junior Member
    Join Date
    Jul 2008
    Posts
    12

    Default help me

    i m having siemens sl2_141 type IV modem and i m using this script:


    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
    SEND "exit\m"

  33. #33
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    try restart instead of reboot.
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  34. #34
    Junior Member
    Join Date
    Aug 2008
    Posts
    13

    Default reboot is an invalid command

    i tried the telnet application manually.. this is wat i got


    *********************
    Welcome to DSL MODEM
    *********************
    DSL MODEM Corporation, Software Release V55.1.04.01

    Login: admin
    Password: *****

    Login successful

    --> reboot

    Unrecognized command (use '?' to see valid completions)

    --> restart

    Unrecognized command (use '?' to see valid completions)

    -->

    since it doesnt work in this i believe makin a script is useless....
    i use nokia siemens C2110 modem

  35. #35
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    correct command is "restart system".you can know this by following the instruction(use '?' to see valid completions).
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  36. #36
    Junior Member
    Join Date
    Aug 2008
    Posts
    13

    Default

    Quote Originally Posted by aruncse30 View Post
    Here we go..
    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
    wel this script works only if "reboot" is a valid command.. but unfortunately my modem support that command. thats the problem i am facing

  37. #37
    Guardian Angel just4kix's Avatar
    Join Date
    Dec 2007
    Posts
    11,632

    Default

    As per whitestar's suggestion change the 2nd last line to:
    SEND "restart system\m"
    . Give it a try. Please report so that we either have a solution or else can all brainstorm together.
    *** Never argue with an idiot. ***

    All my useful articles and Guides | My DVDs | My Blu-Rays | My Blogs
    -------------------------------------------------------------------------------------------

  38. #38
    Junior Member
    Join Date
    Aug 2008
    Posts
    13

    Default

    nopes.... nt wrkin
    tried reboot, restart, restart system.. all 3.
    hav a "resetButton" command.. bt thats fir the reset button(as in same function)

  39. #39
    Platinum Member whitestar_999's Avatar
    Join Date
    Jan 2008
    Posts
    2,276

    Default

    use this script.tested & working fine on nokia siemens c2110.sorry about the mixup.command is not "restart system"but"system restart".haven't used the script for months so i forgot.
    192.168.1.1 23
    WAIT "Login"
    SEND "admin\m"
    WAIT "Password"
    SEND "admin\m"
    WAIT ">"
    SEND "system restart\m"
    Is God willing to prevent evil, but not able? Then he is not omnipotent.
    Is he able, but not willing? Then he is malevolent.
    Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

  40. #40
    Junior Member
    Join Date
    Aug 2008
    Posts
    13

    Default thnx man

    thnx man.. wrks fine.. thnx a lot....

Similar Threads

  1. Tikona auto login
    By JSabarish in forum Tikona WiBro
    Replies: 3
    Last Post: 14th May 2015, 12:40 PM
  2. Asianet Auto Login and Auto Logout
    By btgeorge in forum Other Cable Internet Services
    Replies: 1
    Last Post: 22nd May 2013, 08:39 PM
  3. Auto Login Script for WRT54G
    By rajaka in forum Reliance Broadband
    Replies: 5
    Last Post: 6th September 2011, 04:09 PM
  4. Asianet Auto Login and Auto Logout Freeware
    By btgeorge in forum Other DSL Broadband Services
    Replies: 0
    Last Post: 7th February 2011, 08:41 AM
  5. Auto login problem
    By akshaymys in forum BSNL broadband
    Replies: 7
    Last Post: 27th August 2008, 03:40 AM