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 e60a5b4ea..67e0dff9a 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -233,8 +233,12 @@ Valid arguments are
233If set to 233If set to
234.Dq yes , 234.Dq yes ,
235passphrase/password querying will be disabled. 235passphrase/password querying will be disabled.
236In addition, the
237.Cm ServerAliveInterval
238option will be set to 300 seconds by default.
236This option is useful in scripts and other batch jobs where no user 239This option is useful in scripts and other batch jobs where no user
237is present to supply the password. 240is present to supply the password,
241and where it is desirable to detect a broken network swiftly.
238The argument must be 242The argument must be
239.Dq yes 243.Dq yes
240or 244or
@@ -1427,8 +1431,15 @@ from the server,
1427will send a message through the encrypted 1431will send a message through the encrypted
1428channel to request a response from the server. 1432channel to request a response from the server.
1429The default 1433The default
1430is 0, indicating that these messages will not be sent to the server. 1434is 0, indicating that these messages will not be sent to the server,
1435or 300 if the
1436.Cm BatchMode
1437option is set.
1431This option applies to protocol version 2 only. 1438This option applies to protocol version 2 only.
1439.Cm ProtocolKeepAlives
1440and
1441.Cm SetupTimeOut
1442are Debian-specific compatibility aliases for this option.
1432.It Cm StreamLocalBindMask 1443.It Cm StreamLocalBindMask
1433Sets the octal file creation mode mask 1444Sets the octal file creation mode mask
1434.Pq umask 1445.Pq umask
@@ -1494,6 +1505,12 @@ Specifies whether the system should send TCP keepalive messages to the
1494other side. 1505other side.
1495If they are sent, death of the connection or crash of one 1506If they are sent, death of the connection or crash of one
1496of the machines will be properly noticed. 1507of the machines will be properly noticed.
1508This option only uses TCP keepalives (as opposed to using ssh level
1509keepalives), so takes a long time to notice when the connection dies.
1510As such, you probably want
1511the
1512.Cm ServerAliveInterval
1513option as well.
1497However, this means that 1514However, this means that
1498connections will die if the route is down temporarily, and some people 1515connections will die if the route is down temporarily, and some people
1499find it annoying. 1516find it annoying.