How can I access the Pi via SSH while connected to the hotspot via wifi? #1181
-
I can connect via wifi and pull up the configuration page but I'd also like to connected via ssh. Is this supported via the wifi connection or only via ethernet? If ssh is supported, what address and account should I use? Can I use my original account or must I use the raspap admin account? Does the raspap admin account have sudo rights? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
While connected to the hotspot via Wi-Fi, you may access your device with SSH on the The RPi OS kernel includes the avahi-daemon which facilitates local network discovery via multicast DNS (mDNS). On client computers with the Bonjour service installed (all macOS machines and Windows PCs with Apple iTunes), you can access your device via SSH with RaspAP does not create any Linux users; only the www-data user that lighttpd runs under is granted very specific rights to enable administration via the web UI. |
Beta Was this translation helpful? Give feedback.
-
Tried the above (ssh [email protected]) and get connection refused - what could be wrong? |
Beta Was this translation helpful? Give feedback.
-
: ) Fat fingered the above -
First ssh above connected over wireless connection. Am able to view admin screen web page if connected over wireless. Going to reset home router and plug pi into display/keyboard to check integrity. |
Beta Was this translation helpful? Give feedback.
While connected to the hotspot via Wi-Fi, you may access your device with SSH on the
10.3.141.1
static IP address. For example, with a "pi" user account this would bessh [email protected]
. If your device is connected via ethernet, you may also access it over your local network via SSH.The RPi OS kernel includes the avahi-daemon which facilitates local network discovery via multicast DNS (mDNS). On client computers with the Bonjour service installed (all macOS machines and Windows PCs with Apple iTunes), you can access your device via SSH with
ssh [email protected]
. If the .local domain address doesn't resolve for you, check your router's list of connected devices.RaspAP does not create …