summaryrefslogtreecommitdiff
path: root/ssh_config.5
diff options
context:
space:
mode:
Diffstat (limited to 'ssh_config.5')
-rw-r--r--ssh_config.521
1 files changed, 19 insertions, 2 deletions
diff --git a/ssh_config.5 b/ssh_config.5
index 5b99921b4..86ada128e 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -247,8 +247,12 @@ Valid arguments are
247If set to 247If set to
248.Cm yes , 248.Cm yes ,
249passphrase/password querying will be disabled. 249passphrase/password querying will be disabled.
250In addition, the
251.Cm ServerAliveInterval
252option will be set to 300 seconds by default (Debian-specific).
250This option is useful in scripts and other batch jobs where no user 253This option is useful in scripts and other batch jobs where no user
251is present to supply the password. 254is present to supply the password,
255and where it is desirable to detect a broken network swiftly.
252The argument must be 256The argument must be
253.Cm yes 257.Cm yes
254or 258or
@@ -1463,7 +1467,14 @@ from the server,
1463will send a message through the encrypted 1467will send a message through the encrypted
1464channel to request a response from the server. 1468channel to request a response from the server.
1465The default 1469The default
1466is 0, indicating that these messages will not be sent to the server. 1470is 0, indicating that these messages will not be sent to the server,
1471or 300 if the
1472.Cm BatchMode
1473option is set (Debian-specific).
1474.Cm ProtocolKeepAlives
1475and
1476.Cm SetupTimeOut
1477are Debian-specific compatibility aliases for this option.
1467.It Cm SetEnv 1478.It Cm SetEnv
1468Directly specify one or more environment variables and their contents to 1479Directly specify one or more environment variables and their contents to
1469be sent to the server. 1480be sent to the server.
@@ -1543,6 +1554,12 @@ Specifies whether the system should send TCP keepalive messages to the
1543other side. 1554other side.
1544If they are sent, death of the connection or crash of one 1555If they are sent, death of the connection or crash of one
1545of the machines will be properly noticed. 1556of the machines will be properly noticed.
1557This option only uses TCP keepalives (as opposed to using ssh level
1558keepalives), so takes a long time to notice when the connection dies.
1559As such, you probably want
1560the
1561.Cm ServerAliveInterval
1562option as well.
1546However, this means that 1563However, this means that
1547connections will die if the route is down temporarily, and some people 1564connections will die if the route is down temporarily, and some people
1548find it annoying. 1565find it annoying.