diff options
author | Wild Kat <wk@users.noreply.github.com> | 2018-06-12 21:44:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-12 21:44:47 +0200 |
commit | fcb0e5e462e9b3d11d0c228aafd5a853b202746f (patch) | |
tree | 45cad972ed9c16b96400f248d13af2aaea748232 /docs/Model-Notes | |
parent | cb5741bfcc960fd63f5075efac9b559a6f933cfa (diff) |
ssh auth docs and misc documentation fixups, closes #1379 (#1381)
Diffstat (limited to 'docs/Model-Notes')
-rw-r--r-- | docs/Model-Notes/Cumulus.md | 4 | ||||
-rw-r--r-- | docs/Model-Notes/EOS.md | 8 | ||||
-rw-r--r-- | docs/Model-Notes/Netgear.md | 35 | ||||
-rw-r--r-- | docs/Model-Notes/XGS4600-Zyxel.md | 2 |
4 files changed, 31 insertions, 18 deletions
diff --git a/docs/Model-Notes/Cumulus.md b/docs/Model-Notes/Cumulus.md index b5231d8..1ca3c40 100644 --- a/docs/Model-Notes/Cumulus.md +++ b/docs/Model-Notes/Cumulus.md @@ -35,4 +35,6 @@ And set the `cumulus_routing_daemon` variable in the `router.db` file. cumulus1:192.168.121.134:cumulus:cumulus:frr ``` -The default variable is `quagga` so existing installations continue to operate without interruption.
\ No newline at end of file +The default variable is `quagga` so existing installations continue to operate without interruption. + +Back to [Model-Notes](README.md) diff --git a/docs/Model-Notes/EOS.md b/docs/Model-Notes/EOS.md index 66287e3..199fe46 100644 --- a/docs/Model-Notes/EOS.md +++ b/docs/Model-Notes/EOS.md @@ -1,9 +1,13 @@ Arista EOS Configuration ======================== -By default EOS requires keyboard-interactive to be added to your Oxidized config. You can avoid having to do this by configuring the following on the EOS device: +By default, EOS requires the `keyboard-interactive` SSH authentication method for a successful SSH login. To add support for this method to your Oxidized configuration, see the [SSH Auth Methods](../Configuration.md#ssh-auth-methods) directive. -``` +It is also possible to modify the EOS configuration to accept the `password` method which Oxidized presents by default. To do so, the following configuration statement can be used: + +```text management ssh authentication mode password ``` + +Back to [Model-Notes](README.md) diff --git a/docs/Model-Notes/Netgear.md b/docs/Model-Notes/Netgear.md index d82bdcc..97ea613 100644 --- a/docs/Model-Notes/Netgear.md +++ b/docs/Model-Notes/Netgear.md @@ -2,8 +2,10 @@ Netgear Configuration ===================== There are several models available with CLI management via telnet (port 60000), but they all behave like one of the following: -- older models: -``` + +### Older models: + +```text Connected to 192.168.3.201. (GS748Tv4) @@ -17,8 +19,9 @@ Password: (GS748Tv4) #show running-config ``` -- newer models: -``` +### Newer models: + +```text Connected to 172.0.3.203. User:admin @@ -31,17 +34,21 @@ Password:******** ``` The main differences are: -- the prompt for username is different (looks quite strange for older models) -- enable password - - the older model prompts for enable password and it expects empty string - - the newer model does not prompt for enable password at all + +* the prompt for username is different (looks quite strange for older models) +* enable password + * the older model prompts for enable password and it expects empty string + * the newer model does not prompt for enable password at all Configuration for older/newer models: make sure you have defined variable 'enable': -- `'true'` for newer models -- `''` empty string: for older models + +* `'true'` for newer models +* `''` empty string: for older models One possible configuration: -- oxidized config + +### oxidized config + ```yaml source: default: csv @@ -57,8 +64,10 @@ source: enable: 4 telnet_port: 5 ``` -- router.db -``` + +### router.db + +```text switchOldFW:netgear:admin:adminpw::60000 switchNewFW:netgear:admin:adminpw:true:60000 ``` diff --git a/docs/Model-Notes/XGS4600-Zyxel.md b/docs/Model-Notes/XGS4600-Zyxel.md index 8b58ed8..aee47ef 100644 --- a/docs/Model-Notes/XGS4600-Zyxel.md +++ b/docs/Model-Notes/XGS4600-Zyxel.md @@ -20,7 +20,6 @@ input: passive: false ``` - ## SSH/TelNet Below is the table from the XGS4600 CLI Reference Guide (Version 3.79~4.50 Edition 1, 07/2017) @@ -33,7 +32,6 @@ Privilege Level | Types of commands at this privilege level 13|Configure features except for login accounts, SNMP user accounts, the authentication method sequence and authorization settings, multiple logins, administrator and enable passwords, and configuration information display. 14|Configure login accounts, SNMP user accounts, the authentication method sequence and authorization settings, multiple logins, and administrator and enable passwords, and display configuration information. - Oxidized can now retrieve your configuration! Back to [Model-Notes](README.md) |