Allow legacy MACs and KexAlgorithms for CentOS VM
This commit is contained in:
parent
d4bb02a494
commit
bafbf5daba
|
@ -57,6 +57,20 @@
|
|||
services.openssh = {
|
||||
enable = true;
|
||||
permitRootLogin = "yes";
|
||||
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"
|
||||
"hmac-sha1"
|
||||
];
|
||||
kexAlgorithms = [
|
||||
"curve25519-sha256@libssh.org"
|
||||
"diffie-hellman-group-exchange-sha256"
|
||||
"diffie-hellman-group1-sha1"
|
||||
];
|
||||
};
|
||||
|
||||
# Create coace user
|
||||
|
|
Loading…
Reference in New Issue