diff options
author | ytti <saku@ytti.fi> | 2018-04-27 14:35:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-27 14:35:34 +0300 |
commit | eedaeff5b159a3e2dc0f2020000d2b39ccfbed2f (patch) | |
tree | 655fe8f951b06aaa94a9c9b111a6f0cbcc475915 /docs/Configuration.md | |
parent | 1311573a1adff6edf2c0b3cfdb05ca83d6c46e73 (diff) | |
parent | 90e1c91ae52ecbcc5b733f166e110faf9b698687 (diff) |
Merge pull request #1175 from laf/ssh-auth-methods
Added support for setting ssh auth methods
Diffstat (limited to 'docs/Configuration.md')
-rw-r--r-- | docs/Configuration.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/Configuration.md b/docs/Configuration.md index 661e65a..1d16c91 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -62,6 +62,15 @@ vars: ssh_no_exec: 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. + +``` +vars: + auth_methods: none, publickey, password, keyboard-interactive +``` + ## SSH Proxy Command Oxidized can `ssh` through a proxy as well. To do so we just need to set `ssh_proxy` variable with the proxy host information. |