diff options
| -rw-r--r-- | README.md | 14 | 
1 files changed, 14 insertions, 0 deletions
| @@ -31,6 +31,7 @@ Oxidized is a network device configuration backup tool. It's a RANCID replacemen      * [Source: SQLite](#source-sqlite)      * [Source: HTTP](#source-http)      * [Output: GIT](#output-git) +    * [Output: HTTP](#output-http)      * [Output: File](#output-file)      * [Output types](#output-types)      * [Advanced Configuration](#advanced-configuration) @@ -363,6 +364,19 @@ output:      repo: "/var/lib/oxidized/devices.git"  ``` +### Output: Http + +POST a config to the specified URL + +``` +output: +  default: http +  http: +    user: admin +    password: changeit +    url: "http://192.168.162.50:8080/db/coll" +``` +  ### Output types  If you prefer to have different outputs in different files and/or directories, you can easily do this by modifying the corresponding model. To change the behaviour for IOS, you would edit `lib/oxidized/model/ios.rb`. | 
