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