DimGR
05-11-2005, 03:33 PM
I have had ndiswarapper working good with this card for long timeusing WEP 128-bit. I found out that WPA-PSK can work with ndiswrapper so here it is:
my card is a
0000:02:02.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 03)
first install wpasupplicant and then create this file in /etc/network and save it as wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="essid"
psk="pass"
key_mgmt=WPA-PSK
proto=WPA
}
Add this info to /etc/network/interfaces
auto wlan0
iface wlan0 inet dhcp
wireless-essid your-essid
pre-up modprobe ndiswrapper
pre-up wpa_supplicant -wB -i wlan0 -c /etc/network/wpa_supplicant.conf -D ndiswrapper
pre-up sleep 3
down killall wpa_supplicant
then do a pump -i wlan0
or /sbin/dhclient wlan0
or whatever you use to go online:P
my card is a
0000:02:02.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 03)
first install wpasupplicant and then create this file in /etc/network and save it as wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
network={
ssid="essid"
psk="pass"
key_mgmt=WPA-PSK
proto=WPA
}
Add this info to /etc/network/interfaces
auto wlan0
iface wlan0 inet dhcp
wireless-essid your-essid
pre-up modprobe ndiswrapper
pre-up wpa_supplicant -wB -i wlan0 -c /etc/network/wpa_supplicant.conf -D ndiswrapper
pre-up sleep 3
down killall wpa_supplicant
then do a pump -i wlan0
or /sbin/dhclient wlan0
or whatever you use to go online:P