diff options
author | kn@openbsd.org <kn@openbsd.org> | 2019-08-16 11:16:32 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-08-29 19:21:42 +1000 |
commit | dc2ca588144f088a54febebfde3414568dc73d5f (patch) | |
tree | dc80779ae1927630fca5d540fbe7d0e5d1c6c53a /ssh_config.5 | |
parent | c4736f39e66729ce2bf5b06ee6b391e092b48f47 (diff) |
upstream: Call comma-separated lists as such to clarify semantics
Options such as Ciphers take values that may be a list of ciphers; the
complete list, not indiviual elements, may be prefixed with a dash or plus
character to remove from or append to the default list respectively.
Users might read the current text as if each elment took an optional prefix,
so tweak the wording from "values" to "list" to prevent such ambiguity for
all options supporting this semantics (those that provide a list of
available elements via "ssh -Q ...").
Input and OK jmc
OpenBSD-Commit-ID: 4fdd175b0e5f5cb10ab3f26ccc38a93bb6515d57
Diffstat (limited to 'ssh_config.5')
-rw-r--r-- | ssh_config.5 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ssh_config.5 b/ssh_config.5 index 53cb5abfe..14d57d77d 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -33,8 +33,8 @@ | |||
33 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 33 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
34 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 34 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
35 | .\" | 35 | .\" |
36 | .\" $OpenBSD: ssh_config.5,v 1.298 2019/08/09 04:24:03 dtucker Exp $ | 36 | .\" $OpenBSD: ssh_config.5,v 1.299 2019/08/16 11:16:32 kn Exp $ |
37 | .Dd $Mdocdate: August 9 2019 $ | 37 | .Dd $Mdocdate: August 16 2019 $ |
38 | .Dt SSH_CONFIG 5 | 38 | .Dt SSH_CONFIG 5 |
39 | .Os | 39 | .Os |
40 | .Sh NAME | 40 | .Sh NAME |
@@ -422,11 +422,11 @@ the check will not be executed. | |||
422 | .It Cm Ciphers | 422 | .It Cm Ciphers |
423 | Specifies the ciphers allowed and their order of preference. | 423 | Specifies the ciphers allowed and their order of preference. |
424 | Multiple ciphers must be comma-separated. | 424 | Multiple ciphers must be comma-separated. |
425 | If the specified value begins with a | 425 | If the specified list begins with a |
426 | .Sq + | 426 | .Sq + |
427 | character, then the specified ciphers will be appended to the default set | 427 | character, then the specified ciphers will be appended to the default set |
428 | instead of replacing them. | 428 | instead of replacing them. |
429 | If the specified value begins with a | 429 | If the specified list begins with a |
430 | .Sq - | 430 | .Sq - |
431 | character, then the specified ciphers (including wildcards) will be removed | 431 | character, then the specified ciphers (including wildcards) will be removed |
432 | from the default set instead of replacing them. | 432 | from the default set instead of replacing them. |
@@ -1043,11 +1043,11 @@ and | |||
1043 | .It Cm KexAlgorithms | 1043 | .It Cm KexAlgorithms |
1044 | Specifies the available KEX (Key Exchange) algorithms. | 1044 | Specifies the available KEX (Key Exchange) algorithms. |
1045 | Multiple algorithms must be comma-separated. | 1045 | Multiple algorithms must be comma-separated. |
1046 | Alternately if the specified value begins with a | 1046 | If the specified list begins with a |
1047 | .Sq + | 1047 | .Sq + |
1048 | character, then the specified methods will be appended to the default set | 1048 | character, then the specified methods will be appended to the default set |
1049 | instead of replacing them. | 1049 | instead of replacing them. |
1050 | If the specified value begins with a | 1050 | If the specified list begins with a |
1051 | .Sq - | 1051 | .Sq - |
1052 | character, then the specified methods (including wildcards) will be removed | 1052 | character, then the specified methods (including wildcards) will be removed |
1053 | from the default set instead of replacing them. | 1053 | from the default set instead of replacing them. |
@@ -1124,11 +1124,11 @@ Specifies the MAC (message authentication code) algorithms | |||
1124 | in order of preference. | 1124 | in order of preference. |
1125 | The MAC algorithm is used for data integrity protection. | 1125 | The MAC algorithm is used for data integrity protection. |
1126 | Multiple algorithms must be comma-separated. | 1126 | Multiple algorithms must be comma-separated. |
1127 | If the specified value begins with a | 1127 | If the specified list begins with a |
1128 | .Sq + | 1128 | .Sq + |
1129 | character, then the specified algorithms will be appended to the default set | 1129 | character, then the specified algorithms will be appended to the default set |
1130 | instead of replacing them. | 1130 | instead of replacing them. |
1131 | If the specified value begins with a | 1131 | If the specified list begins with a |
1132 | .Sq - | 1132 | .Sq - |
1133 | character, then the specified algorithms (including wildcards) will be removed | 1133 | character, then the specified algorithms (including wildcards) will be removed |
1134 | from the default set instead of replacing them. | 1134 | from the default set instead of replacing them. |
@@ -1281,11 +1281,11 @@ The default is | |||
1281 | .It Cm PubkeyAcceptedKeyTypes | 1281 | .It Cm PubkeyAcceptedKeyTypes |
1282 | Specifies the key types that will be used for public key authentication | 1282 | Specifies the key types that will be used for public key authentication |
1283 | as a comma-separated list of patterns. | 1283 | as a comma-separated list of patterns. |
1284 | Alternately if the specified value begins with a | 1284 | If the specified list begins with a |
1285 | .Sq + | 1285 | .Sq + |
1286 | character, then the key types after it will be appended to the default | 1286 | character, then the key types after it will be appended to the default |
1287 | instead of replacing it. | 1287 | instead of replacing it. |
1288 | If the specified value begins with a | 1288 | If the specified list begins with a |
1289 | .Sq - | 1289 | .Sq - |
1290 | character, then the specified key types (including wildcards) will be removed | 1290 | character, then the specified key types (including wildcards) will be removed |
1291 | from the default set instead of replacing them. | 1291 | from the default set instead of replacing them. |