ssh -o ServerAliveInterval=30 -p 22 [email protected]
exit
Example:
config
文件配置:(ssh -F “path-to-config”)
Host *
ServerAliveCountMax 5
ServerAliveInterval 30
Host VPS-ip
HostName ECS-jump-IP
User hazy
Port 22
IdentityFile "D:\\Open-SSH\\id_ecs"
Host jump-to-c1m3
HostName ECS-C1M3-private-IP
User ecs-user
Port 22
ProxyJump VPS-ip
IdentityFile "D:\\Open-SSH\\id_c1m3"
IdentitiesOnly yes
ForwardAgent no
ForwardX11 no
ForwardX11Trusted no
建议自己生成,密钥有的要求有邮箱!
ssh-keygen -t ed25519 -C "[email protected]"
./id_yourChoice
password
HOW TO SAVE PRIVATE KEY?
建议使用vscode:密钥保存为无后缀的UTF-8格式文件。记事本不满足后者。
建议保存后修改密钥文件权限:管理员Administrator可读取执行和读取
建议添加密钥密码parse,可以保存后添加
ssh-keygen -p -f .\\id_zgozgo
ssh-agent可以在内存中临时保存私钥授权
ssh-add "D:\\Open-SSH\\id_universe"
RUN IN GIT BASH