summaryrefslogtreecommitdiff
path: root/docs/Configuration.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Configuration.md')
-rw-r--r--docs/Configuration.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/Configuration.md b/docs/Configuration.md
index a411490..aebfbc5 100644
--- a/docs/Configuration.md
+++ b/docs/Configuration.md
@@ -62,13 +62,22 @@ vars:
ssh_no_exec: true
```
+## Disabling SSH keepalives
+
+Oxidized SSH input makes use of SSH keepalives to prevent timeouts from slower devices and to quickly tear down stale sessions in larger deployments. There have been reports of SSH keepalives breaking compatibility with certain OS types. They can be disabled using the `ssh_no_keepalive` variable on a per-node basis (by specifying it in the source) or configured application-wide.
+
+```yaml
+vars:
+ ssh_no_keepalive: true
+```
+
## SSH Auth Methods
By default, Oxidized registers the following auth methods: `none`, `publickey` and `password`. However you can configure this globally, by groups, models or nodes.
```yaml
vars:
- auth_methods: [ "none", "publickey", "password", "keyboard-interactive" ]
+ auth_methods: [ "none", "publickey", "password", "keyboard-interactive" ]
```
## SSH Proxy Command