LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 04-28-2004, 06:04 PM   #1
dalerobertson
LQ Newbie
 
Registered: Apr 2004
Posts: 9

Rep: Reputation: 0
Can't get Mozilla to connect to internet


Ok, I am very new to Linux and have installed Redhat Linux WS v3(I'm not even sure how to tell the version) on a Dell Latitude CSXH.

I installed a NetGear MA401 wireless ethernet card and had everything working until I screwed around with the display setting. Not knowing how to recover, I reinstalled Linux.

Now I can't get it to connect to the internet. It see's my XP machines through my router, but the RedHat Network connection nor Mozilla will connect to the internet. Each attempt at any website comes back with it could not be found. The connection ICON states that it's online. It's set to use a direct network connection.

Thanks for any help.

Dale
 
Old 04-28-2004, 06:19 PM   #2
marghorp
Senior Member
 
Registered: Jan 2004
Location: Slovenia
Distribution: Slackware 10.1, SLAX to the MAX :)
Posts: 1,040

Rep: Reputation: 45
try netstat
 
Old 04-28-2004, 06:36 PM   #3
dalerobertson
LQ Newbie
 
Registered: Apr 2004
Posts: 9

Original Poster
Rep: Reputation: 0
Ok, now what?

I tried that command and it came back with quite a bit of info that I'm not sure how to interpret.

Does the IRQ of the Adapter card need to be the same as the PCMCIA services driver?

Also, during boot, the Orinoco services returns an error stating that the ETH0 device does not seem to be present, but the card shows a wireless connection to the AP.

Thanks,

Dale
 
Old 04-28-2004, 06:39 PM   #4
marghorp
Senior Member
 
Registered: Jan 2004
Location: Slovenia
Distribution: Slackware 10.1, SLAX to the MAX :)
Posts: 1,040

Rep: Reputation: 45
are you using KDE?

Try setting the network card under System settings --> Network
 
Old 04-28-2004, 06:51 PM   #5
dalerobertson
LQ Newbie
 
Registered: Apr 2004
Posts: 9

Original Poster
Rep: Reputation: 0
More

Not sure what KDE is... LOL. I have gone and configured the adapter through system settings --> network and everything looks ok.

One thing I have set is to bind to the MAC address of the NIC.

It's set for DHCP, nickname eth0

I just can't figure out why it connects to other systems on the network, but won't go past the router to the outside world. All security is disabled.

Dale
 
Old 04-28-2004, 06:57 PM   #6
marghorp
Senior Member
 
Registered: Jan 2004
Location: Slovenia
Distribution: Slackware 10.1, SLAX to the MAX :)
Posts: 1,040

Rep: Reputation: 45
The puzzle is over my knowledge. I had the same problem with one machine once. No matter what I did it wouldn't connect to the internet, but it connected to other machines. I ended doing a reinstall and to see at installation of RH9, it actually says configure your network card now or you might experience problems with it later. I did that and it worked fine and still works fine. I am not saying that you should reinstall, but if all else fails and no guru helps you....

Come on gurus, HELP (I am not shouting)
 
Old 05-01-2004, 03:32 PM   #7
Paul Weaver
LQ Newbie
 
Registered: Aug 2001
Location: London :(
Distribution: debian && suse
Posts: 3

Rep: Reputation: 0
Alright, I assume you aren't too scared of the command line. There is a generic fault-finding process for troubleshooting internet connections.

You have your network running fine if you can see your other computers, so thats not a problem. You'll need to know the IP of your router (mine, for example, is 10.0.0.2, yours may be 192.168.0.1)

Try these

1) Ping your router
Method: In an open terminal (xterm, rxvt, konsole), type "ping 192.168.0.1" (replace with your router's IP address

IF FAILED: Strange, if you can see your windows machines and not your router it's probably a problem with your router's configuration.

2) Ping the external IP of your router (on a windows machine type "tracert www.google.com", a list of IP addresses will come up, the first should be the IP of your router. Should look similar to this:

Quote:
traceroute to www.google.com (216.239.59.104), 30 hops max, 40 byte packets
1 10.0.0.2 15.497 ms 16.952 ms 18.552 ms
2 host-212-158-192-228.bulldogdsl.com (212.158.192.228) 20.223 ms 20.357 ms 21.080 ms
3 host-83-146-17-33.bulldogdsl.com (83.146.17.33) 25.371 ms 27.314 ms 16.236 ms
...
My external address in this case is 212.158.192.228

IF FAILED:
routing problem. Run "route" adnd put the output on this forum. You may neet to be logged is an root to do this. It should say something like this
Quote:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.0.0.0 * 255.0.0.0 U 0 0 0 wlan0
default 10.0.0.2 0.0.0.0 UG 0 0 0 wlan0
If you don't have the "default" line, then you've got a routing problem. The simple way is "route add default gw 10.0.0.2" (replace 10.0.0.2 with your router IP address, but that's not permament.

3) On your linux macine, ping 144.173.6.8 (a machine at Exeter University, UK), which checks your external connectivity

IF FAILED: run "traceroute 144.173.6.8", and see which the last IP address if gets too. This might also be a routing problem

If those work

4) Try "ping www.google.com", this should resolve an IP address, basically look up the name in the internet phonebook. It should come up with
Quote:
PING www.google.akadns.net (66.102.9.104) 56(84) bytes of data.
If that fails, but the previous steps dont, you've got a problem with name resolution - your DNS server. Put the output of "cat /etc/resolv.conf" here.

Not sure how Redhat sets up network cards though
 
Old 05-01-2004, 08:07 PM   #8
dalerobertson
LQ Newbie
 
Registered: Apr 2004
Posts: 9

Original Poster
Rep: Reputation: 0
More.....

Try these

1) Ping your router
Method: In an open terminal (xterm, rxvt, konsole), type "ping 192.168.0.1" (replace with your router's IP address

IF FAILED: Strange, if you can see your windows machines and not your router it's probably a problem with your router's configuration.

>>Worked fine

2) Ping the external IP of your router (on a windows machine type "tracert www.google.com", a list of IP addresses will come up, the first should be the IP of your router. Should look similar to this:

>>command not recoginized on Linux. XP maching provide the full trace.



quote:
--------------------------------------------------------------------------------

traceroute to www.google.com (216.239.59.104), 30 hops max, 40 byte packets
1 10.0.0.2 15.497 ms 16.952 ms 18.552 ms
2 host-212-158-192-228.bulldogdsl.com (212.158.192.228) 20.223 ms 20.357 ms 21.080 ms
3 host-83-146-17-33.bulldogdsl.com (83.146.17.33) 25.371 ms 27.314 ms 16.236 ms
...

--------------------------------------------------------------------------------



My external address in this case is 212.158.192.228

IF FAILED:
routing problem. Run "route" adnd put the output on this forum. You may neet to be logged is an root to do this. It should say something like this

quote:
--------------------------------------------------------------------------------

Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
10.0.0.0 * 255.0.0.0 U 0 0 0 wlan0
default 10.0.0.2 0.0.0.0 UG 0 0 0 wlan0

--------------------------------------------------------------------------------



If you don't have the "default" line, then you've got a routing problem. The simple way is "route add default gw 10.0.0.2" (replace 10.0.0.2 with your router IP address, but that's not permament.

3) On your linux macine, ping 144.173.6.8 (a machine at Exeter University, UK), which checks your external connectivity

>> This worked just fine.

IF FAILED: run "traceroute 144.173.6.8", and see which the last IP address if gets too. This might also be a routing problem

If those work

4) Try "ping www.google.com", this should resolve an IP address, basically look up the name in the internet phonebook. It should come up with

quote:
--------------------------------------------------------------------------------

PING www.google.akadns.net (66.102.9.104) 56(84) bytes of data.

--------------------------------------------------------------------------------



If that fails, but the previous steps dont, you've got a problem with name resolution - your DNS server. Put the output of "cat /etc/resolv.conf" here.

>> I couldn't find any such file. However I think you have helped narrow done were the issue is. Thanks.

Not sure how Redhat sets up network cards though
 
Old 05-01-2004, 10:45 PM   #9
dalerobertson
LQ Newbie
 
Registered: Apr 2004
Posts: 9

Original Poster
Rep: Reputation: 0
I have determined that I can get to any website by typing the IP address.

So now the question is:

Where's the name resolver?

--Dale
 
Old 05-02-2004, 07:42 AM   #10
Paul Weaver
LQ Newbie
 
Registered: Aug 2001
Location: London :(
Distribution: debian && suse
Posts: 3

Rep: Reputation: 0
/etc/resolv.conf

Mine looks like
Quote:
nameserver 10.0.0.3
search isorox.co.uk
When I was at Exeter uni it was

Quote:
nameserver 144.173.6.6
search ex.ac.uk
Again, I don't know the redhat GUI way of doing it. Your DHCP server should set it, but obviously it's not.
 
Old 05-02-2004, 07:45 AM   #11
dalerobertson
LQ Newbie
 
Registered: Apr 2004
Posts: 9

Original Poster
Rep: Reputation: 0
it's fixed!!!

I poked around on the RH website and found out that in my ifcfg script that if dhcp is used, then PEERDNS must be enabled to allow modification to the file that resolves names. Of course, mine was set to NO.

Thanks,

Dale
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Mozilla does not connect to internet sites Walman Linux - Software 1 11-18-2005 03:04 PM
I connect to internet with kppp, but mozilla can't drzile Linux - Networking 6 08-16-2004 05:45 AM
Why cant I connect my mozilla through Internet prerakaksh Linux - Networking 3 05-11-2004 02:25 AM
can't connect to the internet:linux dont read my internet address droplsh Linux - General 1 02-29-2004 07:32 PM
Can connect broadband but can't connect Internet satimis Linux - Networking 4 01-31-2004 07:58 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 04:13 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration