diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-09-30 11:31:28 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-12-02 18:32:38 -0500 |
commit | 895996062d09cf18e495448c185d5746c5d02db6 (patch) | |
tree | 9c46031ddd90a0a00d9930b4bd451736fb07da1f /sites/docs | |
parent | e5067823f4e710b93ed4e4012adce2adf2bf09f7 (diff) |
Alphabetize supported-ssh_config-keywords list
Diffstat (limited to 'sites/docs')
-rw-r--r-- | sites/docs/api/config.rst | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sites/docs/api/config.rst b/sites/docs/api/config.rst index 976f0fc2..b02c7505 100644 --- a/sites/docs/api/config.rst +++ b/sites/docs/api/config.rst @@ -38,6 +38,16 @@ file format, and the intended meaning of the keywords and values; or check the documentation for your Paramiko-using library of choice (e.g. `Fabric`_) to see what it honors on its end. +- ``AddressFamily``: used when looking up the local hostname for purposes of + expanding the ``%l``/``%L`` :ref:`tokens <TOKENS>`. + + .. note:: + As with the rest of these keywords, it does **not** apply to actual SSH + connections (as Paramiko's client classes do not load configs for you). + + In fact, OpenSSH itself does not use this setting the way Paramiko does + (its lookup for ``%l`` does not appear to honor ``AddressFamily``). + - ``CanonicalDomains``: sets the domains used for hostname canonicalization. - ``CanonicalizeFallbackLocal``: set to ``no`` to enforce that all looked-up names must resolve under one of the ``CanonicalDomains`` - any names which @@ -56,16 +66,6 @@ what it honors on its end. - ``CanonicalizeMaxDots``: controls how many period characters may appear in a target hostname before canonicalization is disabled. -- ``AddressFamily``: used when looking up the local hostname for purposes of - expanding the ``%l``/``%L`` :ref:`tokens <TOKENS>`. - - .. note:: - As with the rest of these keywords, it does **not** apply to actual SSH - connections (as Paramiko's client classes do not load configs for you). - - In fact, OpenSSH itself does not use this setting the way Paramiko does - (its lookup for ``%l`` does not appear to honor ``AddressFamily``). - - ``Host``: exact matching, full and partial globbing (``*``), negation (``!``), multiple (whitespace-delimited) patterns per keyword. - ``HostName``: supplies potential values for ``%h`` :ref:`token expansions |