Matthew Dillon brought in some wireless networking updates – the ath(4), iwn(4), and wpi(4) drivers are updated. There’s porting notes if you need them, too. In related news, rum(4) is also improved. The updates apparently benefited DragonFly and FreeBSD at the same time.
3 Replies to “Many wireless updates”
Comments are closed.
How do I connect DBSD to WiFi network? I have Intel Centrino wifi card which works with iwn driver. Where do I get firmware? What is the commands to scan and connect to specific network with WPA2 encryption?
Thanks,
In /etc/rc.conf:
wlans_iwn0=”wlan0″
ifconfig_wlan0=”DHCP WPA”
In /etc/wpa_supplicant.conf:
ctrl_interface=/var/run/wpa_supplicant
eapol_version=1
ap_scan=1
fast_reauth=1
network={
ssid=”Networkname”
scan_ssid=1
psk=”Password”
priority=2
}
Thanks a lot, it worked