Ajout : srv/ateliers/etc/ssh/
[lhc/admin.git] / srv / ateliers / etc / ssh / ssh_config
1 # DOC: https://stribika.github.io/2015/01/04/secure-secure-shell.html
2 Host *
3 #Compression yes
4 #CompressionLevel 9
5 Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
6 ControlMaster auto
7 ControlPath ~/.ssh/%h-%p-%r.sock
8 GSSAPIAuthentication no
9 GSSAPIDelegateCredentials no
10 HashKnownHosts yes
11 IdentityFile ~/.ssh/id_dsa
12 IdentityFile ~/.ssh/id_rsa
13 IdentityFile ~/.ssh/identity
14 KexAlgorithms curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256
15 MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-ripemd160-etm@openssh.com,umac-128-etm@openssh.com
16 SendEnv LANG LC_*
17 StrictHostKeyChecking ask
18 UserKnownHostsFile ~/.ssh/known_hosts
19
20 # vim: ft=sshconfig