Mac配置ssh免密鑰登陸

Mac終端每次使用ssh -p 22 user@ip登陸非常麻煩,下面介紹配置ssh免密鑰登陸:ubuntu

cd ~/.ssh下建立conf文件,寫入如下配置:服務器

Host test
    HostName ip
    Port 22
    IdentityFile /Users/t/key/test.pem(你的密鑰文件)
    User 服務器名ssh

而後保存,在終端輸入:ssh test便可以登陸了ip

配置堡壘機:get

Host jump
    HostName ip
    Port 22
    IdentityFile ~/.ssh/id_rsa.pub
    User mesieit

Host target
    HostName ip
    Port 22
    User ubuntu
    # IdentityFile  ~/.ssh/id_rsa.pub
    ProxyCommand ssh jump nc %h %p 2> /dev/nulltest

保存退出,下次進入堡壘機:ssh jump登錄

相關文章
相關標籤/搜索