Connect Linux using SSH
Just using this simple command.
Or, if your linux using custom port, use this command.
ssh
: Initiates the SSH connection.-p port_number
: Specifies the custom port (instead of the default port22
).<username>
: Replace this with the actual username you want to connect as.<ip_address>
: Replace this with the IP address of the server.
Connect to Linux server without password (SSH key)
Generate SSH key. Select the default location (~/.ssh/id_rsa
) and leave the password blank for automatic access.
Then copy your SSH key to linux target.
Last updated