Linux中ssh使用

Linux常用功能与整理记录

https://www.cnblogs.com/kelvinWang/p/5612907.html

https://blog.csdn.net/a1282379904/article/details/52680959

文章目录

  • 生成公钥/私钥
  • 查看公钥
  • 配置文件

生成公钥/私钥

ssh-keygen

查看公钥

cat ~/.ssh/id_rsa.pub

服务端添加公钥

# 将生成的公钥复制进去
vim ~/.ssh/authorized_keys
# 或者 例子:ssh-copy-id [email protected]
ssh-copy-id [user]@[host name|ip]

配置文件

# 修改 /etc/ssh/sshd_config        
StrictModes no

你可能感兴趣的:(Linux)