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 673d0b7d6..4e341155a 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
@@ -1479,8 +1483,15 @@ from the server,
1479will send a message through the encrypted 1483will send a message through the encrypted
1480channel to request a response from the server. 1484channel to request a response from the server.
1481The default 1485The default
1482is 0, indicating that these messages will not be sent to the server. 1486is 0, indicating that these messages will not be sent to the server,
1487or 300 if the
1488.Cm BatchMode
1489option is set.
1483This option applies to protocol version 2 only. 1490This option applies to protocol version 2 only.
1491.Cm ProtocolKeepAlives
1492and
1493.Cm SetupTimeOut
1494are Debian-specific compatibility aliases for this option.
1484.It Cm StreamLocalBindMask 1495.It Cm StreamLocalBindMask
1485Sets the octal file creation mode mask 1496Sets the octal file creation mode mask
1486.Pq umask 1497.Pq umask
@@ -1546,6 +1557,12 @@ Specifies whether the system should send TCP keepalive messages to the
1546other side. 1557other side.
1547If they are sent, death of the connection or crash of one 1558If they are sent, death of the connection or crash of one
1548of the machines will be properly noticed. 1559of the machines will be properly noticed.
1560This option only uses TCP keepalives (as opposed to using ssh level
1561keepalives), so takes a long time to notice when the connection dies.
1562As such, you probably want
1563the
1564.Cm ServerAliveInterval
1565option as well.
1549However, this means that 1566However, this means that
1550connections will die if the route is down temporarily, and some people 1567connections will die if the route is down temporarily, and some people
1551find it annoying. 1568find it annoying.