diff options
Diffstat (limited to 'ssh_config.5')
-rw-r--r-- | ssh_config.5 | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/ssh_config.5 b/ssh_config.5 index 01f1f7ff6..ea92ea80d 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -205,8 +205,12 @@ Valid arguments are | |||
205 | If set to | 205 | If set to |
206 | .Dq yes , | 206 | .Dq yes , |
207 | passphrase/password querying will be disabled. | 207 | passphrase/password querying will be disabled. |
208 | In addition, the | ||
209 | .Cm ServerAliveInterval | ||
210 | option will be set to 300 seconds by default. | ||
208 | This option is useful in scripts and other batch jobs where no user | 211 | This option is useful in scripts and other batch jobs where no user |
209 | is present to supply the password. | 212 | is present to supply the password, |
213 | and where it is desirable to detect a broken network swiftly. | ||
210 | The argument must be | 214 | The argument must be |
211 | .Dq yes | 215 | .Dq yes |
212 | or | 216 | or |
@@ -1336,8 +1340,15 @@ from the server, | |||
1336 | will send a message through the encrypted | 1340 | will send a message through the encrypted |
1337 | channel to request a response from the server. | 1341 | channel to request a response from the server. |
1338 | The default | 1342 | The default |
1339 | is 0, indicating that these messages will not be sent to the server. | 1343 | is 0, indicating that these messages will not be sent to the server, |
1344 | or 300 if the | ||
1345 | .Cm BatchMode | ||
1346 | option is set. | ||
1340 | This option applies to protocol version 2 only. | 1347 | This option applies to protocol version 2 only. |
1348 | .Cm ProtocolKeepAlives | ||
1349 | and | ||
1350 | .Cm SetupTimeOut | ||
1351 | are Debian-specific compatibility aliases for this option. | ||
1341 | .It Cm StreamLocalBindMask | 1352 | .It Cm StreamLocalBindMask |
1342 | Sets the octal file creation mode mask | 1353 | Sets the octal file creation mode mask |
1343 | .Pq umask | 1354 | .Pq umask |
@@ -1403,6 +1414,12 @@ Specifies whether the system should send TCP keepalive messages to the | |||
1403 | other side. | 1414 | other side. |
1404 | If they are sent, death of the connection or crash of one | 1415 | If they are sent, death of the connection or crash of one |
1405 | of the machines will be properly noticed. | 1416 | of the machines will be properly noticed. |
1417 | This option only uses TCP keepalives (as opposed to using ssh level | ||
1418 | keepalives), so takes a long time to notice when the connection dies. | ||
1419 | As such, you probably want | ||
1420 | the | ||
1421 | .Cm ServerAliveInterval | ||
1422 | option as well. | ||
1406 | However, this means that | 1423 | However, this means that |
1407 | connections will die if the route is down temporarily, and some people | 1424 | connections will die if the route is down temporarily, and some people |
1408 | find it annoying. | 1425 | find it annoying. |