Is my broadcom 4306 wireless card detected? from this settings.
I am not sure if my wireless card is detected, although it seems like it is from these settings: of ifconfig -a
Code:
rank # ifconfig -a
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 metric 1
inet 192.168.1.3 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::20d:56ff:fe1f:7b67 prefixlen 64 scopeid 0x20<link>
ether 00:0d:56:1f:7b:67 txqueuelen 1000 (Ethernet)
RX packets 4 bytes 1216 (1.1 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 18 bytes 1636 (1.5 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 16436 metric 1
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 0 (Local Loopback)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
sit0: flags=128<NOARP> mtu 1480 metric 1
sit txqueuelen 0 (IPv6-in-IPv4)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4098<BROADCAST,MULTICAST> mtu 1500 metric 1
ether 00:11:50:0c:0b:e4 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
localhost frank #
Also iwconfig
Code:
iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
sit0 no wireless extensions.
wlan0 IEEE 802.11bg ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=0 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:on
Also how do I get my Access point associated? But can I rest assured my wireless card does not need further configuration? I have wpa encryption and a netgear wireless router. My ethernet wired eth0 is working fine.
Solved broadcom bcm 4306 nic on optiplex gx 270 kernel 3.0.6
After few days of web searches, I finally got my broadcom 4306 wireless card running. I get a few errors with ethernet cable disconnected, but it seems to be running ok after boot.
I did not follow, the step as recommended in this website, though still recommend reading. The step to emerge firmware, did not seem to help.
Broadcom 43xx - Gentoo Linux Wiki
Instead , I followed the steps in this website, and that did work.
b43 - Linux Wireless
I was having problems configuring wpa_supplicant, my connection was flaky turning on and off. this Arch wiki, helped a lot for that problem. It auto generated a wpa supplicant conf that wifie up and running. It offered some other steps, that I followed. Some did not work with my particular gentoo system., but in the end. my connection remains connected after an hour.
here is my working wpa_conf that is working, with my Netgear Router. Generated by following steps in Arch wiki. I thought there might be a conflict with setting GROUP=wheel and GROUP=0 but so far there hasn't.
Code:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=wheel
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
network={
ssid="myssiduseyours"
psk="mypassphraseuseyourgoeshere"
}
I read so many posts in various distros, it would be hard to thank every one. But special thanks, to every one, here, for your help.