Minor nuisance issue: "bwn0: unsupported rate 0" ?

Hi, I'm new here after using Crunchbang Linux and thought I would check out the BSDs. I'm a newb, but I wrestled with this HP Mini Broadcom 4312 and I seem to finally have WiFi running. I have KDE and FreeBSD 9.1.

When I finally seemed connected everything seemed slow and I could not ping. Then I remembered this post and wondered if I should switch from G default to B as he described.

Code:
ifconfig wlan create wlandev bwn0 mode 11b

http://forums.freebsd.org/showpost.php?p=183879&postcount=17


So for the wireless section in /etc/rc.conf I tried this:

Code:
wlans_bwn0="wlan0"
ifconfig_wlan0="WPA SYNCDHCP [B]mode 11b[/B]"

I was originally in mode 11g but this changed it. Wireless actually seems to work because of this. I'm just curious about a constant message that spams the console saying "bwn0: unsupported rate 0". It even comes down while I'm editing in Nano.

Does this want me to change the roam rate or something under ifconfig(8)? Or hopefully this is a harmless warning I can ignore while I go back to KDE. :)

Otherwise, this is an interesting operating system to try on my netbook.

[I'm messing with this while procrastinating on college work. I plan to edit this soon and add .conf files just so people know what this newb is doing.]
 
Well... I have this netbook running in a coffee shop and I grabbed WiFi access. My virtual console at Cntrl-Alt-F1 is still spamming that message
Code:
"bwn0: unsupported rate 0"
but everything seems to be working. I just wondered if that message is a warning I need to take seriously or ignore. Or maybe something to take note of for other people with BroadCom problems that wander into this forum. Switching the mode seemed to be the final thing I needed to get this operating normally.

Code:
$cat /boot/loader.conf

bwn_v4_lp_ucode_load="YES"
if_bwn_load="YES"
legal.intel_bwn.license_ack=1

wlan_wep_load="YES"
wlan_ccmp_load="YES"
wlan_tkip_load="YES"

Code:
$ cat /etc/rc.conf 
hostname="beasty"
ifconfig_re0="DHCP"
sshd_enable="YES"
moused_enable="YES"
ntpd_enable="YES"
powerd_enable="NO"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="NO"

hald_enable="YES"
dbus_enable="YES"

kdm4_enable="YES"

wlans_bwn0="wlan0"
ifconfig_wlan0="WPA SYNCDHCP mode 11b"

Code:
$ cat /etc/wpa_supplicant.conf 
# /etc/wpa_supplicant.conf written by wifimgr(8)

network={
        ssid="BIGGBY WiFi"
        priority=3
        bssid=00:25:9c:bf:9a:1a
        key_mgmt=NONE
}
 
Back
Top