Bug 3357 - Mention re-enabling of RSA-CERT
Summary: Mention re-enabling of RSA-CERT
Status: NEW
Alias: None
Product: Portable OpenSSH
Classification: Unclassified
Component: Documentation (show other bugs)
Version: 8.8p1
Hardware: All All
: P5 enhancement
Assignee: Assigned to nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-10-29 01:58 AEDT by Thore Bödecker
Modified: 2021-10-29 01:58 AEDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Thore Bödecker 2021-10-29 01:58:01 AEDT
Hi,

the changelog for 8.8 gives a detailed hint on how to re-enable RSA for some older  host with respect to keypair auth but does not mention certificate auth anywhere.

For ssh certificates using RSA-CERT, the "workaround" to re-enable RSA looks slighty different, the required algorith is "ssh-rsa-cert-v01@openssh.com" and having only "ssh-rsa" does not suffice.

To completely enable both for an older host, the config snippet looks like this:

    Host old-host
        HostkeyAlgorithms +ssh-rsa,ssh-rsa-cert-v01@openssh.com
        PubkeyAcceptedAlgorithms +ssh-rsa,ssh-rsa-cert-v01@openssh.com

Would be great if the manpages / documentation could give a more direct statement in this regard for anyone using RSA-CERTs.


Thanks to "BasketCase" on irc://libera#openssh for quickly pointing me in the right direction.


Cheers.