diff options
-rw-r--r-- | .ssh/config | 47 |
1 files changed, 40 insertions, 7 deletions
diff --git a/.ssh/config b/.ssh/config index 983447c..8978c42 100644 --- a/.ssh/config +++ b/.ssh/config @@ -16,7 +16,7 @@ Host greblab Host gchristina Hostname christina Port 22 - user dave + User dave ForwardAgent yes IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes @@ -39,6 +39,17 @@ Host apu-access-unlock ControlMaster auto ControlPath ~/.ssh/socket-%r@%h:%p +Host apu-access + HostName apu-access + Port 22 + User dave + ServerAliveInterval 120 + Compression yes + IdentityFile ~/.ssh/id_rsa + IdentitiesOnly yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + Host apu-serve-unlock HostName apu-serve-unlock Port 22 @@ -50,6 +61,28 @@ Host apu-serve-unlock ControlMaster auto ControlPath ~/.ssh/socket-%r@%h:%p +Host apu-serve + HostName apu-serve + Port 22 + User dave + ServerAliveInterval 120 + Compression yes + IdentityFile ~/.ssh/id_ed25519 + IdentitiesOnly yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + +Host dvzrv + HostName dvzrv + Port 22 + User dave + ServerAliveInterval 120 + Compression yes + IdentityFile ~/.ssh/id_ed25519 + IdentitiesOnly yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + Host pitheunlord HostName pitheunlord Port 22 @@ -79,7 +112,7 @@ Host gpitheunlord Host gdvzrv Hostname dvzrv Port 22 - user dave + User dave ForwardAgent yes IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes @@ -88,12 +121,12 @@ Host gdvzrv ForwardX11Trusted yes ControlMaster auto ControlPath ~/.ssh/socket-%r@%h:%p - ProxyCommand ssh sleepmap.de -W %h:%p + ProxyCommand ssh dave@sleepmap.de -W %h:%p Host gtrvlr Hostname trvlr Port 22 - user dave + User dave ForwardAgent yes IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes @@ -107,7 +140,7 @@ Host gtrvlr Host gpitheunlord Hostname pitheunlord Port 22 - user dave + User dave ForwardAgent yes IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes @@ -136,7 +169,7 @@ Host bicrophone Host marx Hostname marx Port 22 - user dave + User dave ForwardAgent yes IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes @@ -150,7 +183,7 @@ Host marx Host aktpi Hostname aktpi Port 22 - user dave + User dave ForwardAgent yes IdentityFile ~/.ssh/id_ed25519 IdentitiesOnly yes |