| Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux. |
| 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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
02-27-2006, 02:18 PM
|
#1
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Rep:
|
cant access network unless DSL modem is reset in Linspire 4.5
I have a wireless network and when I turn on my XP laptop it automatically connects to my network with no problem. When I boot up my Linspire laptop no connection unless I unplug my DSL modem and plug it back in and then with in a few seconds I am on the internet. Anyone have any thoughts on why this might be?
|
|
|
|
03-05-2006, 09:26 AM
|
#2
|
|
LQ Veteran
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,756
|
Could you provide a bit more detail on how your laptop is connected to your DSL modem? Based on what you've written here I'm not sure we could take a decent guess.
|
|
|
|
03-05-2006, 10:56 AM
|
#3
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
I have a dsl modem and router with a wireless access point. I have two laptops setup with wireless cards. One is an XP and one is Linspire 4.5. The XP connects to the wireless network with no problem. The Linspire will only connect to the internet if you unplug and plug back in the dsl modem. No matter what you do the Linspire laptop shows perfect network signal strength, recognizes my network, but will not connect to the internet unless you unplug and replug in the DSL Modem.
|
|
|
|
03-05-2006, 12:46 PM
|
#4
|
|
LQ Veteran
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,756
|
That is seriously strange, and I suspect that messing with the DSL modem is causing something on the router/AP to reset and THAT is what is allowing you to connect. OK, here is a test to try. Fire up the Linspire box but DON'T reset the DSL modem. Open up a console and have a look at the outputs of ifconfig, iwconfig, route -n and the contents of your /etc/resolv.conf file. Now do the unplug/replug with the DSL modem and then do the same with the console commands. With any luck we should be able to spot what is changing on your Linspire box and find a more elegant solution than rebooting your DSL modem.
By the way, if you don't know about redirection, now is the time to learn. It is easy to save the outputs of the console commands by using >. So the command
ifconfig > ifconfig.txt
Will save the output of the ifconfig command in the file ifconfig.txt.
|
|
|
|
03-06-2006, 12:08 PM
|
#5
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
I am not sure I totally understand your instructions. I am new to the lInux console. I will see what I can do.
|
|
|
|
03-06-2006, 04:42 PM
|
#6
|
|
LQ Veteran
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,756
|
If you run into trouble, post back and I'll try to give you more exact instructions.
|
|
|
|
03-08-2006, 09:49 AM
|
#7
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
I am sorry, but I would really like some more detail if its not too much trouble.
Thank You,
Stewill
|
|
|
|
03-08-2006, 11:44 AM
|
#8
|
|
LQ Veteran
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,756
|
OK, boot up your computer but don't mess with the DSL modem just yet. Then open up a console and become root by using su - (don't forget the -). Once you're root, run the following commands:
ifconfig >ifconfig1.txt
iwconfig >iwconfig1.txt
route -n > route1.txt
cp /etc/resolv.conf resolv1.conf
That will create text files with the outputs of those commands and will tell us the state of your wireless conncetion when it doesn't work.
Now go ahead and reboot your DSL modem and get the wireless card to work. Then (again as root) use the same commands as above, only save the output to different files. That will give us the state of your card and network after it works. If you compare the before and after files, hopefully something will jump out. If you need another set of eyes, post the outputs here and we'll take a look.
|
|
|
|
03-08-2006, 03:11 PM
|
#9
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
Ok Thank you very much, I will try to give it a shot tonight. Again Thank you for your help.
|
|
|
|
03-08-2006, 06:49 PM
|
#10
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
tewill:~# ifconfig >ifconfig1.txt
Stewill:~# iwconfig >iwconfig1.txt
lo no wireless extensions.
eth0 no wireless extensions.
Stewill:~# route -n > route1.txt
Stewill:~# cp /etc/resolv.conf resolv1.conf
Stewill:~#
ewill:~# ifconfig >ifconfig1.txt
Stewill:~# iwconfig >iwconfig1.txt
lo no wireless extensions.
eth0 no wireless extensions.
Stewill:~# route -n > route1.txt
Stewill:~# cp /etc/resolv.conf resolv1.conf
Stewill:~#
As you can see they are both the same. Where do I go from here?
|
|
|
|
03-08-2006, 08:22 PM
|
#11
|
|
LQ Veteran
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,756
|
You and I are definitely not on the same wavelength here. What I'm trying to get to happen here is for you to be able to show the state of your computer when the wireless card is not working, and then to show it again when the card is working. The reason I suggested using the redirection (the >) is that it would allow you to save the output of console commands into a file. However, by running exactly the same command twice, you overwrite the old information.
So the first time you run iwconfig > iwconfig1.txt, the stuff that is normally displayed on the screen is instead saved in the text file called iwconfig1.txt. If you open that file in a text editor, you'll see the contents. Now what you've said is that when you reboot your DSL modem, your wireless card will then work. If you then run iwconfig >iwconfig2.txt, you can compare the output when the card is not working to when the card is working.
The reason I'm suggesting you do this is that there are quite a number of things that could be going wrong here, and I need some clues to point you in a direction.
|
|
|
|
03-09-2006, 09:13 AM
|
#12
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
OK, I think I see what you mean. I will try again tonight. Thanks for the patience.
stewill
|
|
|
|
03-10-2006, 12:05 PM
|
#13
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
I did what you suggested and both times it comes back no wireless interface found.
|
|
|
|
03-10-2006, 04:25 PM
|
#14
|
|
LQ Veteran
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,756
|
Now I'm really confused. When you reboot your DSL router, do you get a wireless connection or not? I was assuming that this always worked.
|
|
|
|
03-11-2006, 06:21 AM
|
#15
|
|
LQ Newbie
Registered: Jan 2005
Posts: 13
Original Poster
Rep:
|
Yes, I was on the internet after I reset the modem and when i typed in the commands you gave me whether i was on the internet or not, it still came back no wireless found. I thought that was kind of weird.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 08:36 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
|
|