Reliance Wired Broadband : How to avoid the problem of disconnection on idling, connectiong two sys

Status
Not open for further replies.

himanshuaieee

Regular
Messages
138
Location
NA
ISP
BSNL
IDLE Timeout Disconnection Problem

Hey guys I have got my Reliance Wired BroadBand installed, with Combo Plan -1099 having Specification 1 Mbps D/l Speeds and 1 Mbps Download Speed.

Now I need to login everytime I need to use internet using an ID and password on of their login page inorder to connect to internet. And once connected if you go idle i.e. not browse,
even though you are d/ling and u/ling in the background on clients like uTorrent or IDM, the connection gets terminated making the net unavailable and hence the d/l and u/l gets blocked.

This is really problematic for me, because I use a lot of private trackers and henceforth d/led and upload/seed back 24/7, however I cant be present there all the time to browse or something
frequently; the idling happens in almost 2 to 3 hours of idling which is a real big problem, please help guys.

================================================================
Connecting Two System to INNOMEDIA ADSL Modem having two LAN Ports at back of it:-


Also guys with Reliance Wired connection, I got this ADSL modem made by some INNOMEDAI company, and though it has two LAN Ports on back of it;
even though I am logged in to Login Page through one system connected via LAN1; I can`t connect to Internet via another system connected to modem via Lan2 port.

I am asking this because I am sharing my connection with another friend (one only so total users becomes two) of mine, and I was wondering since the modem already have two
lan ports why waste money to buy a Switch./

Guys please help me out with above two problems please.

My Connection Stats:-

https://www.speedtest.nethttp://www.pingtest.net

PS: Well guys I used, Amac Software Version 5.4 (cracked it as afcource its paid)
It worked as a charmer, now I connect both my system simultaniously to internet. w00t w00t :D

Now comes the idle timeout issue, any idea how to resolve that please./
 
If you are using Windows 7...Wait in front of your PC in the idle internet session. A pop up will occur asking to disconnect or stay connect. It will automatically disconnected by default in 30 seconds. Check the "Never Disconnect.." option. You will never be disconnected.
 
If you are using Windows 7...
Wait in front of your PC in the idle internet session. A pop up will occur asking to disconnect or stay connect. It will automatically disconnected by default in 30 seconds. Check the "Never Disconnect.." option. You will never be disconnected.

Well I am using Windows 7, the popup you talk about comes in the browser window? (I guess you are on Reliance Wired Broadband as well, so hope this trick worked out for you as well)
 
No I am using BSNL 3G. I have been facing the problem too but the trick worked for me (it must work).The pop up comes in a dialogue box like system dialogue.
 
Guys, I think its not just about idle timeout. Its m ore about Loging in in certain intervals.

Well I have been recommended this awesome Python based script:- Link
I will try it and post back the result ;)


==============================================================================


Well well guys the Python Login Script work as a charmer:-

Code:
#!/usr/bin/env python# encoding: utf-8"""Reliance Login Script v1.0 Created by Kunal Dua on 2009-12-18.http://www.kunaldua.com/blog/?p=330 This program is free software; you may redistribute it and/ormodify it under the same terms as Python itself.""" import urllib2, urllib, cookielib username = 'Your_User_Name' #replace the text within quotes with your usernamepassword = 'Password'    #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)
I saved that with *.py extension, installed Python 2.7 and I run it using scheduler every 1 Hour and I am awesome.
I guess there is always a work around, and it was not just about TimeOut, you need to Login in certain interval for sure which I am doing it now.

Well I will test the script in long run, check whether my download gets stopped or not and report back..../
 
Sorry for bumping the thread, but it was important!!!!!!Well well the script is working flawlessly for me now.I have been running the script at every 1 Hr using the scheduler and I have never got logged off, and my downloads haven`t stopped as well!!So the script have succesfully worked out for me ;)
 
Status
Not open for further replies.
Back