建立於: 6年前 ( 更新: 6年前 )
我們使用ssh公鑰驗證時,通常會在~/.ssh/config加入相關設定。
如果說有些是公司用的或是家裡用的,是否可以使用多個config呢?
其實可以的,我們能git透過Include載入公司共用,有版本控制的config。
以下是~/.ssh/config的示意設定。
如果說有些是公司用的或是家裡用的,是否可以使用多個config呢?
其實可以的,我們能git透過Include載入公司共用,有版本控制的config。
以下是~/.ssh/config的示意設定。
Include ~/.ssh/keys/office_config
#Ha Backup
Host habackup
Hostname 172.16.1.10
User git
StrictHostKeyChecking no
IdentityFile=~/.ssh/id_rsa
#gogs
Host gogs
Hostname 172.16.1.13
User git
KeepAlive yes
ServerAliveInterval 30
StrictHostKeyChecking no
IdentityFile=~/.ssh/id_rsa
Port 10022
Host cc
Hostname 192.168.100.1
User root
IdentityFile=~/.ssh/id_rsa
Port 2222
Host ccc
Hostname 35.194.181.21
User devin_yang
IdentityFile=~/.ssh/ccc-gcp
#GitLab
Host gitlab.com
Hostname gitlab.com
User git
IdentityFile=~/.ssh/id_rsa_gitlab
No Comment
Post your comment