Wireless not working

There's a new problem now.

While booting, I get a message something like this over and over:

Code:
bwn(0): RX decryption attempted (old 0 keyidx 0x1)

And I cannot connect to the wired or wireless connection after booting. I was able to connect to wired only after disabling wlan in rc.conf and rebooting. What could be wrong?
 
Code:
pkg info -l bwn-firmware-kmod

pkg: No package(s) matching bwn-firmware-kmod
kldload: can't load /boot/modules/bwn_v4_lp_ucode15.ko: No such file or directory

Suggestions please
 
Last edited by a moderator:
I don't know if this applies to your Broadcom card, but my Intel 3165 would not work unless the modules load from /etc/rc.conf

like so:

Code:
kld_list="iwm3160fw    if_iwm"

Putting
Code:
iwm3160fw_load="YES"
 iwm_load="YES"

in /boot/loader.conf did not work.

Have you tried something like this in /etc/rc.conf?
Code:
kld_list="if_bwn bwn_v4_ucode bwn_v4_lp_ucode"
 
I don't know if this applies to your Broadcom card, but my Intel 3165 would not work unless the modules load from /etc/rc.conf

like so:

Code:
kld_list="iwm3160fw    if_iwm"

Putting
Code:
iwm3160fw_load="YES"
iwm_load="YES"

in /boot/loader.conf did not work.

Have you tried something like this in /etc/rc.conf?
Code:
kld_list="if_bwn bwn_v4_ucode bwn_v4_lp_ucode"

this is stopping all my networking services
 
Code:
$ cat /boot/loader.conf
snd_driver_load="YES"
linux_load="YES"
i915kms_load="YES"
if_bwn_load="YES"
bwn_u4_ucode_load="YES"
bwn_v4_lp_ucode_load="YES"
#firmware_load="YES"
#wlan_scan_ap_load="YES"
#wlan_scan_sta_load="YES"
#wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"
if_vlan_load="YES"
#if_bwi_load="YES"
 
Back
Top