diff options
author | Ben Morrison <ben@gbmor.dev> | 2020-06-30 03:28:41 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2020-06-30 03:28:41 -0400 |
commit | ce810133bd0fca54f7201acaa38eac3932e3b174 (patch) | |
tree | e8dcbc37484662823021f523b0997dd9d8a796cf /.ssh | |
parent | 3e5a541d64ed094c245647edc86ad8a547e67cf4 (diff) | |
download | dogfiles-ce810133bd0fca54f7201acaa38eac3932e3b174.tar.gz |
host settings
Diffstat (limited to '.ssh')
-rw-r--r-- | .ssh/config | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/.ssh/config b/.ssh/config index 3a2862b..2ac9e78 100644 --- a/.ssh/config +++ b/.ssh/config @@ -1,11 +1,15 @@ Host gbmor HostName gbmor.dev User ben + IdentitiesOnly yes + IdentityFile ~/.ssh/id_rsa_yubikey.pub RemoteForward /run/user/1000/gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra Host institute inst HostName tilde.institute User gbmor + IdentitiesOnly yes + IdentityFile ~/.ssh/id_rsa_yubikey.pub RemoteForward /home/gbmor/.gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra Host crawl @@ -20,19 +24,23 @@ Host team Host git.sr.ht IdentitiesOnly yes IdentityFile ~/.ssh/id_rsa_yubikey.pub - MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com Host github.com IdentitiesOnly yes IdentityFile ~/.ssh/id_rsa_yubikey.pub - MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com Host tildegit.org IdentitiesOnly yes IdentityFile ~/.ssh/id_rsa_yubikey.pub - MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com + +Host pestilence + HostName 192.168.1.217 + IdentitiesOnly yes + IdentityFile ~/.ssh/id_rsa_yubikey.pub + RemoteForward /run/user/1000/gnupg/S.gpg-agent /run/user/1000/gnupg/S.gpg-agent.extra Host * + Compression no UseRoaming no HashKnownHosts yes VisualHostKey yes @@ -44,5 +52,6 @@ Host * ServerAliveCountMax 2 Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com + #MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com KexAlgorithms curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256 HostKeyAlgorithms ssh-ed25519-cert-v01@openssh.com,ssh-rsa-cert-v01@openssh.com,ssh-ed25519,ssh-rsa |