ssh 使用

SSH

Secure Shell(SSH)

OpenSSH

生成密钥

1
ssh-keygen -t rsa -C 邮箱  -f 密钥存放路径

客户端配置

~/.ssh/config

1
2
3
4
5
6
7
8
9
10
11
Host test
# 主机名
HostName shell.test.com
# 用户名
User root
# 端口
Port 22
# 添加到 ssh-agent
AddKeysToAgent yes
# 密钥文件
IdentityFile

登录服务器

1
ssh test

ssh-agent

1
2
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa

参考

SSH Config 那些你所知道和不知道的事 | Deepzz’s Blog

ssh_config

×

纯属好玩

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

文章目录
  1. 1. SSH
    1. 1.1. 客户端配置
    2. 1.2. 参考
,