I've just finished compiling the NDIS driver for my USRobotics USR5417 (BCM4318 chipset) WiFi PCI card. The resulting kernel driver formed by the ndisgen utility is BCMWL5_SYS.ko and it loads itself under the name ndis0 perfectly. I've configured everything that are outlined at the 31.3 Wireless Networking section of FreeBSD manual:
/boot/loader.conf:
/etc/rc.conf:
How to make the ndis0 scan the nearby AP's ?
Thanks!
/boot/loader.conf:
Bash:
BCMWL5_SYS_load="YES"
ndis_load="YES"
if_ndis_load="YES"
wlan_scan_ap_load="YES"
wlan_scan_sta_load="YES"
wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"
/etc/rc.conf:
Bash:
ifconfig_ndis0="ssid MySSiD inet 192.168.1.198 netmask 255.255.255.0 bssid 00:11:92:da:da:da channel 11"
ifconfig
lists all settings of the ndis0 except ssid, bssid and channel and it doesn't respond to ifconfig ndis0 up scan
but it should because there are many Access Points around.How to make the ndis0 scan the nearby AP's ?
Thanks!
Last edited: