Reliance Wired Broadband : How to avoid the problem of disconnection on idling

Status
Not open for further replies.

himanshuaieee

Contributor
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:-

 
1.I am not facing any idling issues so can't comment.

2.Change the mac address of second computer to the address of first one.Then you should be able to use internet on both the pc.
 
  • Like
Reactions: 1 person
Lazzy Boy said:
1.I am not facing any idling issues so can't comment.

2.Change the mac address of second computer to the address of first one.Then you should be able to use internet on both the pc.

Are you using Reliance wired Broadband connection as well;

And are you talking about changing the MAC of another system using some software/ registry tweaks, because as far as I know the MAC Adress is hardcoded in LAN Cards, isnt it?

If yes can suggest a nice software for that, or in case registry tweak can you post in the elaborate method. I am Windows 7 on comp connected to LAN1 and Windows Vista on another

comp(Laptop actually) connected via LAN 2.

One more thing have you tried out this method of MAC Address changing succesfully for yourself as well??
 
One of the threads I had started(router related) has a python script you can run through the task scheduler. Use it.
I can't tell you which thread it is as I'm on TE through my phone ATM
 
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

Thankyou Lazzy Boy for the suggestion. And to help out people understand why this happens check this Link

Actually what happens is, when you Login to Reliance via the Login Page; with your System`s LAN Port directly connected through Lan Cable to modem,

your LAN Port`s MAC Address becomes a part of authentication process;

so you have to use that particular MAC Address only to login and connect. I will qoute one statement from above link:-

I concluded that the authentication mechanism involved the verification of the PC’s MAC address. Since i had initially connected the CAT5 cable directly to my PC, the PC’s MAC address got registered.

Now comes the idle timeout issue, any idea how to resolve that please, i.e. how to spoof my ISP that I am still browsing,

I guess many Tata Broadband user and Tikona User tends to suffer the same problem.
 
Ping the server with a -t operator, and you should be fine. IIRC my Tata BB connection did the same thing if you had zero activity for a period (as does my current connection). On both, a torrent download counts as activity so your problem is a little unusual. If you are having problems it may be because you are no constantly seeding. So if no peer connects to your machine for (say) half an hour the server counts you as idle.

You can create a batch command to run the ping, and activate it every time you want to keep the connection going with you physically not there.

I would trash the pirate talk. Stealing is one thing, boasting about it is another.
 
even if no peer is connected, the clients keep sending the announcing data to trackers. cranky is right, you should go for that ping batch file.
 
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.

[url]http://www.kunaldua.com/blog/?p=330[/url]
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 = 'Your_User_Name' #replace the text within quotes with your username

password = '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..../

--- Updated Post - Automerged ---

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.