From f7a644d9bff071dd7fcd5551574b41df1460c38b Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 6 Jun 2024 16:34:10 +0200 Subject: [PATCH] mxqi: Allow DSA keys We still have users with old DSA keys. Allow it for now. --- mxqi/mxqi | 1 + 1 file changed, 1 insertion(+) diff --git a/mxqi/mxqi b/mxqi/mxqi index 8524415..11017fd 100755 --- a/mxqi/mxqi +++ b/mxqi/mxqi @@ -183,6 +183,7 @@ sub server { print $out "X11Forwarding yes\n"; print $out "AddressFamily inet\n"; print $out "HostKey $tmpdir/ssh_host_ed25519_key\n"; + print $out "PubkeyAcceptedKeyTypes=+ssh-dss\n"; # still some old users with DSA keys } my $data_socket = $listen_socket->accept();