Hi all,
I’m also having issues with getting internet via WiFi on this BB-AI board.
It connects to my WiFi network, gets a DHCP address, the routing table shows the default route is 192.168.1.1, through wlan0 interface etc, exactly the same top line of Matt’s table.
The WiFi LED goes green (right next to the Ethernet port).
I’ve connected through Ethernet and upgraded the software, but same issue with WiFi connected but no network through it.
It automatically sets the routing interface to Eth0 when I plug the Ethernet in, then sets its back to wlan0 when I unplug it so that’s great but still no signs of life.
There are a bunch of scripts in /opt/scripts, and configs in /etc/default.
In /etc/default, there’s a settings file bb-wl18xx with “TETHER_ENABLED=yes”, I’ve changed it to “no”. That caused connman to not connect the WiFi automatically, so I used connmancltl to set the agent back on for it to connect again.
What else can I check and change? I’ve put my connman settings and route command output are below, to me they show everything set up for this to work.
My assumption is that either its a separate setting relating to boot scripts etc, or its a driver/firmware issue.
I’ve had this issue previously, but it worked once on the original board image, but after updating to the latest image, it just doesn’t work at all.
My connman settings file in /var/lib/connman/
[global]
OfflineMode=false
[Wired]
Enable=true
Tethering=false
[WiFi]
Enable=true
Tethering=false
[Gadget]
Enable=false
Tethering=false
[P2P]
Enable=false
Tethering=false
[Bluetooth]
Enable=true
Tethering=false
fisher@beaglebone:~$route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.1.1 0.0.0.0 UG 0 0 0 wlan0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 wlan0
192.168.1.1 0.0.0.0 255.255.255.255 UH 0 0 0 wlan0
192.168.6.0 0.0.0.0 255.255.255.0 U 0 0 0 usb1
192.168.7.0 0.0.0.0 255.255.255.0 U 0 0 0 usb0
192.168.8.0 0.0.0.0 255.255.255.0 U 0 0 0 SoftAp0
fisher@beaglebone:~$ ping -I wlan0 192.168.1.1
PING 192.168.1.1 (192.168.1.1) from 192.168.1.175 wlan0: 56(84) bytes of data.
^C
— 192.168.1.1 ping statistics —
9 packets transmitted, 0 received, 100% packet loss, time 178ms
Fisher