Intel pro/wireless 2200BG miniPCI and NetBSD
Here are the steps I have followed to get this card working under NetBSD 4.0.1, with WPA, on my Thinkpad T43 laptop. I’m using an access point providing DHCP.
- Get the pkgsrc tree
- Go into sysutils/iwi-firmware3 (not iwi-firmware !)port directory and type make install
- You should get an error stating that you haven’t accepted the license of the firmware, please follow the intructions given (echo “ACCEPTABLE_LICENSES+=intel-ipw-license” >> /etc/mk.conf)
- Type again make install, this should work without errors now.
- Edit /etc/wpa_supplicant.conf with your WPA information :
- Add the following lines to /etc/rc.conf to get wpa_supplicant loaded at startup and DHCP configuration for the interface
- Start wpa_supplicant with /etc/rc.d/wpa_supplicant start (you should see kernel message firmware version = 196608)
- Restart your networking setup with /etc/rc.d/network restart
- It works !
network={
ssid="YOURSSID"
scan_ssid=1
key_mgmt=WPA-PSK
psk="YOURWPAKEY"
}
wpa_supplicant=YES wpa_supplicant_flags="-B -i iwi0 -c /etc/wpa_supplicant.conf" dhclient=YES dhclient_flags="-nw"
To get more information regarding wireless/wep/wpa setup, please have a look at the nice wireless network security NetBSD wiki page.