SSH Remote Terminal
SSH (Secure Shell Protocol) is an encrypted network protocol used to securely remotely access and manage computers over insecure networks (such as the Internet). It protects communication security and prevents eavesdropping and tampering by establishing an encrypted tunnel between the client and the server.
Prerequisites: When connected to a network via wired/Wi-Fi, the Quectel Pi H1 will automatically obtain an IP address (DHCP protocol).
By default, the system disables the SSH server. Enable SSH using one of the following methods.
On the desktop of a single-board computer
Open Terminal in System Applications
Install ssh-server service
sudo apt install openssh-server
If you encounter the following problem, type Y + Enter.
For other options that appear later, simply press Enter.
Start ssh-server service
# Enable auto-start
sudo systemctl enable ssh
# Start service
sudo systemctl start ssh
# Check service status
sudo systemctl status ssh
If the service status is successfully started, you can proceed to the next step.
Get Quectel Pi H1 Single Board Computer IP Address
Enter the ip address command in the serial console to view the IP address of Quectel Pi H1.
Configure SSH Login
Enter the following command in the Windows console. You need to enter "yes" to confirm the connection during the connection process.
ssh <username>@<ip-address>
# Example
ssh pi@192.168.2.xxx
On the serial port console
Open PuTTY, configure USB serial port parameters, then click Open.
Install ssh-server service
sudo apt install openssh-server
- When encountering "Continue? [Y/n]", press y+Enter
- For other options that appear later, simply press
Enter
Start ssh-server service
# Enable auto-start
sudo systemctl enable ssh
# Start service
sudo systemctl start ssh
# Check service status
sudo systemctl status ssh
If the service status is successfully started, you can proceed to the next step.
Get Quectel Pi H1 Single Board Computer IP Address
Enter the ip address command in the serial console to view the IP address of Quectel Pi H1.
Configure SSH Login
Reopen PuTTY, check SSH and enter the IP address of Quectel Pi H1, then click Open.
Enter the username and password of Quectel Pi H1. The default user is pi and password is quecpi.