加载笔记内容...
加载笔记内容...
file location ~/.ssh/config
file template is below
1Host github.com
2 HostName github.com
3 User git
4 Port 22
5 IdentityFile ~/.ssh/private_key
use command ssh-keygen
1cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
2chmod 600 ~/.ssh/authorized_keys
/etc/ssh/sshd_config
in server, PasswordAuthentication no.
1PasswordAuthentication no
/etc/ssh/sshd_config
.
1PubkeyAuthentication yes
systemctl restart sshd
.1ServerAliveInterval 60
1ssh -L [LOCAL_IP:]LOCAL_PORT:DESTINATION:DESTINATION_PORT [USER@]SSH_SERVER
参数说明:
案例:
使用本地地址 127.0.0.1:58211
连接远程的数据库 1.1.1.1:58211
1ssh -L 58211:1.1.1.1:58211 user@remote-server