【SSH】SSH
ssh,远程连接命令,安装。
【SSH】SSH
安装
安装ssh服务端。安装了openssh-server才能被其他主机连接。
1
sudo apt install openssh-server
安装ssh客户端。安装了openssh-client才能连接远程主机。
1
2
3
sudo apt install ssh
或
sudo apt install openssh-client
远程连接命令
1
2
ssh remote-username@remote-ip
ssh remote-username@remote-ip -p port # -p 指定端口号
IPv4示例:
1
2
3
4
ssh root@47.xx.xxx.90
# 使用默认端口 22
# 然后要输入root用户的密码
IPv6示例:
1
2
3
4
ssh root@240c:xxxx:xxxx:xxxx:****:****:****:**** -p 16123
# -p 用于指定端口号
# 然后要输入root用户的密码
本文由作者按照 CC BY 4.0 进行授权