summaryrefslogtreecommitdiff
path: root/ssh_config.0
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2016-08-06 10:49:58 +0100
committerColin Watson <cjwatson@debian.org>2016-08-06 10:49:58 +0100
commita8ed8d256b2e2c05b0c15565a7938028c5192277 (patch)
tree87abbdc914a38b43e4e5bb9581ad1f46eabbf88e /ssh_config.0
parentf0329aac23c61e1a5197d6d57349a63f459bccb0 (diff)
parent99522ba7ec6963a05c04a156bf20e3ba3605987c (diff)
Import openssh_7.3p1.orig.tar.gz
Diffstat (limited to 'ssh_config.0')
-rw-r--r--ssh_config.040
1 files changed, 39 insertions, 1 deletions
diff --git a/ssh_config.0 b/ssh_config.0
index b823c021c..8733281f5 100644
--- a/ssh_config.0
+++ b/ssh_config.0
@@ -532,6 +532,22 @@ DESCRIPTION
532 situations where ssh-agent offers many different identities. The 532 situations where ssh-agent offers many different identities. The
533 default is M-bM-^@M-^\noM-bM-^@M-^]. 533 default is M-bM-^@M-^\noM-bM-^@M-^].
534 534
535 IdentityAgent
536 Specifies the UNIX-domain socket used to communicate with the
537 authentication agent.
538
539 This option overrides the M-bM-^@M-^\SSH_AUTH_SOCKM-bM-^@M-^] environment variable
540 and can be used to select a specific agent. Setting the socket
541 name to M-bM-^@M-^\noneM-bM-^@M-^] disables the use of an authentication agent. If
542 the string M-bM-^@M-^\SSH_AUTH_SOCKM-bM-^@M-^] is specified, the location of the
543 socket will be read from the SSH_AUTH_SOCK environment variable.
544
545 The socket name may use the tilde syntax to refer to a user's
546 home directory or one of the following escape characters: M-bM-^@M-^X%dM-bM-^@M-^Y
547 (local user's home directory), M-bM-^@M-^X%uM-bM-^@M-^Y (local user name), M-bM-^@M-^X%lM-bM-^@M-^Y
548 (local host name), M-bM-^@M-^X%hM-bM-^@M-^Y (remote host name) or M-bM-^@M-^X%rM-bM-^@M-^Y (remote user
549 name).
550
535 IdentityFile 551 IdentityFile
536 Specifies a file from which the user's DSA, ECDSA, Ed25519 or RSA 552 Specifies a file from which the user's DSA, ECDSA, Ed25519 or RSA
537 authentication identity is read. The default is ~/.ssh/identity 553 authentication identity is read. The default is ~/.ssh/identity
@@ -569,6 +585,16 @@ DESCRIPTION
569 listed early in the configuration file as it will not be applied 585 listed early in the configuration file as it will not be applied
570 to unknown options that appear before it. 586 to unknown options that appear before it.
571 587
588 Include
589 Include the specified configuration file(s). Multiple pathnames
590 may be specified and each pathname may contain glob(3) wildcards
591 and, for user configurations, shell-like M-bM-^@M-^\~M-bM-^@M-^] references to user
592 home directories. Files without absolute paths are assumed to be
593 in ~/.ssh if included in a user configuration file or /etc/ssh if
594 included from the system configuration file. Include directive
595 may appear inside a Match or Host block to perform conditional
596 inclusion.
597
572 IPQoS Specifies the IPv4 type-of-service or DSCP class for connections. 598 IPQoS Specifies the IPv4 type-of-service or DSCP class for connections.
573 Accepted values are M-bM-^@M-^\af11M-bM-^@M-^], M-bM-^@M-^\af12M-bM-^@M-^], M-bM-^@M-^\af13M-bM-^@M-^], M-bM-^@M-^\af21M-bM-^@M-^], M-bM-^@M-^\af22M-bM-^@M-^], 599 Accepted values are M-bM-^@M-^\af11M-bM-^@M-^], M-bM-^@M-^\af12M-bM-^@M-^], M-bM-^@M-^\af13M-bM-^@M-^], M-bM-^@M-^\af21M-bM-^@M-^], M-bM-^@M-^\af22M-bM-^@M-^],
574 M-bM-^@M-^\af23M-bM-^@M-^], M-bM-^@M-^\af31M-bM-^@M-^], M-bM-^@M-^\af32M-bM-^@M-^], M-bM-^@M-^\af33M-bM-^@M-^], M-bM-^@M-^\af41M-bM-^@M-^], M-bM-^@M-^\af42M-bM-^@M-^], M-bM-^@M-^\af43M-bM-^@M-^], M-bM-^@M-^\cs0M-bM-^@M-^], 600 M-bM-^@M-^\af23M-bM-^@M-^], M-bM-^@M-^\af31M-bM-^@M-^], M-bM-^@M-^\af32M-bM-^@M-^], M-bM-^@M-^\af33M-bM-^@M-^], M-bM-^@M-^\af41M-bM-^@M-^], M-bM-^@M-^\af42M-bM-^@M-^], M-bM-^@M-^\af43M-bM-^@M-^], M-bM-^@M-^\cs0M-bM-^@M-^],
@@ -746,6 +772,18 @@ DESCRIPTION
746 772
747 ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p 773 ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p
748 774
775 ProxyJump
776 Specifies one or more jump proxies as [user@]host[:port].
777 Multiple proxies may be separated by comma characters and will be
778 visited sequentially. Setting this option will cause ssh(1) to
779 connect to the target host by first making a ssh(1) connection to
780 the specified ProxyJump host and then establishing a TCP
781 forwarding to the ultimate target from there.
782
783 Note that this option will compete with the ProxyCommand option -
784 whichever is specified first will prevent later instances of the
785 other from taking effect.
786
749 ProxyUseFdpass 787 ProxyUseFdpass
750 Specifies that ProxyCommand will pass a connected file descriptor 788 Specifies that ProxyCommand will pass a connected file descriptor
751 back to ssh(1) instead of continuing to execute and pass data. 789 back to ssh(1) instead of continuing to execute and pass data.
@@ -1049,4 +1087,4 @@ AUTHORS
1049 created OpenSSH. Markus Friedl contributed the support for SSH protocol 1087 created OpenSSH. Markus Friedl contributed the support for SSH protocol
1050 versions 1.5 and 2.0. 1088 versions 1.5 and 2.0.
1051 1089
1052OpenBSD 5.9 February 20, 2016 OpenBSD 5.9 1090OpenBSD 6.0 July 22, 2016 OpenBSD 6.0