diff options
author | David Runge <dave@sleepmap.de> | 2018-12-02 11:55:47 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2018-12-02 11:55:47 +0100 |
commit | b04ae4151c89f2e72cbfddfa4e55d55573027642 (patch) | |
tree | fefdea3ba2da56ec68df4ae77f2a5c2fce92eb49 /.ssh/config | |
parent | 95c2b4b24a41a7e72b86aa44e2bfb96d450f85d5 (diff) | |
parent | 720930e87fbb977393740107f08129d867a9cf04 (diff) | |
download | dotfiles-b04ae4151c89f2e72cbfddfa4e55d55573027642.tar.gz dotfiles-b04ae4151c89f2e72cbfddfa4e55d55573027642.tar.bz2 dotfiles-b04ae4151c89f2e72cbfddfa4e55d55573027642.tar.xz dotfiles-b04ae4151c89f2e72cbfddfa4e55d55573027642.zip |
Merge branch 'master' of sleepmap.de:config/dotfiles
* 'master' of sleepmap.de:config/dotfiles:
.ssh/config: Adding hosts apu-access, apu-serve, dvzrv. Fixing User name declaration. Fixing too unspecific ProxyCommand.
.zsh.before/path.zsh: Adding pyenv python versions to path if available.
.zsh.after/export.zsh: Expanding check for and setting of locale settings to very special whackOS settings. Exporting pipenv settings to expose them globally. Exporting TTY to GPG_TTY instead of calling tty everytime.
.gitignore: Adding whackOS specific ignores.
Diffstat (limited to '.ssh/config')
-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 |