HostCertificate /etc/ssh/ssh_host_ed25519_key-cert.pubTrustedUserCAKeys /etc/ssh/user_ca.key.pubRevokedKeys /etc/ssh/revocation_list.krl
# diff -u old-openssh.inc new-openssh.inc--- old-openssh.inc 2023-12-15 09:36:28.527924000 -0700+++ new-openssh.inc 2023-12-15 09:35:44.361945000 -0700@@ -125,8 +125,8 @@ $keys = array( /* .pub files are implied */- 'rsa' => 'ssh_host_rsa_key',- 'ecdsa' => 'ssh_host_ecdsa_key',+ /* 'rsa' => 'ssh_host_rsa_key', */+ /* 'ecdsa' => 'ssh_host_ecdsa_key', */ 'ed25519' => 'ssh_host_ed25519_key', ); @@ -173,6 +173,9 @@ $sshconf .= "X11Forwarding no\n"; $sshconf .= "PubkeyAuthentication yes\n"; $sshconf .= "Subsystem sftp internal-sftp\n";+ $sshconf .= "HostCertificate /conf/sshd/ssh_host_ed25519_key-cert.pub\n";+ $sshconf .= "TrustedUserCAKeys /conf/sshd/Massive_Networks_user_ca.key.pub\n";+ $sshconf .= "RevokedKeys /conf/sshd/revocation_list.krl\n"; $sshconf .= "AllowGroups wheel"; if (!empty($sshcfg['group'][0])) { $sshconf .= " {$sshcfg['group'][0]}";