Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
03-19-2005, 02:13 PM
|
#1
|
Member
Registered: Jun 2003
Location: London, UK
Distribution: Slackware 10 & 10.1
Posts: 149
Rep:
|
cannot access config web-page for adsl router
I wasn't sure if this is a hardware or a networking query - so apologies if wrongly sited.
I have a brand new ADDON GWAR3000 adsl wireless router that I am wanting to use, but with a problem: I cannot access the web-page configuration utility located at the router's address of 192.168.1.1
I have tried accessing it on my Linux systems, my BSD box and even the old Win98 box. The latter of course can get the software driver installed, but even that gives me a "login failed" message!!!
I can't take advantage of my broadband account until I get this damned thing configured and up and running. Any ideas?
|
|
|
03-19-2005, 03:06 PM
|
#2
|
Gentoo Developer
Registered: Feb 2004
Location: Fort Lauderdale FL.
Distribution: Gentoo
Posts: 3,291
Rep:
|
What did your isp say?
|
|
|
03-19-2005, 03:51 PM
|
#3
|
Member
Registered: Jan 2004
Distribution: Debian, Ubuntu
Posts: 118
Rep:
|
Re: cannot access config web-page for adsl router
Quote:
Originally posted by tireseas
I cannot access the web-page configuration utility located at the router's address of 192.168.1.1
|
To which subnet does the port belong to which you have connected the router?
Example: If your router is connected to eth0 and your IP number for eth0 is 10.1.3.10 and the subnet mask is 255.255.255.0, the system will most likely route only connections via eth0 which are addressed to 10.1.3.0 - 10.1.3.255. If the address of your router is not within this range, you can not access it.
The last time I had this problem I temporarily configured eth0 into the range of 192.168.1.x - but perhaps an additional entry into the routing table would have sufficed.
|
|
|
03-19-2005, 03:54 PM
|
#4
|
Member
Registered: Jun 2003
Location: London, UK
Distribution: Slackware 10 & 10.1
Posts: 149
Original Poster
Rep:
|
I didn't go with the freebie modem they offered and haven't pursued them as a source of tech support consequently.
I am wondering if this might have anything to do with my IP address needing to be on the same subnet as that of the router - although that does seem more than a bit weird really
I am at a loss. I'll try and give the modem support folk a call on Monday and see if they have any suggestions. Trouble is, I am wondering if it is my set up, because I had this same problem with a previous router, which was on 10.0.0.1 for the config page and I couldn't access it. Hence, I swapped it ... for this, which I can't get into either!! My IP addresses for the firewall and LAN is 172.31.*.* range, but I haven't connected some of the other boxes onto that yet, wanting to test it first. But, I have tried accessing the router's config page with a stand-alone (127.0.0.1), the remnants of a former LAN (10.0.*.*), a Win98 with ?? knows what - if any - IP (where does one look?), and with what will be the firewall (172.31.*.*). All this has been done (double-clicking the software icon in Win98) and entering the 192.168.1.1 in IE, Firefox, Mozilla, Konqueror, and Lynx. All cables are RJ45s, NiC indicator lights are green, router lights are green and steady, microfilters have been switched, connections checked and still ... zip
Anybody have any ideas <<getting desperate, here!!>>, I'm almost willing to try waving cloves of garlic over the darn thing if it will mean that it will work!!!
|
|
|
03-19-2005, 04:40 PM
|
#5
|
LQ Guru
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that.
Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700
Rep:
|
Lets get as basic as posiable. Run the command ' /sbin/ifdown eth0 ' as root or root access. Goto /etc/sysconfig/network-scripts. Edit to the following basic setup.
/etc/sysconfig/network-scripts/ifcfg-eth0 ( NOTE requires root access to edit )
Code:
DEVICE=eth0
BOOTPROTO=none
BROADCAST=192.168.1.255
IPADDR=192.168.1.2
NETMASK=255.255.255.0
NETWORK=192.168.1.0
ONBOOT=yes
TYPE=Ethernet
GATEWAY=192.168.1.1
Save and exit.
Now run ' /sbin/ifup eth0 ' as root. Now goto your browser and enter in address bar ' http://192.168.1.1 '
If you still cannot conect make sure you are plugged into the lan side of router not the wan side.
Make sure it is a regular cable and not a crossover cable.
Is there a factory reset button on unit. Press it as documantion says to reset to factory settings.
Hope this helps
Brian1
|
|
|
03-19-2005, 04:56 PM
|
#6
|
Member
Registered: Jun 2003
Location: London, UK
Distribution: Slackware 10 & 10.1
Posts: 149
Original Poster
Rep:
|
Brian1 - thanks mate: I owe you Worked like a charm. I'm using Slackware on the laptop (didn't want to go to the hassle of configuring my firewall all out of sync) so modified your suggestions accordingly and they worked!!! excellent!! I had done that before, but hadn't dropped the interface - so that's why it didn't work.
Cheers mate!!
|
|
|
03-19-2005, 05:13 PM
|
#7
|
LQ Guru
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that.
Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,700
Rep:
|
Glad to be of help.
Brian1
|
|
|
All times are GMT -5. The time now is 06:03 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|