diff options
author | David Runge <dave@sleepmap.de> | 2020-09-12 17:39:08 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2020-09-12 17:39:08 +0200 |
commit | 5e82b6f3d0ec5038b7b36a88fa83fadeeb804a6b (patch) | |
tree | 866280ce4bd401b99bb07afa724257188d8a41ed | |
parent | 47b33a1f278f8d7c3b59b840dd357b93157312dd (diff) | |
download | dotfiles-5e82b6f3d0ec5038b7b36a88fa83fadeeb804a6b.tar.gz dotfiles-5e82b6f3d0ec5038b7b36a88fa83fadeeb804a6b.tar.bz2 dotfiles-5e82b6f3d0ec5038b7b36a88fa83fadeeb804a6b.tar.xz dotfiles-5e82b6f3d0ec5038b7b36a88fa83fadeeb804a6b.zip |
Add entry to unlock hmbx
.ssh/config:
Add entry to unlock hmbx remotely.
-rw-r--r-- | .ssh/config | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.ssh/config b/.ssh/config index 05d08f6..ba66256 100644 --- a/.ssh/config +++ b/.ssh/config @@ -95,6 +95,17 @@ Host dvzrv ServerAliveInterval 120 User dave +Host hmbx-unlock + Compression yes + ControlMaster auto + ControlPath ~/.ssh/socket-%r@%h:%p + Hostname hmbx + IdentitiesOnly yes + IdentityFile ~/.ssh/id_ed25519 + StrictHostkeyChecking no + Port 22 + User root + Host trvlr Compression yes ControlMaster auto @@ -215,8 +226,8 @@ Host caduceus.rescue Hostname caduceus IdentitiesOnly yes IdentityFile ~/.ssh/id_ed25519 - StrictHostKeyChecking no Port 22 + StrictHostKeyChecking no User root Host caduceus.unlock @@ -227,6 +238,7 @@ Host caduceus.unlock IdentitiesOnly yes IdentityFile ~/.ssh/id_ed25519 Port 22 + StrictHostKeyChecking no User root Host caduceus |