LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking
User Name
Password
Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux.

Notices


Reply
  Search this Thread
Old 10-08-2005, 07:54 PM   #1
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Rep: Reputation: 30
My network interfaces disappeared


I was trying to access my roommates wireless router after he added a WEP key. After toying around for awhile, all of my network interfaces (expect loopback) disapeared from my network applet. How do I go about getting this back?
 
Old 10-08-2005, 11:34 PM   #2
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
I would also like to know how I can see what hardware my machine has, like the device manager in windows. Thx.
 
Old 10-09-2005, 05:04 PM   #3
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
Ok, I can see my network interfaces again. Just used the "neat" command. I can connect to with wireless when WEP is disabled, by with WEP enabled. Any suggestions? Thx.
 
Old 10-10-2005, 01:13 PM   #4
sn9ke_eyes
Member
 
Registered: Feb 2003
Location: Texas
Distribution: slackware 11
Posts: 90

Rep: Reputation: 15
what distribution are you using ?

are you giving it his wep key ? i.e. iwconfig eth1 essid whatever key hexkeyvalue ?
 
Old 10-10-2005, 08:31 PM   #5
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
Sorry I didn't mention my distro before. I'm using fedora core 4. I'm gussing that your refering to a configuration file. Where can I find it?
 
Old 10-11-2005, 01:26 PM   #6
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
OK, I now understand that iwconfig is a command. I played around with it and entered the key. When I type "iwconfig" I get a massage that says: Warning: Driver for device eth1 has been complied with version 18 of Wireless Extension, while this program supports up to version 17. Some things may be broken... I also notice: Rx invalid crypt: 181. Any ideas?
 
Old 10-12-2005, 11:43 AM   #7
sn9ke_eyes
Member
 
Registered: Feb 2003
Location: Texas
Distribution: slackware 11
Posts: 90

Rep: Reputation: 15
ok as far as the iwconfig message, it appears the driver for your wireless card was compiled against version 18 of wireless extensions (WE), but the wireless tools (WT) version is older. iwconfig is part of the wireless tools package. see this link:

http://www.hpl.hp.com/personal/Jean_...nux/Tools.html

You could try updating your wireless tools version, but I don't know that it's necessary.

It's appearant that you aren't using iwconfig manually to connnect your card, so what are you using ? kwifimanager ?

also what card and driver are you using ?
 
Old 10-12-2005, 01:17 PM   #8
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
I was using neat to configure my interfaces. I'm using an Intersil Corporation Prism 2.5 Wavelan chipset. I don't know what driver version I have. How can I find out?
 
Old 10-12-2005, 10:26 PM   #9
sn9ke_eyes
Member
 
Registered: Feb 2003
Location: Texas
Distribution: slackware 11
Posts: 90

Rep: Reputation: 15
Quote:
Originally posted by blackdragonblood
I was using neat to configure my interfaces. I'm using an Intersil Corporation Prism 2.5 Wavelan chipset. I don't know what driver version I have. How can I find out?
Well I don't have any experience with neat or your wireless card. looks like there are several different drivers to support it. maybe someone else can help out.

if you want to try the command line without neat, you could try something like this:

iwconfig

That will show you your adaptors, like eth0, eth1, wlan0, lo. so if wlan0 is your adaptor, then you can list the available networks.

iwlist wlan0 scan

that should tell you the essid of your roomate's network. then connect to it

iwconfig wlan0 essid his_essid key wep_key_in_hex

or if you don't have the hex, this should work:

iwconfig wlan0 essid his_essid key s:his_wep_key

then if you need to get an ip from his ap, use something like:

dhcpcd -d wlan0
 
Old 10-12-2005, 10:51 PM   #10
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
I try to scan and I get a message saying that eth1 is down. I tried ifup and it still doesn't work.
 
Old 11-04-2005, 12:34 AM   #11
howodd
LQ Newbie
 
Registered: Nov 2005
Location: Michigan
Distribution: FC4
Posts: 10

Rep: Reputation: 0
I also run FC4, and by default, the kernel is compiled without WEP support. AFAIK, you will need to recompile the kernel with WEP.

Charles
 
Old 11-04-2005, 07:13 AM   #12
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
Sweet! I get to learn something new. Thx 4 everyone's help.
 
Old 11-05-2005, 07:16 PM   #13
howodd
LQ Newbie
 
Registered: Nov 2005
Location: Michigan
Distribution: FC4
Posts: 10

Rep: Reputation: 0
I would suggest downloading a kernel to work with if this is going to be the first time you try it. I had to learn the hard way not to make the first attempt at a recompile from the one you are working with. There's lots of good how-to's on the internet. Good Luck.
 
Old 11-05-2005, 08:58 PM   #14
blackdragonblood
Member
 
Registered: May 2005
Location: Minneapolis, MN
Distribution: Debian
Posts: 217

Original Poster
Rep: Reputation: 30
Thx for the tip.
 
  


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
/etc/network/interfaces angel115 Linux - Networking 1 10-23-2005 04:29 AM
Two Interfaces on the same Network cspcom Linux - Newbie 6 06-18-2005 04:32 PM
Network Interfaces aussben Linux - Wireless Networking 3 12-18-2004 02:35 AM
need help with /etc/network/interfaces littlemidget Linux - Networking 1 08-04-2004 07:00 PM
Network card disappeared IgD Linux - Networking 2 01-04-2004 08:09 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking

All times are GMT -5. The time now is 02:59 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