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 dd35dd8d1..250c0d15a 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
@@ -1420,8 +1424,15 @@ from the server,
1420will send a message through the encrypted 1424will send a message through the encrypted
1421channel to request a response from the server. 1425channel to request a response from the server.
1422The default 1426The default
1423is 0, indicating that these messages will not be sent to the server. 1427is 0, indicating that these messages will not be sent to the server,
1428or 300 if the
1429.Cm BatchMode
1430option is set.
1424This option applies to protocol version 2 only. 1431This option applies to protocol version 2 only.
1432.Cm ProtocolKeepAlives
1433and
1434.Cm SetupTimeOut
1435are Debian-specific compatibility aliases for this option.
1425.It Cm StreamLocalBindMask 1436.It Cm StreamLocalBindMask
1426Sets the octal file creation mode mask 1437Sets the octal file creation mode mask
1427.Pq umask 1438.Pq umask
@@ -1487,6 +1498,12 @@ Specifies whether the system should send TCP keepalive messages to the
1487other side. 1498other side.
1488If they are sent, death of the connection or crash of one 1499If they are sent, death of the connection or crash of one
1489of the machines will be properly noticed. 1500of the machines will be properly noticed.
1501This option only uses TCP keepalives (as opposed to using ssh level
1502keepalives), so takes a long time to notice when the connection dies.
1503As such, you probably want
1504the
1505.Cm ServerAliveInterval
1506option as well.
1490However, this means that 1507However, this means that
1491connections will die if the route is down temporarily, and some people 1508connections will die if the route is down temporarily, and some people
1492find it annoying. 1509find it annoying.