LinuxQuestions.org
View the Most Wanted LQ Wiki articles.
Go Back   LinuxQuestions.org > HCL > Network Cards > Netgear
User Name
Password

Notices

Search · Register · Submit New Product ·
 

Netgear WG511T
Reviews Views Date of last review
22 138436 12-30-2006
spacer
Recommended By Average Price Average Rating
91% of reviewers $59.44 9.1



Description: This 32-bit Cardbus 802.11b/g wireless card can achieve up to 108 MB/s transfer rates when used with the proper router, however I don't think it can do this in Linux just yet.
Must first install the MadWifi driver:

http://sourceforge.net/projects/madwifi/

and you can get plenty of help with that here:

http://madwifi.org

Once the drivers are installed I used the following commands to configure the card:
iwconfig ath0 mode Managed
iwconfig essid _your_essid_

set your IP and Subnet Mask and start the card:
ifconfig ath0 x.x.x.x netmask y.y.y.y up

set default gateway:
route add default gw z.z.z.z

set your WEP key:
iwconfig ath0 key ABCDEFEDCB

set the bit rate:
iwconfig ath0 rate 54M

When it is up and working both lights will flash simultaneously. The flashing rate increases when it's transferring data.

That's all. Hope this helps someone.
Keywords: WGT511 Turbo 108Mb Cardbus
/sbin/lspci output: 06:00.0 Ethernet controller: Unknown device 168c:0013 (rev 01)
Chipset: Atheros
Connection Type: cardbus


Author
Post A Reply 
Old 07-16-2004, 09:14 PM   #1
irish_rover
 
Registered: Sep 2002
Distribution: Debian, Slackware, Kubuntu, ClarkConnect, FreeBSD
Posts: 366

Rep: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $75.00 | Rating: 8

Kernel (uname -r): 2.6.7
Distribution: Debian



This card has worked fine for me with the madwifi drivers and the 2.6.7 kernel. http://www.tuxroxx.net/index.php?pag...1T_How-To.html
 
Old 08-13-2004, 09:20 AM   #2
dani317
 
Registered: Jul 2004
Distribution: slackware 10
Posts: 4

Rep: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 9

Kernel (uname -r): 2.6.7
Distribution: slackware 10


Having tried everything to get this card working, madwifi, ndiswrapper, kernel rebuilds you name it I tried it. I must have reinstalled at least 10 times. Finally for no apparent reason I reinstalled one last time, followed the excellent instructions from vincent and the two lights flashed together instead of one at a time. This man is my new hero!

Dave
 
Old 08-18-2004, 02:05 PM   #3
x12344321
 
Registered: Jan 2004
Distribution: Slackware 10.0|Damn Small Linux|NetBSD|Debian
Posts: 46

Rep: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $50.00 | Rating: 10

Kernel (uname -r): 2.6.7
Distribution: Slackware 10.0


Dude I love you.
 
Old 08-23-2004, 09:11 AM   #4
Vincent_Vega
 
Registered: Nov 2003
Distribution: Slackware & Arch
Posts: 825

Rep: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $130.00 | Rating: 8

Kernel (uname -r): 2.6.7
Distribution: Slackware 9.1


I'm glad this review is helping people!
 
Old 09-06-2004, 05:30 PM   #5
m00t00
 
Registered: Sep 2004
Distribution: Slackware 10, Gentoo
Posts: 292

Rep: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $50.00 | Rating: 10

Kernel (uname -r): 2.6.7
Distribution: Slackware 10


Worked great. Had no problems, execlent instructions there. My suggestion also, would be to put the following lines in a bootscript:

ifconfig ath0 IP_ADDRESS
route add default gw GATEWAY
 
Old 09-07-2004, 08:18 PM   #6
archdev
 
Registered: May 2004
Distribution: fedora
Posts: 134

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $50.00 | Rating: 10

Kernel (uname -r): 2.4.22-1.2199.nptl_52.rhfc1.at
Distribution: fedora


money
 
Old 09-10-2004, 07:04 AM   #7
dani317
 
Registered: Jul 2004
Distribution: slackware 10
Posts: 4

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? | Price you paid? (in USD): None indicated | Rating: 0

Kernel (uname -r): 2.6.7
Distribution: Slack 10


btw I use these to boot up wireless on startup. I borrowed them from somewhere on the 'net, and I thought you guys may find it useful

http://www.euralia.co.uk/linux/rc.wireless

this replaces the rc.wireless in /etc/rc.d

http://www.euralia.co.uk/linux/rc.M

place the contents of this file in the rc.M file AFTER the card has been initialised.

Dave
 
Old 09-21-2004, 01:36 PM   #8
thephotoman
 
Registered: Sep 2004
Distribution: Knoppix 3.6 as Debian Sid, Fedora Core 1
Posts: 11

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $75.00 | Rating: 8

Kernel (uname -r): 2.4.27
Distribution: Knoppix 3.6 installed on HD


With Knoppix 3.6, there are a few extra hacks that you've got to go through to get this card to work, I've found.

You've got to go into the program file for netcardconfig and modify the code as follows:


There's a line that says as follows:

NETDEVICES="$(cat /proc/net/dev | awk -F: 'eth.:|tr.:|wlan.:/(print $1)')

It needs to read:

NETDEVICES="$(cat /proc/net/dev | awk -F:'eth.:|tr.:|wlan.:|ath.:/(print $1)')

That will allow it to detect Atheros chips and use the madwifi driver.

Then, you go in to the terminal and type:

$ sudo ifconfig ath0 up

Then, if you're like me and just want to use the terminal to get your IP number via DHCP:

$ sudo apt-get install dhcp, dhcp-dns, dhclient

$ sudo dhclient ath0

You may need to check your wireless access point if there are multiple routers by using "$ sudo iwlist ath0 scanning".
 
Old 09-28-2004, 03:42 PM   #9
Optimized
 
Registered: Jul 2003
Distribution: Fedora Core 2
Posts: 5

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 0

Kernel (uname -r): 2.6.8-1.521mybox
Distribution: Fedora Core 2


The card works fine... But I am unable to use airsnort to discover AP.

I always get the error message : Error. Could not set monitor mode.

airsnot-0.2.4-0 (Dag's repo)
madwifi-0.9.3 (ATrpms' repo)

Did one of you guys was able use that soft to scan/discover AP?
And how did you proceed?
 
Old 10-12-2004, 06:33 AM   #10
okmyx
 
Registered: May 2004
Distribution: Ubuntu 8.04
Posts: 464

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 10

Kernel (uname -r): 2.6
Distribution: Suse 9.1 Pro


No problems at all, just plug and go.

Even easlier than the windows install, that required me to insert the CD.
 
Old 10-30-2004, 03:19 PM   #11
 
Registered: Dec 1969
Posts: 0

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 0

Kernel (uname -r): 2.6.7
Distribution: slackware 10.0


Hello, i tried to install madwifi and found that it didn't quite work with insmod/modprobe until i looked in dmesg and found this:

wlan: version magic '2.6.7 486 gcc-3.4' should be '2.6.7 486 gcc-3.3'
ath_rate_onoe: version magic '2.6.7 486 gcc-3.4' should be '2.6.7 486 gcc-3.3'
ath_pci: version magic '2.6.7 486 gcc-3.4' should be '2.6.7 486 gcc-3.3'
ath_hal: version magic '2.6.7 486 gcc-3.4' should be '2.6.7 486 gcc-3.3'

Exactly how should I go about getting around this?
 
Old 01-10-2005, 01:44 PM   #12
tonyfreeman
 
Registered: Sep 2003
Distribution: Debian testing 64bit at home, EL5 32/64bit at work.
Posts: 187

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $100.00 | Rating: 9

Kernel (uname -r): 2.6.9-1.11_FC2
Distribution: Fedora Core 2


This product seems to be 100 percent compatible with linux NOW ... but when I first purchased it I couldn't get the bloody thing to work. I needed the use of this product more THEN than I do now. A huge thank you for helping me get this thing working!

Anyway ... my office has an acer travelmate 250 and the pcmcia card is a netgear wg511t. The flavor of GNU/Linux is Fedora Core 2.

After reading this post I first updated all software on the system using "yum update". This process updated a bunch of software and also the kernel. I rebooted and placed the pcmcia card in the slot. I then went to:
http://download.atrpms.net/production/packages/fedora-2-i386/atrpms/

... and installed these four rpms from that site:
ltmodem-kmdl-2.6.9-1.11_FC2-8.31a8-7.rhfc2.at.i686.rpm
kernel-module-madwifi-2.6.9-1.6_FC2-0.9.4.11-13.rhfc2.at.i686.rpm
madwifi-0.9.4.12-14.rhfc2.at.i386.rpm
madwifi-kmdl-2.6.9-1.11_FC2-0.9.4.12-14.rhfc2.at.i686.rpm

I had to use the above site because I couldn't find madwifi rpms anywhere else.

I rebooted the machine and I could tell immediately that things were going to work because both lights on the pcmcia card were flashing together AND that the machine didn't hang during boot with the pcmcia card in the slot! Before it always hung during the pcmcia module load if the pcmcia card was firmly placed in the slot.

I did an "lsmod" which showed that the macine now had the "ath_" modules installed:
ath_pci 52388 0
ath_rate_onoe 7560 1 ath_pci
wlan 98780 4 wlan_wep,ath_pci,ath_rate_onoe
ath_hal 132304 2 ath_pci

On the desktop, I opened up the network configurator ...
"Start Here" --> "System Settings" --> "Network" ... I clicked on the "New" icon --> selected "Wireless Network" and amazingly saw that my pcmcia wireless card was in the list on the next screen (before it had not been there). I was then able to configure my wireless network successfully.

Thanks to all you who posted your comments ... it really helped me get this thing working. I'm on the wireless encrypted network now posting this reply! Thanks :-)

-- Tony
 
Old 01-28-2005, 09:39 AM   #13
mjbrej
 
Registered: Jun 2004
Distribution: Fedora Core 4
Posts: 10

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $35.00 | Rating: 7

Kernel (uname -r): 2.6.10-1.741_FC3
Distribution: Fedore Core 3


I followed the link given by Irish Rover step-by-step and my card was up and running in no time. Thanks for the tip.

In Fedora Core 3, I would recommend using Network Manager with this card--that is actually the reason I got this card--my previous card (Orinoco circa 2002) was not compatible with Network Manager. Nework Manager has some nice features to help auto-detect and make wireless netowrk configuration via a GUI versus command line much easier. If you network hop like I do, this is a nice advance.
 
Old 02-01-2005, 03:03 PM   #14
rmd5
 
Registered: Apr 2004
Distribution: Gentoo
Posts: 6

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $32.75 | Rating: 10

Kernel (uname -r): 2.6.7
Distribution: Gentoo


Thank you very much!!! I got this card working in about 10 min after reading this post.
 
Old 04-12-2005, 09:48 PM   #15
MousePad
 
Registered: Jan 2003
Posts: 0

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $60.00 | Rating: 10

Kernel (uname -r): 2.6.10-1.770_FC3
Distribution: Fedora Core 3


Works great!

It took me about 2 nights to get it to work, but I have to say, I'm kinda still a newbie with Linux. But it's in these occasions that I learn a little more...
No frills, no kinks... Just install madwifi, you're good to go with WEP... Need WPA, install wpa_supplicant, and surf away :)

I did not run into any big troubles, just simple things I didn't know before...

Be careful if you intend to use this card with wpa_supplicant and a Linksys WRT54G router with the Alchemy or Satori firmware from Sveasoft. I had to flash back the factory firmware to get it to work... Your mileage may vary though... Hope Sveasoft fixes the problem soon...

But now, it works... And I recommend :)

Have fun guys :)
 
Old 04-20-2005, 07:49 AM   #16
ArbiterOne
 
Registered: Oct 2004
Distribution: Slackware 10.1
Posts: 18

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 10

Kernel (uname -r): 2.6.11.7
Distribution: Slackware 10.1



Works well with Kismet and Airsnort. If it isn't working, try this:

1. Did you build your kernel with CONFIG_NET_WIRELESS and wireless extensions? Most stock kernels do not come with this enabled. Also, make sure PCMCIA card support and the modules required for your socket (probably yenta_socket) are enabled in the kernel.

2. Do you have the kernel source installed? This is a requirement to rebuild your kernel and to build madwifi.

3. Are you running Vincent's instructions exactly?

4. If you can't get an IP address, are you using the latest version of dhclient and/or dhcpcd? Get it here: isc.org/sw/dhcp/dhcp-v2.php

All in all, a very good card and a good choice with Linux. Gets excellent range (beats my friend's 2x more expensive 3com card).
 
Old 10-24-2005, 02:13 PM   #17
RHLinuxGUY
 
Registered: Oct 2003
Distribution: Ubuntu 7.04
Posts: 889

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $59.99 | Rating: 10

Kernel (uname -r):
Distribution: SuSE 9.2


100% compatibility. Stock kernel, stock everything, worked out of the box, just needed to configure with yast and started working right away. Just be sure to tell SuSE to configure it as soon as you get to the desktop. If chose the wrong option, or cancelled it, then turn off your computer, take out the card, reboot, then shutdown and put back in the card so it will recognize it again as a new piece of hardware. Again 100% compatibility! Worth every dollar!
 
Old 01-18-2006, 02:06 PM   #18
JunctaJuvant
 
Registered: May 2003
Distribution: OS X
Posts: 483

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 8

Kernel (uname -r): 2.6.14.4
Distribution: Arch Linux


Nice card, well supported. Here in The Netherlands, we can use 13 channels, so I added the string "options ath_pci countrycode=528" to /etc/modprobe.conf because the default is just 11 channels. The madwifi page explains what countrycodes are and where to look them up. Using the new madwifi-ng code is a bit of a tricky affair at the moment, but there are also guides for that on the madwifi homepage. There is just one problem: mixed turbo mode is still not supported according to the information on the madwifi page. I don't use turbo mode, mixed or otherwise, but that's beside the point. Madwifi apparantly still does not fully support all the functions the card provides, thus I rate the card an 8 for use with GNU/Linux: very good, but not (yet) excellent.
 
Old 03-08-2006, 12:32 AM   #19
Dadzilla
 
Registered: Feb 2006
Distribution: 2.6.12-1.1381_FC3
Posts: 5

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? no | Price you paid? (in USD): $35.00 | Rating: 6

Kernel (uname -r): 2.6.12-1.1381_FC3.stk16
Distribution: Fedora Core 3 with kernel from Linuxant w/ 16k stacks


Netgear WG511T ver 1 with Atheros 5212 chipset. Installed in an older (ca. 1999) Dell Inspiron 7500 w/ Celeron 466MHz cpu. What a pain! Mostly, I think,due to the age of the laptop. I tried like heck to get it to install w/ madwifi and couldn't do it after weeks of trying. Gave up and switched to ndiswrapper (http://ndiswrapper.sourceforge.net/mediawiki/index.php/Main_page) and had incomplete success (open networks only; no authentication) w/in 1 night.

The problem was/is Yenta. At boot time, Yenta was disabling my IRQ 11, but giving a msg in the system log that it had been re-routed and shared, leading me to believe it was working. In the process of working with ndiswrapper I came across a reference to IRQ problems. I read the kernel docs (kernel-parameters.txt) and found the command line additions I needed and modified the /boot/grub/grub.conf file to add them to the kernel boot command. I also disabled my serial and parallel ports to free up their interrupts. Voila - no IRQ disabling. From that point on, ndiswrapper worked very smoothly. BTW, the Dell offered no BIOS support for specifying IRQs, which would have helped immensely.

I then got wpa_supplicant from http://hostap.epitest.fi/wpa_supplicant/ and followed the instructions in their doc file to make and install wpa_supplicant. It didn't work at first because the windows drivers for the version 1 WG511T card don't support WPA; only WEP. I downloaded new drivers from netgear and, following those instructions, I believe I updated the firmware on the WG511T (they never really said; just "insert card now" - yet another reason I dislike windoze), on my wife's windows laptop. I then had to remove, recompile with the new drivers, and reinstall ndiswrapper and wpa_supplicant on my laptop. Now works perfectly using 128-bit WPA-TKIP encryption.

If your laptop's old, the card's a freebie and you have a desire to learn Linux then the WG511T is a good choice. It is probably also a good choice if you have a newer computer, based on the comments of a pretty large number of people. I did get madwifi to work on maybe 4 occasions out of hundreds (thousands?) of attempts, but it would never work on the next boot. I suspect now that it was the IRQ problem all along.

The WG511T works superbly, finally. I get 54Mb speeds routinely (can't do 108 yet, though) and connections are more reliable than my wife's newer laptop with built-in Intel Pro chips and drivers.

Good luck!
 
Old 03-08-2006, 11:20 AM   #20
scottmorris
 
Registered: Jan 2006
Distribution: SUSE 9.3 - 10.0
Posts: 30

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 10

Kernel (uname -r): 2.6.13-15.8-default
Distribution: SUSE 10.0


After a few days of research and whatnot, I found several reviews on how well this card "just works" with SUSE 10.0. It has an Atheros chipset, which was recommended to me by the SUSE folks in Germany. I was literally able to just plug this card in and have the system recognize it, and ask me if I wanted to configure it, which went very smoothly. If you want something that will just work when you plug it in, this card is a very safe bet.
 
Old 12-20-2006, 01:39 AM   #21
TexasDex
 
Registered: Feb 2003
Distribution: Gentoo, Kubuntu, formerly LFS, SuSE, and RedHat
Posts: 133

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): $20.00 | Rating: 10

Kernel (uname -r): 2.6.15-27-386
Distribution: Kubuntu 6.06.1


Worked out of box with Kubuntu. I must say that the Ubuntu distro has increased my expectations for Linux hardware support from "it's a pain to get working with wireless, if it ever works at all" to "it works with most cards, and can be configured with a few clicks". Kudos to Ubuntu!
 
Old 12-30-2006, 03:32 AM   #22
rjwilmsi
 
Registered: Mar 2005
Distribution: opensuse 12.2 x86_64
Posts: 559

Rep: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation: Reputation:
Would you recommend the product? yes | Price you paid? (in USD): None indicated | Rating: 10

Kernel (uname -r): 2.6.16.13-4-default
Distribution: SUSE 10.0 i686


Faultless using madwifi SUSE 10.0 RPM
 




  



All times are GMT -5. The time now is 05:44 AM.

Main Menu

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
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration