Quote (^thehatsrule^ @ Aug. 08 2007,22:34) |
It would appear that the prism2 driver does not support that operation: "ioctl[PRISM2_IOCTL_HOSTAPD]: Operation not supported" |
Quote |
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. |
Code Sample |
iwconfig ath0 mode Managed iwconfig essid SSIDFORDSL ifconfig ath0 192.168.0.50 netmask 255.255.255.0 up route add default gw 192.168.0.1 wpa_supplicant -Bdd -c/etc/wpa_supplicant.conf -iath0 -Dmadwifi |