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 9a06a757a..d6f43c2dd 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -247,8 +247,12 @@ Valid arguments are | |||
247 | If set to | 247 | If set to |
248 | .Cm yes , | 248 | .Cm yes , |
249 | passphrase/password querying will be disabled. | 249 | passphrase/password querying will be disabled. |
250 | In addition, the | ||
251 | .Cm ServerAliveInterval | ||
252 | option will be set to 300 seconds by default (Debian-specific). | ||
250 | This option is useful in scripts and other batch jobs where no user | 253 | This option is useful in scripts and other batch jobs where no user |
251 | is present to supply the password. | 254 | is present to supply the password, |
255 | and where it is desirable to detect a broken network swiftly. | ||
252 | The argument must be | 256 | The argument must be |
253 | .Cm yes | 257 | .Cm yes |
254 | or | 258 | or |
@@ -1455,7 +1459,14 @@ from the server, | |||
1455 | will send a message through the encrypted | 1459 | will send a message through the encrypted |
1456 | channel to request a response from the server. | 1460 | channel to request a response from the server. |
1457 | The default | 1461 | The default |
1458 | is 0, indicating that these messages will not be sent to the server. | 1462 | is 0, indicating that these messages will not be sent to the server, |
1463 | or 300 if the | ||
1464 | .Cm BatchMode | ||
1465 | option is set (Debian-specific). | ||
1466 | .Cm ProtocolKeepAlives | ||
1467 | and | ||
1468 | .Cm SetupTimeOut | ||
1469 | are Debian-specific compatibility aliases for this option. | ||
1459 | .It Cm StreamLocalBindMask | 1470 | .It Cm StreamLocalBindMask |
1460 | Sets the octal file creation mode mask | 1471 | Sets the octal file creation mode mask |
1461 | .Pq umask | 1472 | .Pq umask |
@@ -1529,6 +1540,12 @@ Specifies whether the system should send TCP keepalive messages to the | |||
1529 | other side. | 1540 | other side. |
1530 | If they are sent, death of the connection or crash of one | 1541 | If they are sent, death of the connection or crash of one |
1531 | of the machines will be properly noticed. | 1542 | of the machines will be properly noticed. |
1543 | This option only uses TCP keepalives (as opposed to using ssh level | ||
1544 | keepalives), so takes a long time to notice when the connection dies. | ||
1545 | As such, you probably want | ||
1546 | the | ||
1547 | .Cm ServerAliveInterval | ||
1548 | option as well. | ||
1532 | However, this means that | 1549 | However, this means that |
1533 | connections will die if the route is down temporarily, and some people | 1550 | connections will die if the route is down temporarily, and some people |
1534 | find it annoying. | 1551 | find it annoying. |