diff options
Diffstat (limited to '.ssh')
-rw-r--r-- | .ssh/config | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.ssh/config b/.ssh/config index a888924..4c122a9 100644 --- a/.ssh/config +++ b/.ssh/config @@ -439,3 +439,37 @@ Host shell.c-base.org ControlMaster auto ControlPath ~/.ssh/socket-%r@%h:%p +# arch linux +Host orion.archlinux.org + Hostname orion.archlinux.org + Port 22 + user dvzrv + IdentitiesOnly yes + IdentityFile ~/.ssh/id_ed25519_aur + ServerAliveInterval 120 + Compression yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + +Host soyuz.archlinux.org + Hostname soyuz.archlinux.org + Port 22 + user dvzrv + IdentitiesOnly yes + IdentityFile ~/.ssh/id_ed25519_aur + ServerAliveInterval 120 + Compression yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + +Host pkgbuild.com + Hostname pkgbuild.com + Port 22 + user dvzrv + IdentitiesOnly yes + IdentityFile ~/.ssh/id_ed25519_aur + ServerAliveInterval 120 + Compression yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + |