diff options
author | Colin Watson <cjwatson@debian.org> | 2016-08-06 10:49:59 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-08-07 12:18:58 +0100 |
commit | 477bb7636238c106f8cd7c868a8c0c5eabcfb3db (patch) | |
tree | 601176af2ecf358c36b766776a86845ad7a3cd6f /ssh_config.5 | |
parent | 747fac2de0d889183f67f6900194c0462c558544 (diff) | |
parent | 4c914ccd85bbf391c4dc61b85e3c178fef465e3f (diff) |
New upstream release (7.3p1).
Diffstat (limited to 'ssh_config.5')
-rw-r--r-- | ssh_config.5 | 77 |
1 files changed, 75 insertions, 2 deletions
diff --git a/ssh_config.5 b/ssh_config.5 index 51765c99e..c96725862 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.228 2016/02/20 23:01:46 sobrado Exp $ | 36 | .\" $OpenBSD: ssh_config.5,v 1.236 2016/07/22 07:00:46 djm Exp $ |
37 | .Dd $Mdocdate: February 20 2016 $ | 37 | .Dd $Mdocdate: July 22 2016 $ |
38 | .Dt SSH_CONFIG 5 | 38 | .Dt SSH_CONFIG 5 |
39 | .Os | 39 | .Os |
40 | .Sh NAME | 40 | .Sh NAME |
@@ -1008,6 +1008,36 @@ This option is intended for situations where ssh-agent | |||
1008 | offers many different identities. | 1008 | offers many different identities. |
1009 | The default is | 1009 | The default is |
1010 | .Dq no . | 1010 | .Dq no . |
1011 | .It Cm IdentityAgent | ||
1012 | Specifies the | ||
1013 | .Ux Ns -domain | ||
1014 | socket used to communicate with the authentication agent. | ||
1015 | .Pp | ||
1016 | This option overrides the | ||
1017 | .Dq SSH_AUTH_SOCK | ||
1018 | environment variable and can be used to select a specific agent. | ||
1019 | Setting the socket name to | ||
1020 | .Dq none | ||
1021 | disables the use of an authentication agent. | ||
1022 | If the string | ||
1023 | .Dq SSH_AUTH_SOCK | ||
1024 | is specified, the location of the socket will be read from the | ||
1025 | .Ev SSH_AUTH_SOCK | ||
1026 | environment variable. | ||
1027 | .Pp | ||
1028 | The socket name may use the tilde | ||
1029 | syntax to refer to a user's home directory or one of the following | ||
1030 | escape characters: | ||
1031 | .Ql %d | ||
1032 | (local user's home directory), | ||
1033 | .Ql %u | ||
1034 | (local user name), | ||
1035 | .Ql %l | ||
1036 | (local host name), | ||
1037 | .Ql %h | ||
1038 | (remote host name) or | ||
1039 | .Ql %r | ||
1040 | (remote user name). | ||
1011 | .It Cm IdentityFile | 1041 | .It Cm IdentityFile |
1012 | Specifies a file from which the user's DSA, ECDSA, Ed25519 or RSA authentication | 1042 | Specifies a file from which the user's DSA, ECDSA, Ed25519 or RSA authentication |
1013 | identity is read. | 1043 | identity is read. |
@@ -1075,6 +1105,25 @@ It is recommended that | |||
1075 | .Cm IgnoreUnknown | 1105 | .Cm IgnoreUnknown |
1076 | be listed early in the configuration file as it will not be applied | 1106 | be listed early in the configuration file as it will not be applied |
1077 | to unknown options that appear before it. | 1107 | to unknown options that appear before it. |
1108 | .It Cm Include | ||
1109 | Include the specified configuration file(s). | ||
1110 | Multiple pathnames may be specified and each pathname may contain | ||
1111 | .Xr glob 3 | ||
1112 | wildcards and, for user configurations, shell-like | ||
1113 | .Dq ~ | ||
1114 | references to user home directories. | ||
1115 | Files without absolute paths are assumed to be in | ||
1116 | .Pa ~/.ssh | ||
1117 | if included in a user configuration file or | ||
1118 | .Pa /etc/ssh | ||
1119 | if included from the system configuration file. | ||
1120 | .Cm Include | ||
1121 | directive may appear inside a | ||
1122 | .Cm Match | ||
1123 | or | ||
1124 | .Cm Host | ||
1125 | block | ||
1126 | to perform conditional inclusion. | ||
1078 | .It Cm IPQoS | 1127 | .It Cm IPQoS |
1079 | Specifies the IPv4 type-of-service or DSCP class for connections. | 1128 | Specifies the IPv4 type-of-service or DSCP class for connections. |
1080 | Accepted values are | 1129 | Accepted values are |
@@ -1365,6 +1414,30 @@ For example, the following directive would connect via an HTTP proxy at | |||
1365 | .Bd -literal -offset 3n | 1414 | .Bd -literal -offset 3n |
1366 | ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p | 1415 | ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p |
1367 | .Ed | 1416 | .Ed |
1417 | .It Cm ProxyJump | ||
1418 | Specifies one or more jump proxies as | ||
1419 | .Xo | ||
1420 | .Sm off | ||
1421 | .Op Ar user No @ | ||
1422 | .Ar host | ||
1423 | .Op : Ns Ar port | ||
1424 | .Sm on | ||
1425 | .Xc . | ||
1426 | Multiple proxies may be separated by comma characters and will be visited | ||
1427 | sequentially. | ||
1428 | Setting this option will cause | ||
1429 | .Xr ssh 1 | ||
1430 | to connect to the target host by first making a | ||
1431 | .Xr ssh 1 | ||
1432 | connection to the specified | ||
1433 | .Cm ProxyJump | ||
1434 | host and then establishing a | ||
1435 | TCP forwarding to the ultimate target from there. | ||
1436 | .Pp | ||
1437 | Note that this option will compete with the | ||
1438 | .Cm ProxyCommand | ||
1439 | option - whichever is specified first will prevent later instances of the | ||
1440 | other from taking effect. | ||
1368 | .It Cm ProxyUseFdpass | 1441 | .It Cm ProxyUseFdpass |
1369 | Specifies that | 1442 | Specifies that |
1370 | .Cm ProxyCommand | 1443 | .Cm ProxyCommand |