LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 10-12-2008, 11:47 AM   #1
naclay
LQ Newbie
 
Registered: Oct 2008
Location: Essex, UK
Distribution: Fedora 9
Posts: 5

Rep: Reputation: 0
Unable to set up wireless via my usb device


I haven't the faintest clue how to set up wireless networking on my Fedora 9 system. I have tried using the Network Configuration window but to no avail so I have resorted to doing it the proper way in the terminal.
I have a usb device supplied with my router which I am assured by the instruction manual that it is compatible with linux systems, however it does not tell you, at all, how to set it up.

When I use lsusb I get a response of
Bus001 Device 005: ID 0846:6a00 NetGear, Inc. WG111 WiFi (v2)

I have a disk of drivers but its not very helpful because it doesn't have any instructions on how to install the correct driver.

can anyone help?
 
Old 10-12-2008, 12:14 PM   #2
john test
Member
 
Registered: Jul 2008
Distribution: ubuntu 9.10
Posts: 527
Blog Entries: 1

Rep: Reputation: 35
did you try "iwlist" and "iwconfig" at the command line?
 
Old 10-14-2008, 08:32 AM   #3
naclay
LQ Newbie
 
Registered: Oct 2008
Location: Essex, UK
Distribution: Fedora 9
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by john test View Post
did you try "iwlist" and "iwconfig" at the command line?
# iwlist
Usage: iwlist [interface] scanning [essid NNN] [last]
[interface] frequency
[interface] channel
[interface] bitrate
[interface] rate
[interface] encryption
[interface] keys
[interface] power
[interface] txpower
[interface] retry
[interface] ap
[interface] accesspoints
[interface] peers
[interface] event
[interface] auth
[interface] wpakeys
[interface] genie
[interface] modulation

# iwconfig
lo no wireless extensions.

wmaster0 no wireless extensions.

wlan0 IEEE 802.11 ESSID:"kevin"
Mode:Managed Frequency:2.437 GHz Access Point:08:10:74:1A:E2:06
Tx-Power=0 dBm
Retry min limit:7 RTS thrff Fragment thr=2353 B
Encryption key:****-****-**
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0

eth0 no wireless extensions.

pan0 no wireless extensions.


The ESSID is wrong, it should be "NETGEAR". "kevin" is the neighbours internet access. The encryption key is however correct for my internet access, I just havent included it because I feel its one of those things you shouldnt publish online.
 
Old 10-14-2008, 09:19 AM   #4
Larry Webb
LQ Veteran
 
Registered: Jul 2006
Location: Crystal Beach, Texas
Distribution: Suse for mail +
Posts: 5,100
Blog Entries: 7

Rep: Reputation: 229Reputation: 229Reputation: 229
Check out this article and see if it will help

http://www.linuxquestions.org/questi...in-fc4-396300/

Post back if you have any questions or let us know if it works.
 
Old 10-14-2008, 09:27 AM   #5
john test
Member
 
Registered: Jul 2008
Distribution: ubuntu 9.10
Posts: 527
Blog Entries: 1

Rep: Reputation: 35
Looks like you have wifi properly configured on your linux box. Just seems to not be able to find your WAP or wireless router.
Wireless fouters operate on 2.4 gigahz and so do cordless phones. Sometimes they interfere with one another.
For starters I would make sure that all 2.4 gig devices have some distance between them and your wireless router or access point
Then I would move the Linux box close to the router to see if you can get the linux box to talk to your router instead of your neighbors.

That failing I would reset the router to facotory defaults to get a basic wireless connection and then add encryption after the connection is established.

Intervening sheet rock walls should present no problem but Lath and Plaster walls with wire mesh do tend to block signal.
 
Old 10-15-2008, 06:02 AM   #6
naclay
LQ Newbie
 
Registered: Oct 2008
Location: Essex, UK
Distribution: Fedora 9
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Larry Webb View Post
Check out this article and see if it will help

http://www.linuxquestions.org/questi...in-fc4-396300/

Post back if you have any questions or let us know if it works.
I get as far as "iwlist wlan0 scan" and I get a responce from my router. I set the key as it says with "iwconfig wlan0 key restricted xxxxxxx" However running "dhclient wlan0" just fails.
I feel like the answer is right there but I cant find the right way to connect to my Netgear router.

With the scan I get the neighbours "kevin" network sometimes, and my network all the time. I get a mac address, essid, mode, freq, channel, quality 57/64, signal level 30/65, encryption on, bit rates 1, 2, 5.5, 11, 6, 12, 24, 36, 9, 18, 48, 54 Mb/s, and Extra:tsf=0000034d409f304d which im not sure what that is.

It was very useful that link though, thankyou but I need a little help finishing it off
 
Old 10-15-2008, 04:24 PM   #7
john test
Member
 
Registered: Jul 2008
Distribution: ubuntu 9.10
Posts: 527
Blog Entries: 1

Rep: Reputation: 35
You could start by disabling encruption on your router to see is you can get a connection.
Once you get a connection then it falls back on Encryption configuration.
WPA on Router and WPA on the PC
short passphrase on each to get an encrypted connection and then ramp up from there
 
Old 10-15-2008, 06:42 PM   #8
Ryanjon7
Member
 
Registered: Apr 2006
Location: North Vancouver, B.C., Canada
Distribution: Fedora 14
Posts: 38

Rep: Reputation: 15
You can manually try. Is it using WPA or WEP? Try this;

ex.

ifconfig eth0 down

ifconfig eth0 up

killall dhclient

iwconfig eth0 essid "name of essid"

iwconfig eth0 mode auto

iwconfig eth0 rate auto

iwconfig eth0 key type_passkey_here

dhclient eth0


I've had problems in the past connecting to WPA encrypted passwords . . .
 
Old 10-15-2008, 06:46 PM   #9
Ryanjon7
Member
 
Registered: Apr 2006
Location: North Vancouver, B.C., Canada
Distribution: Fedora 14
Posts: 38

Rep: Reputation: 15
. . . change all instances of eth0 to wlan0 . . .
 
Old 10-16-2008, 02:21 PM   #10
john test
Member
 
Registered: Jul 2008
Distribution: ubuntu 9.10
Posts: 527
Blog Entries: 1

Rep: Reputation: 35
Gotta love that! An on target response with no hint of the words "Google" or the ever anathematic rtfm :-)
Thank you! Went straight to my Keepers file.
Hope it works out for the OP!
 
Old 11-25-2008, 08:06 AM   #11
naclay
LQ Newbie
 
Registered: Oct 2008
Location: Essex, UK
Distribution: Fedora 9
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Ryanjon7 View Post
You can manually try. Is it using WPA or WEP? Try this;

ex.

ifconfig eth0 down

ifconfig eth0 up

killall dhclient

iwconfig eth0 essid "name of essid"

iwconfig eth0 mode auto

iwconfig eth0 rate auto

iwconfig eth0 key type_passkey_here

dhclient eth0


I've had problems in the past connecting to WPA encrypted passwords . . .

Sorry for the long wait on an update but I have been wrestling with my degree. back on to the problem now.

It is a WEP 128bit encryption, I have tried turning the wep key off like suggested too, but that didnt work either.

I encounterd an error when I typed
# iwconfig wlan0 mode auto
Error for wireless request "Set Mode" (8B06) :
SET failed on device wlan0 ; Invalid argument.


Also since then I have discovered that wlan0 works perfectly as it will connect to the neighbours 'kevin' network every so often when it is in range at low connectivity. Also on my network manager I can see my NETGEAR network but it refuses to connect for unknown reasons.
 
  


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
Unable to set up wireless via my usb device naclay Linux - Newbie 1 10-12-2008 12:52 PM
HELP - unable to set up wireless connection boyd98 Fedora 1 03-03-2006 07:16 AM
"unable to set up wireless lan usb adapter" pathak Linux - Hardware 1 04-27-2005 01:01 AM
"Unable to open USB device "usb://hp/LaserJet%201000": No such device" lordshipmayhem Mandriva 2 08-08-2004 04:56 PM
HP Deskjet (USB) & CUPS & Slackware 9.1: Unable to open USB device "usb:/dev/usb/lp0&qu arnostienen Slackware 2 01-29-2004 03:22 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:11 PM.

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