x
Please log in with password to access chatbox.
Index | Back | Reply | New Topic
IP Change Automation
IP change for livebox INVENTEL | |
2009-08-09 17:05 | arno046 | Hello
Please can you help me to do a script ? I have a livebox inventel and i change my IP with this : http://admin:admin@192.168.1.1/adslok.cgi?enblInternet=1 |
2009-08-09 22:04 | utopia.lv | Use wget program to open the URL:
wget http://admin:admin@192.168.1.1/adslok.cgi?enblInternet=1 Save this string in a batch file (.bat) and in Supermode extension options enter the path the batch file. Probably you will need to add the disconnect string first: wget http://admin:admin@192.168.1.1/adslok.cgi?enblInternet=0 I think you can get wget program here: http://www.christopherlewis.com/WGet/WGetFiles.htm. I haven't tried wget by myself so I am not sure if wget download address is correct. |
2009-08-10 08:38 | arno046 | with my computer i can't use .bat files :( |
2009-08-10 15:33 | utopia.lv | You can use Autohotkey automation program to access the IP change URL. Autohotkey scripts can be compiled to the exe files.
Download and install Autohotkey software, put the string bellow in the .ahk file and compile that file to .exe file. UrlDownloadToFile, http://admin:admin@192.168.1.1/adslok.cgi?enblInternet=1 , C:\tempfile.txt |