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-17-2004, 09:23 PM   #1
meping
Member
 
Registered: Sep 2004
Posts: 73

Rep: Reputation: 15
Fedora Core 2, WPC11 V4, almost there


Tried getting the nightmare Linksys WPC11 Version 4 working in Red Hat...no go. So buddy suggested try Fedora Core 2, found a page summed up some of the forums I had read before regarding this card, w/ simple straight-through instructions. Using NDISWRAPPER, now the card is listed in GUI Network config, it's got the proper ESSID & WEP KEY, the card works in Win XP, but when I try to activate it in Fedora Core 2, I get told it can't be reached.

I've got a Acer Travelmate 292EXC laptop w/
Fedora Core 2 kernel v# 2.6.5-1.358

I wanted to post the link where I got it but apparently I haven't posted enough yet, so if you can help please PM or email me & I'll send the source link

PLEASE HELP, SO CLOSE YET SO FAR
 
Old 10-18-2004, 06:16 AM   #2
darkleaf
Senior Member
 
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170

Rep: Reputation: 45
What do you mean by activating it doesn't work? Cause the if you can load the card's essid and wep key the ndiswrapper module i sin your kernel and it should work unless you're still missing stuff.

Do you have:
-dhcp enabled and does it connect and set the things properly?

or:
-an ip address? -> check with "ifconfig wlan0"
-a nameserver = 0.0.0.0 (other numbers instead of the 0s) in /etc/resolv.conf
-a good gateway -> do "route" and see if the table is correct or post the out put here.

If you're having trouble I suggest trying to get it to work without DHCP since you have to do it manually so you know what you've set and what could be missing. So could you post all the output you get and that of "iwconfig wlan0" as well?
 
Old 10-18-2004, 12:42 PM   #3
meping
Member
 
Registered: Sep 2004
Posts: 73

Original Poster
Rep: Reputation: 15
I do have DHCP responding, I have a wireless router, linksys wireless-b router.

In the Fedora GUI, under system tools ->Network Device Control is a listing of my wired ethernet port<not concerned> and my wireless card, but if I select my wireless card and click the activate button I get the following message : "Determing IP information for wlan0... failed; no link present. Check cable?"

output for iwconfig wlan0
<1 weird thing is in the GUI it says I have the ESSID, but in terminal it's not there>
"Wlan0 IEEE 802.11b ESSID: off/any Nickname: "localhost.localdomains"
Mode: Auto Frequency: 2.437GHz Access point: 00:00:00:00:00:00
Bit Rate=11Mb/s Tx0Power:20 dBm Sensitivity=0/3
RTS thr=2432 B Fragment thr=2432 B
Encryption key:3741-3742-4543-3238-4639 Security mode:restricted
Power Managementff
Link Quality:100/100 Signal level: -65 dBm Noise level:-256 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc: 0 Missed beacon:0"

/etc/resolv.conf is empty

output for route
***********************************************************************************************
Kernel IP routing table
Desitination Gateway Genmask Flags Metric Ref Use Iface
169.254.0.0 * 255.255.0.0 U 0 0 0 lo
127.0.0.0 * 255.0.0.0 U 0 0 0 lo
***********************************************************************************************
 
Old 10-18-2004, 01:15 PM   #4
darkleaf
Senior Member
 
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170

Rep: Reputation: 45
Like I thought. Your settings are completely off. Now I don't have much time to completely write everything to get it on boot but here's how you can get it to work.

Code:
iwconfig wlan0 essid ****
ifconfig wlan0 0.0.0.0
route add default gw 0.0.0.0
Change *** to your essid
after ifconfig change the 0.0.0.0 to the IP address your router could give you. Often something like 192.168.x.10 (can be anything from 1 to 255 but choose one that's unlikely to be assigned, it starts assigning at 1)
as gateway ip adress change the 0.0.0.0 to your router's IP adress. Then it should work.

Now edit your /etc/resolv.conf file with
Quote:
nameserver = 0.0.0.0
Change 0.0.0.0 with your router's IP address.
I'll explain how to do it with dhcp later if you still need it then. Which dhcp client do you have installed. Dhclient or dhcpcd? If you have neither I suggest dhcpcd since in my experience it worked better.
 
Old 10-18-2004, 11:00 PM   #5
meping
Member
 
Registered: Sep 2004
Posts: 73

Original Poster
Rep: Reputation: 15
Lightbulb testing...

meow
 
Old 10-18-2004, 11:03 PM   #6
meping
Member
 
Registered: Sep 2004
Posts: 73

Original Poster
Rep: Reputation: 15
alright followed your steps with come success. All the commands on I typed in terminal, fedora core 2 registered, but when I ran iwconfig they didn't work. I loaded up the system settings->network, and it said the card was active, so I entered the same settings in that way, but still no go with mozilla. I missed a bit of it, but during the boot it was mentioning problems associating the card

here's the output iwconfig wlan0 after changes:
IEEE 802.11 ESSIDff/any Nickname:"locahost.localdomain"
Mode:Auto Frequency:2.437GHz Access Point: 00:00:00:00:00:00
Bit Rate=11Mb/s Tx-Power:20 dBm Sensivitiy=0/3
RTS thr=2432B Fragment thr=2432B
Encryption keyff
Power Managementff
Link Quality:100/100 Singal level:-86 dBm Noise Level:-256 dBm
Rx invalid:0 Rx invalid crypto:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0

here's the output route after changes:
Desitination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 0 0 0 wlan0
169.254.0.0 * 255.255.0.0 U 0 0 0 wlan0
127.0.0.0 * 255.0.0.0 U 0 0 0 lo
default * 0.0.0.0 UG 0 0 0 wlan0
 
Old 10-19-2004, 03:19 AM   #7
darkleaf
Senior Member
 
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170

Rep: Reputation: 45
Your essid isn't set properly yet. Try to set it again till it works with
Code:
iwconfig wlan0 essid ***
It might be that they fail. Which version of ndiswrapper are you using since I hear some people have trouble with version 0.11 though I personally only found it worked better. You could try updating your wireless-tools package if you have trouble with iwconfig.
 
Old 10-19-2004, 07:44 PM   #8
meping
Member
 
Registered: Sep 2004
Posts: 73

Original Poster
Rep: Reputation: 15
so got rid of version 0.11 ndiswrapper, and downloaded version 0.10, re-did the setup and still no go. No matter how man times I enter the iwconfig wlan0 essid linksys, the output iwconfig doesn't change...ugh what am I doing wrong

You mentioned upgraded my wireless package, how do I do that & where do I download the packages from
 
Old 10-20-2004, 03:46 AM   #9
darkleaf
Senior Member
 
Registered: Jun 2004
Location: the Netherlands
Distribution: debian SID
Posts: 2,170

Rep: Reputation: 45
I think fedora has some package manager. But I'm not familiair with fedora , maybe you can find the package on its ftp server.
 
  


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
Linkys WPC11 problems in Fedora Core 3 aero402 Linux - Laptop and Netbook 2 01-01-2005 02:29 PM
WPC11 v.3 and Fedora Core 2 akilhoffer Linux - Wireless Networking 0 09-09-2004 06:49 PM
Fedora Core 2 Linksys WPC11 v3 not working thejoe526 Linux - Wireless Networking 2 07-13-2004 12:15 PM
Linksys WPC11 2.5 PC Card + Fedora Core 1 whitwhittle Linux - Wireless Networking 2 04-26-2004 02:48 PM
Wont recognize Linksys WPC11 v4 , on Fedora Core 1 pkacholia Linux - Networking 1 11-24-2003 06:40 PM

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

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