Harden SSH config
This commit is contained in:
parent
ace2aad598
commit
cd47e773dd
|
@ -11,9 +11,10 @@
|
||||||
# We have to do this as text to gaurantee it's part of the last Host * block
|
# We have to do this as text to gaurantee it's part of the last Host * block
|
||||||
userKnownHostsFile = "~/.ssh/known_hosts ${./extra_known_hosts}";
|
userKnownHostsFile = "~/.ssh/known_hosts ${./extra_known_hosts}";
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
KexAlgorithms sntrup761x25519-sha512@openssh.com,curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256
|
KexAlgorithms sntrup761x25519-sha512@openssh.com,curve25519-sha256,curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256
|
||||||
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
|
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com
|
||||||
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
|
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
|
||||||
|
HostKeyAlgorithms ssh-ed25519,ssh-ed25519-cert-v01@openssh.com,sk-ssh-ed25519@openssh.com,sk-ssh-ed25519-cert-v01@openssh.com,rsa-sha2-256,rsa-sha2-256-cert-v01@openssh.com,rsa-sha2-512,rsa-sha2-512-cert-v01@openssh.com
|
||||||
VerifyHostKeyDNS ask
|
VerifyHostKeyDNS ask
|
||||||
VisualHostKey yes
|
VisualHostKey yes
|
||||||
UpdateHostKeys ask
|
UpdateHostKeys ask
|
||||||
|
|
|
@ -6,6 +6,17 @@
|
||||||
permitRootLogin = "no";
|
permitRootLogin = "no";
|
||||||
passwordAuthentication = false;
|
passwordAuthentication = false;
|
||||||
kbdInteractiveAuthentication = false;
|
kbdInteractiveAuthentication = false;
|
||||||
|
|
||||||
|
kexAlgorithms = [
|
||||||
|
"sntrup761x25519-sha512@openssh.com"
|
||||||
|
"curve25519-sha256"
|
||||||
|
"curve25519-sha256@libssh.org"
|
||||||
|
];
|
||||||
|
macs = [
|
||||||
|
"hmac-sha2-512-etm@openssh.com"
|
||||||
|
"hmac-sha2-256-etm@openssh.com"
|
||||||
|
"umac-128-etm@openssh.com"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
# users.users.artemis.openssh.authorizedKeys.keys set in private
|
# users.users.artemis.openssh.authorizedKeys.keys set in private
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue