diff options
| author | Christian Cleberg <[email protected]> | 2026-02-15 18:09:57 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-02-15 18:18:07 -0600 |
| commit | 590cb005999e9e9d497bf67aa40d6a7a78cc0f1f (patch) | |
| tree | 37390304688c33ff237aacfea1ac5722d4e25a03 /common/ssh | |
| parent | c3e1b1896ab156f6fa1529ebd630b065eff42efa (diff) | |
| download | dotfiles-590cb005999e9e9d497bf67aa40d6a7a78cc0f1f.tar.gz dotfiles-590cb005999e9e9d497bf67aa40d6a7a78cc0f1f.tar.bz2 dotfiles-590cb005999e9e9d497bf67aa40d6a7a78cc0f1f.zip | |
split files into common, linux, and macos directories
Diffstat (limited to 'common/ssh')
| -rw-r--r-- | common/ssh/config | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/common/ssh/config b/common/ssh/config new file mode 100644 index 0000000..5a66743 --- /dev/null +++ b/common/ssh/config @@ -0,0 +1,32 @@ +Host homelab + User cmc + HostName 192.168.0.97 + Port 22 +Host homelab-remote + User cmc + HostName 70.187.29.187 + Port 2169 +Host dell + User cmc + HostName 192.168.0.251 + Port 22 +Host * + #ControlMaster auto + #ControlPath ~/.ssh/master-%r@%h:%p + #ControlPersist 300 + AddressFamily inet + HashKnownHosts yes + VisualHostKey yes + PasswordAuthentication no + ChallengeResponseAuthentication no + StrictHostKeyChecking ask + VerifyHostKeyDNS yes + ForwardAgent no + ForwardX11 no + ForwardX11Trusted no + ServerAliveInterval 300 + ServerAliveCountMax 2 + Ciphers [email protected] + KexAlgorithms [email protected],diffie-hellman-group-exchange-sha256 + HostKeyAlgorithms rsa-sha2-512,rsa-sha2-256,ssh-ed25519 |
