summaryrefslogtreecommitdiff
path: root/ssh_config.5
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-01-01 17:15:23 +0000
committerColin Watson <cjwatson@debian.org>2010-01-01 17:15:23 +0000
commit99b402ea4c8457b0a3cafff37f5b3410a8dc6476 (patch)
tree1d24ce54c9981ea8cbb4c5a9309964a0e4c4b320 /ssh_config.5
parent87552344215a38d3a2b0d4d63dc151e05978bbe1 (diff)
parent54af7a4ae8d455791a631bdfaade4b64436ae16a (diff)
import openssh-5.2p1-gsskex-all-20090726.patch
Diffstat (limited to 'ssh_config.5')
-rw-r--r--ssh_config.548
1 files changed, 34 insertions, 14 deletions
diff --git a/ssh_config.5 b/ssh_config.5
index 15eecb6ff..024491b90 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -34,8 +34,8 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: ssh_config.5,v 1.111 2008/06/26 11:46:31 grunk Exp $ 37.\" $OpenBSD: ssh_config.5,v 1.119 2009/02/22 23:50:57 djm Exp $
38.Dd $Mdocdate: June 26 2008 $ 38.Dd $Mdocdate: February 22 2009 $
39.Dt SSH_CONFIG 5 39.Dt SSH_CONFIG 5
40.Os 40.Os
41.Sh NAME 41.Sh NAME
@@ -103,7 +103,7 @@ Restricts the following declarations (up to the next
103.Cm Host 103.Cm Host
104keyword) to be only for those hosts that match one of the patterns 104keyword) to be only for those hosts that match one of the patterns
105given after the keyword. 105given after the keyword.
106If more than one pattern is provided, they should be separated by whitepsace. 106If more than one pattern is provided, they should be separated by whitespace.
107A single 107A single
108.Ql * 108.Ql *
109as a pattern can be used to provide global 109as a pattern can be used to provide global
@@ -204,9 +204,9 @@ and
204.Dq cast128-cbc . 204.Dq cast128-cbc .
205The default is: 205The default is:
206.Bd -literal -offset 3n 206.Bd -literal -offset 3n
207aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128, 207aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,
208arcfour256,arcfour,aes192-cbc,aes256-cbc,aes128-ctr, 208aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,
209aes192-ctr,aes256-ctr 209aes256-cbc,arcfour
210.Ed 210.Ed
211.It Cm ClearAllForwardings 211.It Cm ClearAllForwardings
212Specifies that all local, remote, and dynamic port forwardings 212Specifies that all local, remote, and dynamic port forwardings
@@ -484,18 +484,28 @@ GSSAPI key exchange the server need not have a host key.
484The default is 484The default is
485.Dq no . 485.Dq no .
486Note that this option applies to protocol version 2 only. 486Note that this option applies to protocol version 2 only.
487.It Cm GSSAPIClientIdentity
488If set, specifies the GSSAPI client identity that ssh should use when
489connecting to the server. The default is unset, which means that the default
490identity will be used.
487.It Cm GSSAPIDelegateCredentials 491.It Cm GSSAPIDelegateCredentials
488Forward (delegate) credentials to the server. 492Forward (delegate) credentials to the server.
489The default is 493The default is
490.Dq no . 494.Dq no .
491Note that this option applies to protocol version 2 only. 495Note that this option applies to protocol version 2 connections using GSSAPI.
496.It Cm GSSAPIRenewalForcesRekey
497If set to
498.Dq yes
499then renewal of the client's GSSAPI credentials will force the rekeying of the
500ssh connection. With a compatible server, this can delegate the renewed
501credentials to a session on the server.
502The default is
503.Dq no .
492.It Cm GSSAPITrustDns 504.It Cm GSSAPITrustDns
493Set to 505Set to
494.Dq yes 506.Dq yes to indicate that the DNS is trusted to securely canonicalize
495to indicate that the DNS is trusted to securely canonicalize
496the name of the host being connected to. If 507the name of the host being connected to. If
497.Dq no , 508.Dq no, the hostname entered on the
498the hostname entered on the
499command line will be passed untouched to the GSSAPI library. 509command line will be passed untouched to the GSSAPI library.
500The default is 510The default is
501.Dq no . 511.Dq no .
@@ -828,7 +838,15 @@ and
828.Ar host Ns / Ns Ar hostport . 838.Ar host Ns / Ns Ar hostport .
829Multiple forwardings may be specified, and additional 839Multiple forwardings may be specified, and additional
830forwardings can be given on the command line. 840forwardings can be given on the command line.
831Only the superuser can forward privileged ports. 841Privileged ports can be forwarded only when
842logging in as root on the remote machine.
843.Pp
844If the
845.Ar port
846argument is
847.Ql 0 ,
848the listen port will be dynamically allocated on the server and reported
849to the client at run time.
832.Pp 850.Pp
833If the 851If the
834.Ar bind_address 852.Ar bind_address
@@ -1081,10 +1099,12 @@ in
1081If this flag is set to 1099If this flag is set to
1082.Dq yes , 1100.Dq yes ,
1083an ASCII art representation of the remote host key fingerprint is 1101an ASCII art representation of the remote host key fingerprint is
1084printed additionally to the hex fingerprint string. 1102printed in addition to the hex fingerprint string at login and
1103for unknown host keys.
1085If this flag is set to 1104If this flag is set to
1086.Dq no , 1105.Dq no ,
1087only the hex fingerprint string will be printed. 1106no fingerprint strings are printed at login and
1107only the hex fingerprint string will be printed for unknown host keys.
1088The default is 1108The default is
1089.Dq no . 1109.Dq no .
1090.It Cm XAuthLocation 1110.It Cm XAuthLocation