diff options
author | djm@openbsd.org <djm@openbsd.org> | 2021-08-13 01:59:25 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-08-13 02:01:15 +0200 |
commit | dcce2a2bcf007bf817a2fb0dce3db83fa9201e92 (patch) | |
tree | 13257d82aa4d1e5cd175743f941085ac849e4088 /ssh_config.5 | |
parent | upstream: In the editline(3) branch of the sftp(1) event loop, (diff) | |
download | openssh-dcce2a2bcf007bf817a2fb0dce3db83fa9201e92.tar.xz openssh-dcce2a2bcf007bf817a2fb0dce3db83fa9201e92.zip |
upstream: mention that CASignatureAlgorithms accepts +/- similarly to
the other algorithm list directives; ok jmc bz#3335
OpenBSD-Commit-ID: 0d46b53995817052c78e2dce9dbd133963b073d9
Diffstat (limited to 'ssh_config.5')
-rw-r--r-- | ssh_config.5 | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/ssh_config.5 b/ssh_config.5 index 199fd6088..cd0eea867 100644 --- a/ssh_config.5 +++ b/ssh_config.5 @@ -33,8 +33,8 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: ssh_config.5,v 1.361 2021/08/06 05:04:42 dtucker Exp $ -.Dd $Mdocdate: August 6 2021 $ +.\" $OpenBSD: ssh_config.5,v 1.362 2021/08/12 23:59:25 djm Exp $ +.Dd $Mdocdate: August 12 2021 $ .Dt SSH_CONFIG 5 .Os .Sh NAME @@ -377,11 +377,22 @@ Specifies which algorithms are allowed for signing of certificates by certificate authorities (CAs). The default is: .Bd -literal -offset indent -ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, -sk-ssh-ed25519@openssh.com,sk-ecdsa-sha2-nistp256@openssh.com, +ssh-ed25519,ecdsa-sha2-nistp256, +ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, +sk-ssh-ed25519@openssh.com, +sk-ecdsa-sha2-nistp256@openssh.com, rsa-sha2-512,rsa-sha2-256 .Ed .Pp +If the specified list begins with a +.Sq + +character, then the specified algorithms will be appended to the default set +instead of replacing them. +If the specified list begins with a +.Sq - +character, then the specified algorithms (including wildcards) will be removed +from the default set instead of replacing them. +.Pp .Xr ssh 1 will not accept host certificates signed using algorithms other than those specified. |