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 473971e63..3172fd441 100644
--- a/ssh_config.5
+++ b/ssh_config.5
@@ -205,8 +205,12 @@ Valid arguments are
205If set to 205If set to
206.Dq yes , 206.Dq yes ,
207passphrase/password querying will be disabled. 207passphrase/password querying will be disabled.
208In addition, the
209.Cm ServerAliveInterval
210option will be set to 300 seconds by default.
208This option is useful in scripts and other batch jobs where no user 211This option is useful in scripts and other batch jobs where no user
209is present to supply the password. 212is present to supply the password,
213and where it is desirable to detect a broken network swiftly.
210The argument must be 214The argument must be
211.Dq yes 215.Dq yes
212or 216or
@@ -1305,8 +1309,15 @@ from the server,
1305will send a message through the encrypted 1309will send a message through the encrypted
1306channel to request a response from the server. 1310channel to request a response from the server.
1307The default 1311The default
1308is 0, indicating that these messages will not be sent to the server. 1312is 0, indicating that these messages will not be sent to the server,
1313or 300 if the
1314.Cm BatchMode
1315option is set.
1309This option applies to protocol version 2 only. 1316This option applies to protocol version 2 only.
1317.Cm ProtocolKeepAlives
1318and
1319.Cm SetupTimeOut
1320are Debian-specific compatibility aliases for this option.
1310.It Cm StrictHostKeyChecking 1321.It Cm StrictHostKeyChecking
1311If this flag is set to 1322If this flag is set to
1312.Dq yes , 1323.Dq yes ,
@@ -1345,6 +1356,12 @@ Specifies whether the system should send TCP keepalive messages to the
1345other side. 1356other side.
1346If they are sent, death of the connection or crash of one 1357If they are sent, death of the connection or crash of one
1347of the machines will be properly noticed. 1358of the machines will be properly noticed.
1359This option only uses TCP keepalives (as opposed to using ssh level
1360keepalives), so takes a long time to notice when the connection dies.
1361As such, you probably want
1362the
1363.Cm ServerAliveInterval
1364option as well.
1348However, this means that 1365However, this means that
1349connections will die if the route is down temporarily, and some people 1366connections will die if the route is down temporarily, and some people
1350find it annoying. 1367find it annoying.