yramakrishnan, I'm guessing you have night top up over an hourly based plan. Maybe this only works with ones having data plan.
Anyways, I'm downloading almost everyday up till 12 nowadays, and further browsing *heavily* whole day. From what I've noticed, If I manage to retain same IP as I had before 8am, believe it or not, I can download how so ever I want unless my IP changes. I'll post my usage sometime tomorrow (server down right now).
I've even made a script that i've been testing to work for few days. It does whatever I've mentioned in post 13 above.
Its a linux bash scripts, assumes you're using deluge (you can use any other) as torrent client and that you don't need any password to access 192.168.1.1 (which you can set blank from
this page)
Script : (You'll need to put some values yourself before use)
Code:
#!/bin/bash# to schedule it for every 10 mins (using crontab)# */1 * * * * echo \"\" | sudo -S '/home/hkv/Misc/IP/check'# This is the path where I've put this script, change it to need.path=\"/home/hkv/Misc/IP\"# Basic workingtask() {updateTimeupdateSessiongetCurrentIPgetLoggedIPif [ $session = \"Night\" ]then startDownloads storeIP $CIPelse if [ $CIP != $LIP ] then stopDownloads fifilogIP $D $T $CIP $session}# updates time variablesupdateTime() { H=$(date +%H) M=$(date +%M) D=$(date +%D) T=$H:$M}# updates session valueupdateSession() {if [ $H -ge 20 -a $H -le 24 -o $H -ge 0 -a $H -lt 8 ]then session=\"Night\"else session=\"Day\"fi}# gets your external IPgetCurrentIP() { CIP=$(lynx -dump http://whatismyip.org)}# gets your previous IP that was stored in a file \"lastip.txt\"# if any error occurs, make this file yourself.getLoggedIP() { LIP=$(cat $path/lastip.txt)}# stores all logs to log.txt# if any error occurs, make this file yourself.logIP() { echo $1 $2, $4 session, IP = $3 >> $path/log.txt echo logged - $1 $2, $4 session, IP = $3}# stores your Night session IP to lastip.txt# if any error occurs, make this file yourself.storeIP () { echo $1 > $path/lastip.txt echo stored : IP - $1}# stops deluge, if you use any other client, change herestopDownloads() { echo Stopping Deluge echo \"\" | sudo -S pkill deluge & echo Done !!!}# starts deluge, if you use any other client, change herestartDownloads() { echo Starting Deluge DISPLAY=:0 deluge & echo Done !!!}# executes that basic operationtask
I haven't used
windows since a little while ago, but if anyone volunteers, I can help in making the same thing for batch script.
But anyhow, all this can be done manually too. You just have to check that your IP is same as it was before 8am.
Enjoy this glitch in airtel's servers as long as you can. I'm greatly regretting that I haven't been exploiting it since the beginning.
But oh well, its never too late
Edit:
My usage in last few days
http://img143.imageshack.us/img143/609/imhf1.png
Some days in above logs, when I'm charged, are the days when i wasn't able to keep my
router powered throughout the day (power cuts).
I asked CC whether they have a separate system to log my usage - other than what is displayed on their site. Doesn't make any sense though, but just to be sure.