mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-01 00:54:51 +01:00
21 lines
955 B
Plaintext
21 lines
955 B
Plaintext
|
# Add the following to ~/.ssh/config
|
||
|
# Include ~/.dotfiles/ssh/settings
|
||
|
|
||
|
host *
|
||
|
IdentityFile ~/.ssh/id_ed25519
|
||
|
UseKeychain yes
|
||
|
AddKeysToAgent yes
|
||
|
PubkeyAuthentication yes
|
||
|
PasswordAuthentication yes
|
||
|
ServerAliveInterval 5
|
||
|
ServerAliveCountMax 3
|
||
|
ChallengeResponseAuthentication no
|
||
|
ForwardX11 no
|
||
|
HashKnownHosts yes
|
||
|
Compression yes
|
||
|
SendEnv LANG LC_*
|
||
|
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
|
||
|
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
|
||
|
#MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-ripemd160-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,umac-128@openssh.com
|