summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorytti <saku@ytti.fi>2016-08-28 19:29:20 +0300
committerGitHub <noreply@github.com>2016-08-28 19:29:20 +0300
commita061b7c1a5fa5b43a3ec8d80acf51cde8cfb6c41 (patch)
tree8f978aee57d204657f38dde0a4d4857cb1651263
parent3b1bcbe86eb53261371b584b6655f409f80ead1b (diff)
parentfa8e95e441a8e2636261642f25caa37f578ce8c4 (diff)
Merge pull request #543 from MajesticFalcon/master
Update README to include specific group settings
-rw-r--r--README.md25
1 files changed, 24 insertions, 1 deletions
diff --git a/README.md b/README.md
index c7bc7d4..3c8043f 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,7 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen
* [Output: File](#output-file)
* [Output types](#output-types)
* [Advanced Configuration](#advanced-configuration)
+ * [Advanced Group Configuration](#advanced-group-configuration)
7. [Ruby API](#ruby-api)
* [Input](#input)
* [Output](#output)
@@ -580,7 +581,7 @@ rest: 10.0.0.1:8000/oxidized
### Advanced Configuration
-Below is an advanced example configuration. You will be able to (optinally) override options per device. The router.db format used is ```hostname:model:username:password:enable_password```. Hostname and model will be the only required options, all others override the global configuration sections.
+Below is an advanced example configuration. You will be able to (optionally) override options per device. The router.db format used is ```hostname:model:username:password:enable_password```. Hostname and model will be the only required options, all others override the global configuration sections.
```
---
@@ -625,6 +626,28 @@ source:
model_map:
cisco: ios
juniper: junos
+
+```
+
+### Advanced Group Configuration
+
+For group specific credentials
+
+```
+groups:
+ mikrotik:
+ username: admin
+ password: blank
+ ubiquiti:
+ username: ubnt
+ password: ubnt
+```
+and add group mapping
+```
+map:
+ model: 0
+ name: 1
+ group: 2
```
# Hooks