how to overcome Reliance broadband 6 hours limit?

Status
Not open for further replies.

krates

Contributor
Well I am having reliance broadband 750rs/month 400 kbps connection but the problem with them is they switch of the internet for relogin after every 6 hours.. this interrupts my downloads!!! how to overcome this thing?
 
There is auto-login script for it

Auto Login for Reliance Broadband Unlimited users

btw, if you use linux. then its very easy. just is use curl to login and use cron to run is every 6hours.

do

Code:
crontab -e

and then, add the following

Code:
25 */5 * * * curl -d \"username=Username&password=Password\" [url]http://www.reliancebroadband.co.in/reliance/login.do?action=doLoginSubmit[/url]

username= Replace with your Username

password=Repalce with your Password

the above cron runs 25th minute every five hours.

Hope it works for you:)
 
Use below python scripts,

Replace yourusername & yourpassword with correct username & password

Save it as autologin.py and run this scripts using cronjob every hour.

This script work with new login page design.

#!/usr/bin/env python

# encoding: utf-8

"""

Reliance Login Script v1.0

Created by Kunal Dua on 2009-12-18.

Reliance Wireless broadband auto-login (and logout) script(s) Kunal Dua

This program is free software; you may redistribute it and/or

modify it under the same terms as Python itself.

"""

import urllib2, urllib, cookielib

username = 'yourusername' #replace the text within quotes with your username

password = 'yourpassword' #replace the text within quotes with your password

jar = cookielib.FileCookieJar("cookies")

opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(jar))

response = opener.open("http://10.239.89.15/reliance/startportal_isg.do")

login_data = urllib.urlencode({'userId' : username, 'password' : password, 'action' : 'doLoginSubmit'})

resp = opener.open('http://10.239.89.15/reliance/login.do', login_data)

Enjoy :)

One Question.

You have WiMax connection, because i have one & my teriff is 999/month for 400 kbps.
 
^^ The tariffs for Reliance Broadnet (wired-line) have been reduced to Rs. 750/month for 400kbps however there is no change in the tariffs for WiMax users. We still need to pay Rs. 999/month for 400 kbps. I just confirmed this from their Customer Care last night.
 
Status
Not open for further replies.