[SOLVED]Trying to use WIFI on my old Macbok Pro
- PhantomTramp
- Posts: 100
- Joined: Tue Jul 10, 2007 12:53 pm
Re: Trying to use WIFI on my old Macbok Pro
Code: Select all
Device-2: Broadcom BCM43224 802.11a/b/g/n vendor: Apple AirPort Extreme driver: wl v: kernel
modules: bcma pcie: gen: 1 speed: 2.5 GT/s lanes: 1 bus-ID: 03:00.0 chip-ID: 14e4:4353
class-ID: 0280
IF: wlan0 state: up mac: <filter>
I have b43, b43 legacy and a host of other drivers blocked by default in MX Network Assistant..
The Tramp

-
- Posts: 617
- Joined: Tue Sep 22, 2020 7:36 pm
Re: Trying to use WIFI on my old Macbok Pro
What does these show:
ip link
cat /etc/network/interfaces
ip link
cat /etc/network/interfaces
Re: Trying to use WIFI on my old Macbok Pro
Yep, by default wl is enabled and /etc/modprobe.d/broadcom-sta-dkms.conf looks like this:PhantomTramp wrote: Fri Oct 06, 2023 3:18 pm...
I have b43, b43 legacy and a host of other drivers blocked by default...
Code: Select all
# wl module from Broadcom conflicts with the following modules:
blacklist b43
blacklist b43legacy
blacklist b44
blacklist bcma
blacklist brcm80211
blacklist brcmsmac
blacklist ssb
Re: Trying to use WIFI on my old Macbok Pro
... @Griffy
on yours it shows:
driver: wl ... modules: ssb
is ssb not blacklisted as above? (if so, you can either edit the file to look like the above, or use the MXNA to do that)
on yours it shows:
driver: wl ... modules: ssb
is ssb not blacklisted as above? (if so, you can either edit the file to look like the above, or use the MXNA to do that)
Re: Trying to use WIFI on my old Macbok Pro
ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
link/ether 00:23:df:9e:cf:74 brd ff:ff:ff:ff:ff:ff
3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state DORMANT mode DORMANT group default qlen 1000
link/ether 00:23:6c:97:a5:05 brd ff:ff:ff:ff:ff:ff
cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
link/ether 00:23:df:9e:cf:74 brd ff:ff:ff:ff:ff:ff
3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state DORMANT mode DORMANT group default qlen 1000
link/ether 00:23:6c:97:a5:05 brd ff:ff:ff:ff:ff:ff
cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
-
- Posts: 617
- Joined: Tue Sep 22, 2020 7:36 pm
Re: Trying to use WIFI on my old Macbok Pro
The dormant state is like a power saving state. Let's see if we can set it to the default state:
Code: Select all
sudo ip link set wlan0 mode default
Re: Trying to use WIFI on my old Macbok Pro
Didn't appear to do anything.
-
- Posts: 617
- Joined: Tue Sep 22, 2020 7:36 pm
Re: Trying to use WIFI on my old Macbok Pro
Now do:
sudo ip link set wlan0 up
and then post the output from ip link again
sudo ip link set wlan0 up
and then post the output from ip link again
Re: Trying to use WIFI on my old Macbok Pro
ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
link/ether 00:23:df:9e:cf:74 brd ff:ff:ff:ff:ff:ff
3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state DORMANT mode DORMANT group default qlen 1000
link/ether 00:23:6c:97:a5:05 brd ff:ff:ff:ff:ff:ff
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
link/ether 00:23:df:9e:cf:74 brd ff:ff:ff:ff:ff:ff
3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state DORMANT mode DORMANT group default qlen 1000
link/ether 00:23:6c:97:a5:05 brd ff:ff:ff:ff:ff:ff