Wi-Fi Console Mode
Access console ports of access points or controllers remotely
Last updated
Was this helpful?
Access console ports of access points or controllers remotely
Last updated
Was this helpful?
From FPMS Modes > Wi-Fi Console > Confirm
Select the WLAN Pi xxx
SSID, where xxx
represents the last 3 digits of the MAC address of the WLAN Pi's eth0 interface. You can find both the SSID and WPA2 passphrase under Utils > SSID/Passphrase
.
Alternatively, press the joystick center button to display the QR code, scan it with your phone and it will automatically connect.
Plug the USB to serial console cable to the console port of the AP or switch.
Navigate to the IP address or name of your WLAN Pi in your web browser. When the web UI loads, click TERMINAL
.
Verify that the USB to serial adapter has been correctly initialized by checking for terminals /dev/tty*
This will output quite a few virtual consoles. We most likely care about a USB one.
But to troubleshoot which terminal we actually care about, try using the dmesg
command to check messages from the kernel ring buffer. Maybe we got a message when we plugged in the console cable?
Focus on the most recent few lines, at the bottom of the output. Or you can filter the output down to lines that include tty*
Great, it looks like in our example we want ttyUSB0
!
Let's connect to an AP console
By default a baud rate of 9600 is used. We can set a different one like so:
sudo screen /dev/ttyUSB0 115200
To stop screen session, press Ctrl+A
followed by K
key and Y
.
Ctrl+D
to detach
screen -x
to reattach
Type man screen
to learn more about how to use GNU screen.
Via FPMS Modes > Classic > Confirm