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 16c79368a..54e143c93 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
@@ -1485,7 +1489,14 @@ from the server,
1485will send a message through the encrypted 1489will send a message through the encrypted
1486channel to request a response from the server. 1490channel to request a response from the server.
1487The default 1491The default
1488is 0, indicating that these messages will not be sent to the server. 1492is 0, indicating that these messages will not be sent to the server,
1493or 300 if the
1494.Cm BatchMode
1495option is set (Debian-specific).
1496.Cm ProtocolKeepAlives
1497and
1498.Cm SetupTimeOut
1499are Debian-specific compatibility aliases for this option.
1489.It Cm SetEnv 1500.It Cm SetEnv
1490Directly specify one or more environment variables and their contents to 1501Directly specify one or more environment variables and their contents to
1491be sent to the server. 1502be sent to the server.
@@ -1565,6 +1576,12 @@ Specifies whether the system should send TCP keepalive messages to the
1565other side. 1576other side.
1566If they are sent, death of the connection or crash of one 1577If they are sent, death of the connection or crash of one
1567of the machines will be properly noticed. 1578of the machines will be properly noticed.
1579This option only uses TCP keepalives (as opposed to using ssh level
1580keepalives), so takes a long time to notice when the connection dies.
1581As such, you probably want
1582the
1583.Cm ServerAliveInterval
1584option as well.
1568However, this means that 1585However, this means that
1569connections will die if the route is down temporarily, and some people 1586connections will die if the route is down temporarily, and some people
1570find it annoying. 1587find it annoying.