server network

ssh登录

SSH简介及两种远程登录的方法_ssh @-CSDN博客

ssh -o ServerAliveInterval=30 -p 22 [email protected]

exit

Example:

利用跳板机SSH登录

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密钥

【Client】添加密钥 - #1

HOW TO SAVE PRIVATE KEY?

RUN IN GIT BASH

https://blog.csdn.net/Dior_wjy/article/details/79035214

https://docs.github.com/zh/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent

LaTeX - ED