I’m setting up an ad-hoc (IBSS mode) network between two Orin Nanos to send UDP packets between them. I’m using iw to set up the network, and while both devices are up and running with the same SSID (AdhocTest), the BSSIDs are different.
I’ve manually assigned static IPs to both devices, and I’ve checked with iw dev wlan0 info and iw dev wlan0 link, everything seems fine except for the BSSID mismatch.
Has anyone encountered this issue or knows how to resolve it?
Sure! I upgraded to a fresh copy of JetPack 6, did sudo apt-get update and upgrade. At this point everything should be up to date. Then I typed in the following commands in terminal on both devices:
sudo ip link set wlan0 up (it was already up, this is just to make sure wlan0 is turned on)
sudo iw wlan0 set type ibss
sudo iw wlan0 ibss join “AdhocTest” 2462
sudo ip addr add 192.168.1.1/24 dev wlan0
At this point, iw info looked correct on both devices. Then, to make sure the hardware MAC address is correctly resolved, I ran sudo arp -s 192.168.1.x [MAC address] on both devices. ip routing is also showing the correct route. However, neither devices can connect to each other.