You are not logged in.
Pages: 1
Hi All
I am new to arch linux. I have a dell studio 1535. My wireless card is Broadcom BCM4312. As the wiki page suggested, I installed the broadcom-wl driver. The wiki says that b43 and ssb need to be blacklisted and i did that too. Also, my interfaces were swapped by the driver and i restored them as mentioned. The following is the output when i try to connect to a wifi network whose essid is Kaushik and wep-hex key is 7204066967.
sudo ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
3: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
    link/ether 00:21:70:89:da:f0 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.3/24 brd 192.168.1.255 scope global eth0
    inet6 fe80::221:70ff:fe89:daf0/64 scope link 
       valid_lft forever preferred_lft forever
4: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 1000
    link/ether 00:22:5f:18:c6:a3 brd ff:ff:ff:ff:ff:ff
    inet6 fe80::222:5fff:fe18:c6a3/64 scope link 
       valid_lft forever preferred_lft foreveriwconfig
lo        no wireless extensions.
eth1      IEEE 802.11abg  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          
eth0      no wireless extensions.sudo ip link set eth1 up //no errors
sudo iwlist eth1 scan
 Cell 01 - Address: 80:A1:D7:7A:01:F4
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=61/70  Signal level=-49 dBm  
                    Encryption key:on
                    ESSID:"Kaushik"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                              36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=0000000000000000
                    Extra: Last beacon: 83ms ago
                    IE: Unknown: 00074B61757368696B
                    IE: Unknown: 010482848B96
                    IE: Unknown: 030101
                    IE: Unknown: 050400010000
                    IE: Unknown: 2A0104
                    IE: Unknown: 32080C1218243048606Csudo iwconfig eth1 essid "Kaushik" key 7204066967 //no error
sudo dhcpcd eth1
dhcpcd[1268]: version 5.5.6 starting
dhcpcd[1268]: eth1: sending IPv6 Router Solicitation
dhcpcd[1268]: eth1: rebinding lease of 192.168.1.2
dhcpcd[1268]: eth1: sending IPv6 Router Solicitation
dhcpcd[1268]: eth1: broadcasting for a lease
dhcpcd[1268]: eth1: sending IPv6 Router Solicitation
dhcpcd[1268]: eth1: sending IPv6 Router Solicitation
dhcpcd[1268]: eth1: no IPv6 Routers available
dhcpcd[1268]: timed outFinally, It doesn't connect to the network. Wired network works beautifully. Any idea as to what is the issue? Thanks a TON!
Offline
The most direct answer would be to try disabling IPv6. There is a good wiki page on this - it involves adding a parameter to your kernel line in grub's menu.lst.
But also, if you haven't already done so, you may want to also try the b43 driver. As far as I know - which may not be very far, admittedly - there have been some improvements since the wiki page was written. Many cards that used to require wl are now covered by b43 or brcmsmac.
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
The most direct answer would be to try disabling IPv6. There is a good wiki page on this - it involves adding a parameter to your kernel line in grub's menu.lst.
But also, if you haven't already done so, you may want to also try the b43 driver. As far as I know - which may not be very far, admittedly - there have been some improvements since the wiki page was written. Many cards that used to require wl are now covered by b43 or brcmsmac.
YES! It worked. Is there a way that this information can be updated in the arch wiki for future benefit?
Offline
It is a wiki, it's readily editable. I'd just suggest assessing to what degree your experience may be generalizable to others - but if done well, by all means edit.
Out of curiosity, did disabling IPv6 do it, or did b43 work for you?
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
b43 worked for me.
Offline
Pages: 1