I'm remoting into a RPi Zero W using SSH. The RPi is connected to the internet via Ethernet cable. I want to set-up the WiFi at the current remote location and check that it will work when the Ethernet cable is disconnected.
I can set-up the WiFi via raspi-config or by directly editing the wpa_supplicant file. Is there a way to verify remotely that the WiFi will work once the Ethernet cable is unplugged?
If I run iwgetid
I get nothing back, ostensibly because the wireless LAN is not currently being used. The command iwconfig
gives me:
lo no wireless extensions.
eth0 no wireless extensions.
wlan0 IEEE 802.11 ESSID:off/any
Mode:Managed Access Point: Not-Associated
Retry short limit:7 RTS thr:off Fragment thr:off
Power Management:on
If I run sudo iwlist wlan0 scan
I can see the network I want to connect to. Is there any way to test it while plugged into Ethernet?
OS is Raspbian installed via NOOBS v. 2.8.1. I did verify the RPi can connect to the internet over WiFi at my location before shipping it off to the current remote location.
sudo iwlist wlan0 scan
on another device with wifi shows you the access point if running. For my understanding it doesn't matter if the ethernet cable is plugged in or not. – Ingo Jan 17 '19 at 11:46