oxidized 0.27.0 → 0.28.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/publishdocker.yml +13 -0
  3. data/.rubocop.yml +10 -1
  4. data/.rubocop_todo.yml +12 -4
  5. data/CHANGELOG.md +646 -409
  6. data/docs/Configuration.md +4 -1
  7. data/docs/Hooks.md +1 -0
  8. data/docs/Model-Notes/{ios.md → IOS.md} +1 -1
  9. data/docs/Model-Notes/LinuxGeneric.md +4 -3
  10. data/docs/Model-Notes/README.md +1 -1
  11. data/docs/Model-Notes/Viptela.md +1 -1
  12. data/docs/Ruby-API.md +13 -1
  13. data/docs/Supported-OS-Types.md +14 -1
  14. data/lib/oxidized/input/http.rb +14 -4
  15. data/lib/oxidized/input/ssh.rb +1 -1
  16. data/lib/oxidized/input/telnet.rb +1 -1
  17. data/lib/oxidized/model/aos7.rb +2 -2
  18. data/lib/oxidized/model/aosw.rb +5 -0
  19. data/lib/oxidized/model/ciscosmb.rb +13 -2
  20. data/lib/oxidized/model/cnos.rb +33 -0
  21. data/lib/oxidized/model/cumulus.rb +1 -4
  22. data/lib/oxidized/model/edgecos.rb +13 -3
  23. data/lib/oxidized/model/eos.rb +1 -0
  24. data/lib/oxidized/model/fortios.rb +6 -6
  25. data/lib/oxidized/model/gcombnps.rb +4 -4
  26. data/lib/oxidized/model/ibos.rb +55 -0
  27. data/lib/oxidized/model/ios.rb +1 -1
  28. data/lib/oxidized/model/ironware.rb +1 -1
  29. data/lib/oxidized/model/nsxconfig.rb +22 -0
  30. data/lib/oxidized/model/nsxfirewall.rb +22 -0
  31. data/lib/oxidized/model/os10.rb +46 -0
  32. data/lib/oxidized/model/procurve.rb +2 -2
  33. data/lib/oxidized/model/qtech.rb +41 -0
  34. data/lib/oxidized/model/routeros.rb +3 -3
  35. data/lib/oxidized/model/sonicos.rb +5 -0
  36. data/lib/oxidized/model/telco.rb +24 -0
  37. data/lib/oxidized/model/xos.rb +2 -2
  38. data/lib/oxidized/node.rb +2 -2
  39. data/lib/oxidized/nodes.rb +1 -1
  40. data/lib/oxidized/output/git.rb +1 -1
  41. data/lib/oxidized/version.rb +2 -2
  42. data/oxidized.gemspec +2 -2
  43. metadata +16 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de700a310982ae6a4234f81f3a61744b3ba7d14e287f5a46199c6b772eecb0e5
4
- data.tar.gz: 51f3db53dec4314adc9c20c6a02ed2e2e86bc01368305038ba44224967895bb7
3
+ metadata.gz: 95fc2012e91f74ce819ae87f1c400231e86efa9a7fac37882569bc5426fd3fe5
4
+ data.tar.gz: 7ef28ef45e639d0813da0b38cc1f5c5f39bb64e0cb012536b7a774952f723adb
5
5
  SHA512:
6
- metadata.gz: 49a277becf380a4a7f36f20c53e1933868d8479ad0bf7eb6a1a23efe307e981190db9fd5a274ffb9e2c100c82806d073f4f83f2325e14ba3423f0790d53672d1
7
- data.tar.gz: c989f9779e4abf6c12649867650616ffd0e8562262a907e89cb015cd7831fa292088fb10e21007e99cc639776d5f78d5c5ac4b9587d5399b40eb017206e59030
6
+ metadata.gz: a9b04bd2bbcc50f6e71c9ec340712ad10fe33362d4703e317d17e439ed714433400e7d76512ae10fbf928386b9e3bd81e1db1d70f259639015ba506cdf89092b
7
+ data.tar.gz: 334d3c403a31d79b3489b430f20142a272022b4cade9321e91173a8c8bd90a9b7244763f853779fdd65a3d6c0cd201c4ccc2cfff7964bc3385f90fc0cb032467
@@ -0,0 +1,13 @@
1
+ name: Publish Docker
2
+ on: [push]
3
+ jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@master
8
+ - name: Publish to Registry
9
+ uses: elgohr/Publish-Docker-Github-Action@master
10
+ with:
11
+ name: oxidized/oxidized
12
+ username: ${{ secrets.DOCKER_USERNAME }}
13
+ password: ${{ secrets.DOCKER_PASSWORD }}
@@ -22,7 +22,7 @@ Lint/AmbiguousRegexpLiteral:
22
22
  Style/PreferredHashMethods:
23
23
  EnforcedStyle: verbose
24
24
 
25
- Layout/AlignHash:
25
+ Layout/HashAlignment:
26
26
  EnforcedHashRocketStyle: table
27
27
  EnforcedColonStyle: table
28
28
 
@@ -39,6 +39,15 @@ Style/FormatString:
39
39
  Style/FormatStringToken:
40
40
  EnforcedStyle: unannotated
41
41
 
42
+ Style/HashEachMethods:
43
+ Enabled: true
44
+
45
+ Style/HashTransformKeys:
46
+ Enabled: true
47
+
48
+ Style/HashTransformValues:
49
+ Enabled: true
50
+
42
51
  Style/RescueModifier:
43
52
  Enabled: false
44
53
 
@@ -1,11 +1,19 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-07-27 16:08:27 +0200 using RuboCop version 0.73.0.
3
+ # on 2020-02-29 09:58:06 +0100 using RuboCop version 0.80.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
+ # Offense count: 3
10
+ # Configuration parameters: AllowComments.
11
+ Lint/SuppressedException:
12
+ Exclude:
13
+ - 'lib/oxidized/input/ssh.rb'
14
+ - 'lib/oxidized/input/telnet.rb'
15
+ - 'lib/oxidized/nodes.rb'
16
+
9
17
  # Offense count: 67
10
18
  Metrics/AbcSize:
11
19
  Max: 82
@@ -25,7 +33,7 @@ Metrics/ClassLength:
25
33
  Metrics/CyclomaticComplexity:
26
34
  Max: 14
27
35
 
28
- # Offense count: 60
36
+ # Offense count: 61
29
37
  # Configuration parameters: CountComments, ExcludedMethods.
30
38
  Metrics/MethodLength:
31
39
  Max: 41
@@ -35,7 +43,7 @@ Metrics/MethodLength:
35
43
  Metrics/ParameterLists:
36
44
  Max: 6
37
45
 
38
- # Offense count: 10
46
+ # Offense count: 11
39
47
  Metrics/PerceivedComplexity:
40
48
  Max: 14
41
49
 
@@ -104,7 +112,7 @@ Style/DoubleNegation:
104
112
  - 'lib/oxidized/cli.rb'
105
113
  - 'lib/oxidized/hook/exec.rb'
106
114
 
107
- # Offense count: 35
115
+ # Offense count: 36
108
116
  # Cop supports --auto-correct.
109
117
  # Configuration parameters: EnforcedStyle, AllowInnerSlashes.
110
118
  # SupportedStyles: slashes, percent_r, mixed
@@ -1,456 +1,693 @@
1
1
  # Changelog
2
2
 
3
- ## Master
4
-
5
- ## 0.27.0
6
-
7
- * FEATURE: add automatic restart on failure for systemd (@deajan)
8
- * FEATURE: add ZynOS GS1900 specific model support (@deajan)
9
- * FEATURE: add PurityOS model support (@elliot64)
10
- * FEATURE: add Ubiquiti Airfiber model support (@cchance27)
11
- * FEATURE: add Icotera support (@funzoneq)
12
- * FEATURE: include licensing information in aos model (@pozar)
13
- * FEATURE: include chassis information in sros model (@raunz)
14
- * FEATURE: add firelinuxos (FirePOWER) model (@rgnv)
15
- * FEATURE: add sonicos model (@rgnv)
16
- * FEATURE: add hpmsm model (@timwsuqld)
17
- * FEATURE: include hardware and product information in oneos model (@raunz)
18
- * FEATURE: add FastIron model (@ZacharyPuls)
19
- * FEATURE: add Linuxgeneric model (@davama)
20
- * FEATURE: include HA status info in fortios model (@raunz)
21
- * FEATURE: add SpeedTouch model (@raunz)
22
- * FEATURE: comware added device manuinfo to include serial number (@raunz)
23
- * BUGFIX: prevent versionning on procurve switches by removing power usage output (@deajan)
24
- * BUGFIX: improve procurve telnet support for older switches (@deajan)
25
- * BUGFIX: voss model
26
- * BUGFIX: cambium model should not consider timestamp for backup as unneeded, and causes diffs (@cchance27)
27
- * BUGFIX: remove 'sh system' from ciscosmb model (@Exordian)
28
- * BUGFIX: dlink model didn't support prompts with spaces in the model type (Extreme EAS 200-24p) (@cchance27)
29
- * BUGFIX: routeros model does not collect configuration via telnet input (@hexdump0x0200)
30
- * BUGFIX: add dependencies for net-ssh
31
- * BUGFIX: don't log power module info on procurve model anymore
32
- * BUGFIX: crash on some recent Ruby versions in the nagios check (@Kegeruneku)
33
- * BUGFIX: remove stray whitespace in adtran model (@nickhilliard)
34
- * BUGFIX: if input model returns subclassed string we may overwrite the string with an empty string
35
- * BUGFIX: updated aosw.rb prompt. addresses issue #1254
36
- * BUGFIX: update comware model to fix telnet login/password for HPE MSR954 and HPE5130. Issue #1886
37
- * BUGFIX: filter out IOS configuration/NVRAM modified/changed timestamps to keep output persistent
38
- * BUGFIX: update screenos model to reduce the amount of lines being stripped from beginning of cfg output
39
- * BUGFIX: include colon in aosw prompt regexp in case it is a mac address (@raunz)
40
- * BUGFIX: comware improvement for requesting HP 19x0 switches hidden CLI. Issues #1754 and #1447
41
- * BUGFIX: fix variable inheritance when subclassing a model
42
- * MISC: add pgsql support, mechanized and net-tftp to Dockerfile
43
- * MISC: upgrade slop, net-telnet and rugged
44
- * MISC: extra secret scrubbing in comware model (@bengels00)
45
- * MISC: removed snmpd lines from linuxgeneric model
46
- * MISC: moved show configuration command to the end in junos model (@raunz)
47
- * MISC: filter pap and chap passwords in ios model (@matejv)
48
-
49
- ## 0.26.3
50
-
51
- * BUGFIX: regression in git.rb version method where we check if Rugged::Diff has any deltas/patches
52
-
53
- ## 0.26.2
54
-
55
- * BUGFIX: suppress net-ssh 5 deprecation warnings by moving from :paranoid to :verify_host_key
56
-
57
- ## 0.26.1
58
-
59
- * BUGFIX: force file permissions in rubygems
60
-
61
- ## 0.26.0
62
-
63
- * FEATURE: add Cisco VPN3000 model (@baznikin)
64
- * FEATURE: add NetGear PROSafe Smart switches model (@baznikin)
65
- * FEATURE: Added possibility to pass root logs directory as environment variable (@Glorf)
66
- * FEATURE: add OneAccess TDRE (1645) model (@starrsl)
67
- * FEATURE: add Audiocodes MediaPack MP-1xx and Mediant 1000 model (@pedjaj)
68
- * FEATURE: add raisecom RAX model (@vitalisator)
69
- * FEATURE: add huawei smartax model (@nyash)
70
- * FEATURE: add grandstream model
71
- * BUGFIX: in git comparison we might mistakenly always detect change due to !utf8 vs. utf8 encoding of a char
72
- * MISC: prompt updates in siklu, netonix, netscaler models
73
- * MISC: minimal supported ruby is now 2.3, net-ssh dependency ~> 5, rubocop ~> 0.65.0
74
-
75
- ## 0.25.0
76
-
77
- * FEATURE: add viptela model (@bobthebutcher)
78
- * FEATURE: add ECI Telecom Appolo platform bij arien.vijn@linklight.nl
79
- * FEATURE: ssh keepalive now configurable per node with ssh_no_keepalive boolean
80
- * FEATURE: add Comtrol model (@RobbFromIT)
81
- * FEATURE: add Dell X-series model (@RobbFromIT)
82
- * FEATURE: add privilege escalation to the cumulus model (@user4574)
83
- * FEATURE: add adtran model (@CFUJoshWeepie)
84
- * FEATURE: add firebrick model (@lewisvive)
85
- * BUGFIX: netgear telnet password prompt not detected
86
- * BUGFIX: xos model should not modify config on legacy Extreme Networks devices (@sq9mev)
87
- * BUGFIX: model dlink, edgecos, ciscosmb, openbsd
88
- * BUGFIX: hide 'lighttpd_ls_password' as potential secret in pfsense model (@dra)
89
- * BUGFIX: ciscospark hook error when diff is set to false
90
- * MISC: bump Dockerfile phusion/baseimage:0.10.0 -> 0.11, revert to one-stage build
91
- * MISC: add sqlite3 and mysql2 drivers for sequel to Dockerfile
92
- * MISC: Added verbiage to set OXIDIZED_HOME correctly under Debian 8.8 w/systemd
93
- * MISC: add gpgme and sequel gems to Dockerfile for sources
94
- * MISC: eos model removes user secrets and BGP secrets (@yzguy)
95
- * MISC: add secret filtering to netscaler (@shepherdjay)
96
- * MISC: capture ZebOS configuration for TMOS model (@yzguy)
97
- * MISC: additional secret filters in ios, asa, procurve, ciscosmb models (@hexdump0x0200)
98
- * MISC: remove volatile uptime data in nos model (@f0rkz)
99
-
100
- ## 0.24.0
101
-
102
- * FEATURE: add frr support to cumulus model (@User4574 / @bobthebutcher)
103
- * FEATURE: honour MAX_STAT in mtime, to store last N mtime
104
- * FEATURE: configurable stats history size
105
- * FEATURE: model callback enhancements for customizing existing models (@ytti)
106
- * BUGFIX: models ciscosmb, dlink
107
-
108
- ## 0.23.0
109
-
110
- * FEATURE: support arbitrary user/password/prompt detection in telnet, same behaviour as ssh
111
- * FEATURE: manager refactor, support local loading of input, output, source, not just model and hook
112
- * FEATURE: store modification time in node stats
113
- * BUGFIX: model edgecos does not trigger false positives due to uptime and memory utilization (@sq9mev)
114
- * BUGFIX: Use SECRET-DATA hints for hiding secrets in JunOS (@Zmegolaz)
115
- * BUGFIX: comware (@adamboutcher)
116
-
117
- ## 0.22.0
118
-
119
- * FEATURE: openbsd model (@amarti2038)
120
- * FEATURE: comnet model (@jaylik)
121
- * FEATURE: stoneos model (@macaty)
122
- * FEATURE: openwrt model (@z00nx)
123
- * FEATURE: arbos model (@jsynack)
124
- * FEATURE: ndms model (@yuri-zubov)
125
- * FEATURE: openwert model (@z00nx)
126
- * FEATURE: stoneos model (@macaty)
127
- * FEATURE: comnetms model (@jaylik)
128
- * FEATURE: openbsd model (@amarti2038)
129
- * FEATURE: cambium model
130
- * FEATURE: ssh key passphrase (@wk)
131
- * FEATURE: cisco spark hook (@rgnv)
132
- * FEATURE: added support for setting ssh auth methods (@laf)
133
- * BUGFIX: models procurve, br6910, vyos, fortios, edgeos, vyatta, junos, powerconnect, supermicro, fortios, firewareos, aricentiss, dnos, nxos, hpbladesystem, netgear, xos, boss, opengear, pfsense, asyncos
134
-
135
- ## 0.21.0
136
-
137
- * FEATURE: routeros include system history (@InsaneSplash)
138
- * FEATURE: vrp added support for removing secrets (@bheum)
139
- * FEATURE: hirschmann model (@OCangrand)
140
- * FEATURE: asa added multiple context support (@marnovdm)
141
- * FEATURE: procurve added additional output (@davama)
142
- * FEATURE: Updated git commits to bare repo + drop need for temp dir during clone (@asenci)
143
- * FEATURE: asyncos model (@cd67-usrt)
144
- * FEATURE: ciscosma model (@cd67-usrt)
145
- * FEATURE: procurve added transceiver info (@davama)
146
- * FEATURE: routeros added remove_secret option (@spinza)
147
- * FEATURE: Updated net-ssh version (@Fauli83)
148
- * FEATURE: audiocodes model (@Fauli83)
149
- * FEATURE: Added docs for Huawei VRP devices (@tuxis-ie)
150
- * FEATURE: ciscosmb added radius key detection (@davama)
151
- * FEATURE: radware model (@sfini)
152
- * FEATURE: enterasys model (@koenvdheuvel)
153
- * FEATURE: weos model (@ignaqui)
154
- * FEATURE: hpemsa model (@aschaber1)
155
- * FEATURE: Added nodes_done hook (@danilopopeye)
156
- * FEATURE: ucs model (@WiXZlo)
157
- * FEATURE: acsw model (@sfini)
158
- * FEATURE: aen model (@ZacharyPuls)
159
- * FEATURE: coriantgroove model (@nickhilliard)
160
- * FEATURE: sgos model (@seekerOK)
161
- * FEATURE: powerconnect support password removal (@tobbez)
162
- * FEATURE: Added haproxy example for Ubuntu (@denvera)
163
- * BUGFIX: fiberdriver remove configuration generated on from diff (@emjemj)
164
- * BUGFIX: Fix email pass through (@ZacharyPuls)
165
- * BUGFIX: iosxr suppress timestamp (@ja-frog)
166
- * BUGFIX: ios allow lowercase user/pass prompt (@deepseth)
167
- * BUGFIX: Use git show instead of git diff (@asenci)
168
- * BUGFIX: netgear fixed sending enable password and exit/quit (@candlerb)
169
- * BUGFIX: ironware removed space requirement from password prompt (@crami)
170
- * BUGFIX: dlink removed uptime from diff (@rfdrake)
171
- * BUGFIX: planet removed temp from diff (@flokli)
172
- * BUGFIX: ironware removed fan, temp and flash from diff (@Punicaa)
173
- * BUGFIX: panos changed exit to quit (@goebelmeier)
174
- * BUGFIX: fortios remove FDS address from diffs (@bheum)
175
- * BUGFIX: fortios remove additional secrets from diffs (@brunobritocarvalho)
176
- * BUGFIX: fortios remove IPS URL DB (@brunobritocarvalho)
177
- * BUGFIX: voss remove temperature, power and uptime from diff (@ospfbgp)
178
-
179
- ## 0.20.0
180
-
181
- * FEATURE: gpg support for CSV source (@elmobp)
182
- * FEATURE: slackdiff (@natm)
183
- * FEATURE: gitcrypt output model (@clement-parisot)
184
- * FEATURE: model specific credentials (@davromaniak)
185
- * FEATURE: hierarchical json in http source model
186
- * FEATURE: next-adds-job config toggle (to add new job when ever /next is called)
187
- * FEATURE: netgear model (@aschaber1)
188
- * FEATURE: zhone model (@rfdrake)
189
- * FEATURE: tplink model (@mediumo)
190
- * FEATURE: oneos model (@crami)
191
- * FEATURE: cisco NGA model (@udhos)
192
- * FEATURE: voltaire model (@clement-parisot)
193
- * FEATURE: siklu model (@bdg-robert)
194
- * FEATURE: voss model (@ospfbgp)
195
- * BUGFIX: ios, cumulus, ironware, nxos, fiberdiver, aosw, fortios, comware, procurve, opengear, timos, routeros, junos, asa, aireos, mlnxos, pfsense, saos, powerconnect, firewareos, quantaos
196
-
197
- ## 0.19.0
198
-
199
- * FEATURE: allow setting ssh_keys (not relying on openssh config) (@denvera)
200
- * FEATURE: fujitsupy model (@stokbaek)
201
- * FEATURE: fiberdriver model (@emjemj)
202
- * FEATURE: hpbladesystems model (@flokli)
203
- * FEATURE: planetsgs model (@flokli)
204
- * FEATURE: trango model (@rfdrake)
205
- * FEATURE: casa model (@rfdrake)
206
- * FEATURE: dlink model (@rfdrake)
207
- * FEATURE: hatteras model (@rfdrake)
208
- * FEATURE: ability to ignore SSL certs in http (@laf)
209
- * FEATURE: awsns hooks, publish messages to AWS SNS topics (@natm)
210
- * BUGFIX: pfsense, dnos, powerconnect, ciscosmb, eos, aosw
211
-
212
- ## 0.18.0
213
-
214
- * FEATURE: APC model (by @davromaniak )
215
- * BUGFIX: ironware, aosw
216
- * BUGFIX: interpolate nil, false, true for node vars too
217
-
218
- ## 0 17.0
219
-
220
- * FEATURE: "nil", "false" and "true" in source (e.g. router.db) are interpeted as nil, false, true. Empty is now always considered empty string, instead of in some cases nil and some cases empty string.
221
- * FEATURE: support tftp as input model (@MajesticFalcon)
222
- * FEATURE: add alvarion model (@MajesticFalcon)
223
- * FEATURE: detect if ssh wants password terminal/CLI prompt or not
224
- * FEATURE: node (group, model, username, password) resolution refactoring, supports wider range of use-cases
225
- * BUGFIX: fetch for file output (@danilopopeye)
226
- * BUGFIX: net-ssh version specification
227
- * BUGFIX: routeros, catos, pfsense
228
-
229
- ## 0.16.3
230
-
231
- * FEATURE: pfsense support (by @stokbaek)
232
- * BUGFIX: cumulus prompt not working with default switch configs (by @nertwork)
233
- * BUGFIX: disconnect ssh when prompt wasn't found (by @andir)
234
- * BUGFIX: saos, asa, acos, timos updates, cumulus
235
-
236
- ## 0.16.2
237
-
238
- * BUGFIX: when not using git (by @danilopopeye)
239
- * BUGFIX: screenos update
240
-
241
- ## 0.16.1
242
-
243
- * BUGFIX: unnecessary puts statement removed from git.rb
244
-
245
- ## 0.16.0
246
-
247
- * FEATURE: support Gaia OS devices (by @totosh)
248
- * BUGFIX: #fetch, #version fixes in nodes.rb (by @danilopopeye)
249
- * BUGFIX: procurve
250
-
251
- ## 0.15.0
252
-
253
- * FEATURE: disable periodic collection, only on demand (by Adam Winberg)
254
- * FEATURE: allow disabling ssh exec mode always (mainly for oxidized-script) (by @nickhilliard)
255
- * FEATURE: support mellanox devices (by @ham5ter)
256
- * FEATURE: support firewireos devices (by @alexandre-io)
257
- * FEATURE: support quanta devices (by @f0o)
258
- * FEATURE: support tellabs coriant8800, coriant8600 (by @udhos)
259
- * FEATURE: support brocade6910 (by @cardboardpig)
260
- * BUGFIX: debugging, tests (by @ElvinEfendi)
261
- * BUGFIX: nos, panos, acos, procurve, eos, edgeswitch, aosw, fortios updates
262
-
263
- ## 0.14.3
264
-
265
- * BUGFIX: fix git when using multiple groups without single_repo
266
-
267
- ## 0.14.2
268
-
269
- * BUGFIX: git expand path for all groups
270
- * BUGFIX: git get_version, teletubbies do it again
271
- * BUGFIX: comware, acos, procurve models
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [0.28.0 - 2020-05-18]
10
+
11
+ ### Added
12
+
13
+ - add VMWare NSX Edge 6.4+ support (@elmobp)
14
+ - add Dell EMC Networking OS10 support (@mmisslin)
15
+ - add Centec Networks CNOS (Fiberstore S5800/S5850) support via cnos model (@freddy36)
16
+ - include transceiver information in EdgeCOS model (@freddy36)
17
+ - add Telco Systems T-Marc 3306 support via telco model (@SkylerBlumer)
18
+ - add enable support to ciscosmb (@deesel)
19
+ - add Waystream iBOS model
20
+ - add QTECH model (@moisseev)
21
+
22
+ ### Changed
23
+
24
+ - more secret scrubbing in sonicos (@s-fu)
25
+ - openssh key scrubbing as secret in fortios (@agabellini)
26
+ - scrubs macsec key from Arista EOS (@krisamundson)
27
+ - rubocop dependency now ~> 0.80.0
28
+ - rugged dependency now ~> 0.28.0
29
+ - cumulus model no longer records transient data (@plett)
30
+
31
+ ### Fixed
32
+
33
+ - use without-paging variant of print statement in routeros (@vkushnir)
34
+ - include the commands in the output in EdgeCOS model (@freddy36)
35
+ - update patterns for minor software version dependent differences in EdgeCOS model @freddy36)
36
+ - better login modalities for telnet in aos7 (@optimuscream)
37
+ - better virtual domain detection in fortios (@agabellini)
38
+ - allow any max length for username/password in GcomBNPS (@freddy36)
39
+ - relax prompt requirements in ciscosmb (@Atroskelis)
40
+ - fortios model strips uptime even without remove_secrets (@jplitza)
41
+ - HP ProCurve now accepts ">" as apart of the prompt (@magnuslarsen)
42
+ - fix IOS SNMP notification community hiding for informs and v3 (@moisseev)
43
+ - fixed issue where the regex-pattern for XOS-prompts used invalid syntax (@darkcatapulter)
272
44
 
273
- ## 0.14.1
45
+ ## [0.27.0] - 2019-10-27
274
46
 
275
- * BUGFIX: git get_version when groups and single_repo are used
47
+ ### Added
276
48
 
277
- ## 0.14.0
49
+ - add automatic restart on failure for systemd (@deajan)
50
+ - add ZynOS GS1900 specific model support (@deajan)
51
+ - add PurityOS model support (@elliot64)
52
+ - add Ubiquiti Airfiber model support (@cchance27)
53
+ - add Icotera support (@funzoneq)
54
+ - include licensing information in aos model (@pozar)
55
+ - include chassis information in sros model (@raunz)
56
+ - add firelinuxos (FirePOWER) model (@rgnv)
57
+ - add sonicos model (@rgnv)
58
+ - add hpmsm model (@timwsuqld)
59
+ - include hardware and product information in oneos model (@raunz)
60
+ - add FastIron model (@ZacharyPuls)
61
+ - add Linuxgeneric model (@davama)
62
+ - include HA status info in fortios model (@raunz)
63
+ - add SpeedTouch model (@raunz)
64
+ - comware added device manuinfo to include serial number (@raunz)
278
65
 
279
- * FEATURE: support supermicro swithes (by @funzoneq)
280
- * FEATURE: support catos switches
281
- * BUGFIX: git+groups+singlerepo (by @PANZERBARON)
282
- * BUGFIX: asa, tmos, ironware, ios-xr
283
- * BUGFIX: mandate net-ssh 3.0.x, don't accept 3.1 (numerous issues)
66
+ ### Changed
284
67
 
285
- ## 0.13.1
68
+ - add pgsql support, mechanized and net-tftp to Dockerfile
69
+ - upgrade slop, net-telnet and rugged
70
+ - extra secret scrubbing in comware model (@bengels00)
71
+ - removed snmpd lines from linuxgeneric model
72
+ - moved show configuration command to the end in junos model (@raunz)
73
+ - filter pap and chap passwords in ios model (@matejv)
74
+
75
+ ### Fixed
286
76
 
287
- * BUGFIX: file permissions (Sigh...)
77
+ - prevent versionning on procurve switches by removing power usage output (@deajan)
78
+ - improve procurve telnet support for older switches (@deajan)
79
+ - voss model
80
+ - cambium model should not consider timestamp for backup as unneeded, and causes diffs -@cchance27)
81
+ - remove 'sh system' from ciscosmb model (@Exordian)
82
+ - dlink model didn't support prompts with spaces in the model type (Extreme EAS -00-24p) (@cchance27)
83
+ - routeros model does not collect configuration via telnet input (@hexdump0x0200)
84
+ - add dependencies for net-ssh
85
+ - don't log power module info on procurve model anymore
86
+ - crash on some recent Ruby versions in the nagios check (@Kegeruneku)
87
+ - remove stray whitespace in adtran model (@nickhilliard)
88
+ - if input model returns subclassed string we may overwrite the string with an empty -tring
89
+ - updated aosw.rb prompt. addresses issue #1254
90
+ - update comware model to fix telnet login/password for HPE MSR954 and HPE5130. Issue -1886
91
+ - filter out IOS configuration/NVRAM modified/changed timestamps to keep output -ersistent
92
+ - update screenos model to reduce the amount of lines being stripped from beginning of -fg output
93
+ - include colon in aosw prompt regexp in case it is a mac address (@raunz)
94
+ - comware improvement for requesting HP 19x0 switches hidden CLI. Issues #1754 and -1447
95
+ - fix variable inheritance when subclassing a model
288
96
 
289
- ## 0.13.0
97
+ ## [0.26.3] - 2019-03-06
290
98
 
291
- * FEATURE: http post for configs (by @jgroom33)
292
- * FEATURE: support ericsson redbacks (by @roedie)
293
- * FEATURE: support motorola wireless controllers (by @roadie)
294
- * FEATURE: support citrix netscaler (by @roadie)
295
- * FEATURE: support datacom devices (by @danilopopeye)
296
- * FEATURE: support netonix devices
297
- * FEATURE: support specifying ssh cipher and kex (by @roadie)
298
- * FEATURE: rename proxy to ssh_proxy (by @roadie)
299
- * FEATURE: support ssh keys on ssh_proxy (by @awix)
300
- * BUGFIX: various (by @danilopopeye)
301
- * BUGFIX: Node#repo with groups (by @danilopopeye)
302
- * BUGFIX: githubrepohoook (by @danilopopeye)
303
- * BUGFIX: fortios, airos, junos, xos, edgeswitch, nos, tmos, procurve, ipos models
99
+ ### Fixed
304
100
 
305
- ## 0.12.2
101
+ - regression in git.rb version method where we check if Rugged::Diff has any deltas/patches
306
102
 
307
- * BUGFIX: more MRV model fixes (by @natm)
103
+ ## [0.26.2] - 2019-03-05
308
104
 
309
- ## 0.12.1
105
+ ### Fixed
310
106
 
311
- * BUGFIX: set term to vty100
312
- * BUGFIX: MRV model fixes (by @natm)
107
+ - suppress net-ssh 5 deprecation warnings by moving from :paranoid to :verify_host_key
313
108
 
314
- ## 0.12.0
109
+ ## [0.26.1] - 2019-03-04
315
110
 
316
- * FEATURE: enhance AOSW (by @mikebryant)
317
- * FEATURE: F5 TMOS support (by @mikebryant)
318
- * FEATURE: Opengear support (by @mikebryant)
319
- * FEATURE: EdgeSwitch support (by @doogieconsulting)
320
- * BUGFIX: rename input debug log files
321
- * BUGFIX: powerconnect model fixes (by @Madpilot0)
322
- * BUGFIX: fortigate model fixes (by @ElvinEfendi)
323
- * BUGFIX: various (by @mikebryant)
324
- * BUGFIX: write SSH debug to file without buffering
325
- * BUGFIX: fix IOS XR prompt handling
111
+ ### Fixed
326
112
 
327
- ## 0.11.0
113
+ - force file permissions in rubygems
328
114
 
329
- * FEATURE: ssh proxycommand (by @ElvinEfendi)
330
- * FEATURE: basic auth in HTTP source (by @laf)
331
- * BUGFIX: do not inject string to output before model gets it
332
- * BUGFIX: store pidfile in oxidized root
115
+ ## [0.26.0] - 2019-03-04
333
116
 
334
- ## 0.10.0
117
+ ### Added
335
118
 
336
- * FEATURE: Various refactoring (by @ElvinEfendi)
337
- * FEATURE: Ciena SOAS support (by @jgroom33)
338
- * FEATURE: support group variables (by @supertylerc)
339
- * BUGFIX: various ((orly)) (by @marnovdm, @danbaugher, @MrRJ45, @asynet, @nickhilliard)
119
+ - add Cisco VPN3000 model (@baznikin)
120
+ - add NetGear PROSafe Smart switches model (@baznikin)
121
+ - Added possibility to pass root logs directory as environment variable (@Glorf)
122
+ - add OneAccess TDRE (1645) model (@starrsl)
123
+ - add Audiocodes MediaPack MP-1xx and Mediant 1000 model (@pedjaj)
124
+ - add raisecom RAX model (@vitalisator)
125
+ - add huawei smartax model (@nyash)
126
+ - add grandstream model
340
127
 
341
- ## 0.9.0
128
+ ### Changed
342
129
 
343
- * FEATURE: input log now uses devices name as file, instead of string from config (by @skoef)
344
- * FEATURE: Dell Networkign OS (dnos) support (by @erefre)
345
- * BUGFIX: CiscoSMB, powerconnect, comware, xos, ironware, nos fixes
130
+ - prompt updates in siklu, netonix, netscaler models
131
+ - minimal supported ruby is now 2.3, net-ssh dependency ~> 5, rubocop ~> 0.65.0
346
132
 
347
- ## 0.8.1
133
+ ### Fixed
348
134
 
349
- * BUGFIX: restore ruby 1.9.3 compatibility
135
+ - in git comparison we might mistakenly always detect change due to !utf8 vs. utf8 encoding of a char
350
136
 
351
- ## 0.8.0
137
+ ## [0.25.1] - 2018-12-18
352
138
 
353
- * FEATURE: hooks (by @aakso)
354
- * FEATURE: MRV MasterOS support (by @kwibbly)
355
- * FEATURE: EdgeOS support (by @laf)
356
- * FEATURE: FTP input and Zyxel ZynOS support (by @ytti)
357
- * FEATURE: version and diffs API For oxidized-web (by @FlorianDoublet)
358
- * BUGFIX: aosw, ironware, routeros, xos models
359
- * BUGFIX: crash with 0 nodes
360
- * BUGFIX: ssh auth fail without keyboard-interactive
361
- * Full changelog https://github.com/ytti/oxidized/compare/0.7.1...HEAD
139
+ ### Fixed
362
140
 
363
- ## 0.7.0
141
+ - update changelog which was forgotten during release
364
142
 
365
- * FEATURE: support http source (by @laf)
366
- * FEATURE: support Palo Alto PANOS (by @rixxxx)
367
- * BUGFIX: screenos fixes (by @rixxxx)
368
- * BUGFIX: allow 'none' auth in ssh (spotted by @SaldoorMike, needed by ciscosmb+aireos)
143
+ ## [0.25.0] - 2018-12-16
369
144
 
370
- ## 0.6.0
145
+ ### Added
371
146
 
372
- * FEATURE: support cumulus linux (by @FlorianDoublet)
373
- * FEATURE: support HP Comware SMB siwtches (by @sid3windr)
374
- * FEATURE: remove secret additions (by @rodecker)
375
- * FEATURE: option to put all groups in single repo (by @ytti)
376
- * FEATURE: expand path in source: csv: (so that ~/foo/bar works) (by @ytti)
377
- * BUGFIX: screenos fixes (by @rixxxx)
378
- * BUGFIX: ironware fixes (by @FlorianDoublet)
379
- * BUGFIX: powerconnect fixes (by @sid3windr)
380
- * BUGFIX: don't ask interactive password in new net/ssh (by @ytti)
147
+ - add viptela model (@bobthebutcher)
148
+ - add ECI Telecom Appolo platform bij arien.vijn@linklight.nl
149
+ - ssh keepalive now configurable per node with ssh_no_keepalive boolean
150
+ - add Comtrol model (@RobbFromIT)
151
+ - add Dell X-series model (@RobbFromIT)
152
+ - add privilege escalation to the cumulus model (@user4574)
153
+ - add adtran model (@CFUJoshWeepie)
154
+ - add firebrick model (@lewisvive)
155
+
156
+ ### Changed
157
+
158
+ - bump Dockerfile phusion/baseimage:0.10.0 -> 0.11, revert to one-stage build
159
+ - add sqlite3 and mysql2 drivers for sequel to Dockerfile
160
+ - Added verbiage to set OXIDIZED_HOME correctly under Debian 8.8 w/systemd
161
+ - add gpgme and sequel gems to Dockerfile for sources
162
+ - eos model removes user secrets and BGP secrets (@yzguy)
163
+ - add secret filtering to netscaler (@shepherdjay)
164
+ - capture ZebOS configuration for TMOS model (@yzguy)
165
+ - additional secret filters in ios, asa, procurve, ciscosmb models (@hexdump0x0200)
166
+ - remove volatile uptime data in nos model (@f0rkz)
167
+
168
+ ### Fixed
169
+
170
+ - netgear telnet password prompt not detected
171
+ - xos model should not modify config on legacy Extreme Networks devices (@sq9mev)
172
+ - model dlink, edgecos, ciscosmb, openbsd
173
+ - hide 'lighttpd_ls_password' as potential secret in pfsense model (@dra)
174
+ - ciscospark hook error when diff is set to false
175
+
176
+ ## [0.24.0] - 2018-06-14
177
+
178
+ ### Added
179
+
180
+ - add frr support to cumulus model (@User4574 / @bobthebutcher)
181
+ - honour MAX_STAT in mtime, to store last N mtime
182
+ - configurable stats history size
183
+ - model callback enhancements for customizing existing models (@ytti)
184
+
185
+ ### Fixed
186
+
187
+ - models ciscosmb, dlink
188
+
189
+ ## [0.23.0] - 2018-06-11
190
+
191
+ ### Added
192
+
193
+ - support arbitrary user/password/prompt detection in telnet, same behaviour as ssh
194
+ - manager refactor, support local loading of input, output, source, not just model and hook
195
+ - store modification time in node stats
381
196
 
382
- ## 0.5.0
197
+ ### Fixed
383
198
 
384
- * FEATURE: Mikrotik RouterOS model (by @emjemj)
385
- * FEATURE: add support for Cisco VSS (by @MrRJ45)
386
- * BUGFIX: general fixes to powerconnect model (by @MrRJ45)
387
- * BUGFIX: fix initial commit issues with rugged (by @MrRJ45)
388
- * BUGFIX: pager error for old dell powerconnect switches (by @emjemj)
389
- * BUGFIX: logout error for old dell powerconnect switches (by @emjemj)
199
+ - model edgecos does not trigger false positives due to uptime and memory utilization (@sq9mev)
200
+ - Use SECRET-DATA hints for hiding secrets in JunOS (@Zmegolaz)
201
+ - comware (@adamboutcher)
390
202
 
391
- ## 0.4.1
392
-
393
- * BUGFIX: handle missing output file (by @brandt)
394
- * BUGFIX: fix passwordless enable on Arista EOS model (by @brandt)
203
+ ## [0.22.0] - 2018-06-03
395
204
 
396
- ## 0.4.0
205
+ ### Added
206
+
207
+ - openbsd model (@amarti2038)
208
+ - comnet model (@jaylik)
209
+ - stoneos model (@macaty)
210
+ - openwrt model (@z00nx)
211
+ - arbos model (@jsynack)
212
+ - ndms model (@yuri-zubov)
213
+ - openwert model (@z00nx)
214
+ - stoneos model (@macaty)
215
+ - comnetms model (@jaylik)
216
+ - openbsd model (@amarti2038)
217
+ - cambium model
218
+ - ssh key passphrase (@wk)
219
+ - cisco spark hook (@rgnv)
220
+ - added support for setting ssh auth methods (@laf)
221
+
222
+ ### Fixed
223
+
224
+ - models procurve, br6910, vyos, fortios, edgeos, vyatta, junos, powerconnect, supermicro, fortios, firewareos, aricentiss, dnos, nxos, hpbladesystem, netgear, xos, boss, opengear, pfsense, asyncos
225
+
226
+ ## [0.21.0] - 2017-11-01
227
+
228
+ ### Added
229
+
230
+ - routeros include system history (@InsaneSplash)
231
+ - vrp added support for removing secrets (@bheum)
232
+ - hirschmann model (@OCangrand)
233
+ - asa added multiple context support (@marnovdm)
234
+ - procurve added additional output (@davama)
235
+ - Updated git commits to bare repo + drop need for temp dir during clone (@asenci)
236
+ - asyncos model (@cd67-usrt)
237
+ - ciscosma model (@cd67-usrt)
238
+ - procurve added transceiver info (@davama)
239
+ - routeros added remove_secret option (@spinza)
240
+ - Updated net-ssh version (@Fauli83)
241
+ - audiocodes model (@Fauli83)
242
+ - Added docs for Huawei VRP devices (@tuxis-ie)
243
+ - ciscosmb added radius key detection (@davama)
244
+ - radware model (@sfini)
245
+ - enterasys model (@koenvdheuvel)
246
+ - weos model (@ignaqui)
247
+ - hpemsa model (@aschaber1)
248
+ - Added nodes_done hook (@danilopopeye)
249
+ - ucs model (@WiXZlo)
250
+ - acsw model (@sfini)
251
+ - aen model (@ZacharyPuls)
252
+ - coriantgroove model (@nickhilliard)
253
+ - sgos model (@seekerOK)
254
+ - powerconnect support password removal (@tobbez)
255
+ - Added haproxy example for Ubuntu (@denvera)
256
+
257
+ ### Fixed
258
+
259
+ - fiberdriver remove configuration generated on from diff (@emjemj)
260
+ - Fix email pass through (@ZacharyPuls)
261
+ - iosxr suppress timestamp (@ja-frog)
262
+ - ios allow lowercase user/pass prompt (@deepseth)
263
+ - Use git show instead of git diff (@asenci)
264
+ - netgear fixed sending enable password and exit/quit (@candlerb)
265
+ - ironware removed space requirement from password prompt (@crami)
266
+ - dlink removed uptime from diff (@rfdrake)
267
+ - planet removed temp from diff (@flokli)
268
+ - ironware removed fan, temp and flash from diff (@Punicaa)
269
+ - panos changed exit to quit (@goebelmeier)
270
+ - fortios remove FDS address from diffs (@bheum)
271
+ - fortios remove additional secrets from diffs (@brunobritocarvalho)
272
+ - fortios remove IPS URL DB (@brunobritocarvalho)
273
+ - voss remove temperature, power and uptime from diff (@ospfbgp)
397
274
 
398
- * FEATURE: allow setting IP address in addition to name in source (SQL/CSV)
399
- * FEATURE: approximate how long it takes to get node from larger view than 1
400
- * FEATURE: unconditionally start new job if too long has passed since previous start
401
- * FEATURE: add enable to Arista EOS model
402
- * FEATURE: add rugged dependency in gemspec
403
- * FEATURE: log prompt detection failures
404
- * BUGFIX: xos while using telnet (by @fhibler)
405
- * BUGFIX: ironware logout on some models (by @fhibler)
406
- * BUGFIX: allow node to be removed while it is being collected
407
- * BUGFIX: if model returns non string value, return empty string
408
- * BUGFIX: better prompt for Arista EOS model (by @rodecker)
409
- * BUGFIX: improved configuration handling for Arista EOS model (by @rodecker)
275
+ ## [0.20.0] - 2017-05-14
410
276
 
411
- ## 0.3.0
277
+ ### Added
412
278
 
413
- * FEATURE: *FIXME* bunch of stuff I did for richih, docs needed
414
- * FEATURE: ComWare model (by erJasp)
415
- * FEATURE: Add comment support for router.db file
416
- * FEATURE: Add input debugging and related configuration options
417
- * BUGFIX: Fix ASA model prompt
418
- * BUGFIX: Fix Aruba model display
419
- * BUGFIX: Fix changing output in PowerConnect model
279
+ - gpg support for CSV source (@elmobp)
280
+ - slackdiff (@natm)
281
+ - gitcrypt output model (@clement-parisot)
282
+ - model specific credentials (@davromaniak)
283
+ - hierarchical json in http source model
284
+ - next-adds-job config toggle (to add new job when ever /next is called)
285
+ - netgear model (@aschaber1)
286
+ - zhone model (@rfdrake)
287
+ - tplink model (@mediumo)
288
+ - oneos model (@crami)
289
+ - cisco NGA model (@udhos)
290
+ - voltaire model (@clement-parisot)
291
+ - siklu model (@bdg-robert)
292
+ - voss model (@ospfbgp)
420
293
 
421
- ## 0.2.4
294
+ ### Fixed
422
295
 
423
- * FEATURE: Cisco SMB (Nikola series VxWorks) model by @thetamind
424
- * FEATURE: Extreme Networks XOS model (access by sjm)
425
- * FEATURE: Brocade NOS (Network Operating System) (access by sjm)
426
- * BUGFIX: Match exactly to node[:name] if node[name] is an ip address.
296
+ - ios, cumulus, ironware, nxos, fiberdiver, aosw, fortios, comware, procurve, opengear, timos, routeros, junos, asa, aireos, mlnxos, pfsense, saos, powerconnect, firewareos, quantaos
427
297
 
428
- ## 0.2.3
298
+ ## [0.19.0] - 2016-12-12
429
299
 
430
- * BUGFIX: rescue @ssh.close when far end closes disgracefully (ALU ISAM)
431
- * BUGFIX: bugfixes to models
432
- * FEATURE: Alcatel-Lucent ISAM 7302/7330 model added by @jalmargyyk
433
- * FEATURE: Huawei VRP model added by @jalmargyyk
434
- * FEATURE: Ubiquiti AirOS added by @willglyn
435
- * FEATURE: Support 'input' debug in config, ssh/telnet use it to write session log
300
+ ### Added
436
301
 
437
- ## 0.2.2
302
+ - allow setting ssh_keys (not relying on openssh config) (@denvera)
303
+ - fujitsupy model (@stokbaek)
304
+ - fiberdriver model (@emjemj)
305
+ - hpbladesystems model (@flokli)
306
+ - planetsgs model (@flokli)
307
+ - trango model (@rfdrake)
308
+ - casa model (@rfdrake)
309
+ - dlink model (@rfdrake)
310
+ - hatteras model (@rfdrake)
311
+ - ability to ignore SSL certs in http (@laf)
312
+ - awsns hooks, publish messages to AWS SNS topics (@natm)
438
313
 
439
- * BUGFIX: mark node as failure if unknown error is raised
314
+ ### Fixed
440
315
 
441
- ## 0.2.1
316
+ - pfsense, dnos, powerconnect, ciscosmb, eos, aosw
442
317
 
443
- * BUGFIX: vars variable resolving for main level vars
318
+ ## [0.18.0] - 2016-10-14
444
319
 
445
- ## 0.2.0
320
+ ### Added
446
321
 
447
- * FEATURE: Force10 model added by @lysiszegerman
448
- * FEATURE: ScreenOS model added by @lysiszegerman
449
- * FEATURE: FabricOS model added by @thakala
450
- * FEATURE: ASA model added by @thakala
451
- * FEATURE: Vyattamodel added by @thakala
452
- * BUGFIX: Oxidized::String convenience methods for models fixed
453
-
454
- ## 0.1.1
455
-
456
- * BUGFIX: vars needs to return value of r, not value of evaluation
322
+ - APC model (by @davromaniak)
323
+
324
+ ### Fixed
325
+
326
+ - ironware, aosw
327
+ - interpolate nil, false, true for node vars too
328
+
329
+ ## [0.17.0] - 2016-09-28
330
+
331
+ ### Added
332
+
333
+ - "nil", "false" and "true" in source (e.g. router.db) are interpeted as nil, false, true. Empty is now always considered empty string, instead of in some cases nil and some cases empty string.
334
+ - support tftp as input model (@MajesticFalcon)
335
+ - add alvarion model (@MajesticFalcon)
336
+ - detect if ssh wants password terminal/CLI prompt or not
337
+ - node (group, model, username, password) resolution refactoring, supports wider range of use-cases
338
+
339
+ ### Fixed
340
+
341
+ - fetch for file output (@danilopopeye)
342
+ - net-ssh version specification
343
+ - routeros, catos, pfsense
344
+
345
+ ## [0.16.3] - 2016-08-25
346
+
347
+ ### Added
348
+
349
+ - pfsense support (by @stokbaek)
350
+
351
+ ### Fixed
352
+
353
+ - cumulus prompt not working with default switch configs (by @nertwork)
354
+ - disconnect ssh when prompt wasn't found (by @andir)
355
+ - saos, asa, acos, timos updates, cumulus
356
+
357
+ ## [0.16.2] - 2016-07-28
358
+
359
+ ### Fixed
360
+
361
+ - when not using git (by @danilopopeye)
362
+ - screenos update
363
+
364
+ ## [0.16.1] - 2016-07-22
365
+
366
+ ### Fixed
367
+
368
+ - unnecessary puts statement removed from git.rb
369
+
370
+ ## [0.16.0] - 2016-07-22
371
+
372
+ ### Added
373
+
374
+ - support Gaia OS devices (by @totosh)
375
+
376
+ ### Fixed
377
+
378
+ - #fetch, #version fixes in nodes.rb (by @danilopopeye)
379
+ - procurve
380
+
381
+ ## [0.15.0] - 2016-07-11
382
+
383
+ ### Added
384
+
385
+ - disable periodic collection, only on demand (by Adam Winberg)
386
+ - allow disabling ssh exec mode always (mainly for oxidized-script) (by @nickhilliard)
387
+ - support mellanox devices (by @ham5ter)
388
+ - support firewireos devices (by @alexandre-io)
389
+ - support quanta devices (by @f0o)
390
+ - support tellabs coriant8800, coriant8600 (by @udhos)
391
+ - support brocade6910 (by @cardboardpig)
392
+
393
+ ### Fixed
394
+
395
+ - debugging, tests (by @ElvinEfendi)
396
+ - nos, panos, acos, procurve, eos, edgeswitch, aosw, fortios updates
397
+
398
+ ## [0.14.3] - 2016-05-25
399
+
400
+ ### Fixed
401
+
402
+ - fix git when using multiple groups without single_repo
403
+
404
+ ## [0.14.2] - 2016-05-19
405
+
406
+ ### Fixed
407
+
408
+ - git expand path for all groups
409
+ - git get_version, teletubbies do it again
410
+ - comware, acos, procurve models
411
+
412
+ ## [0.14.1] - 2016-05-06
413
+
414
+ ### Fixed
415
+
416
+ - git get_version when groups and single_repo are used
417
+
418
+ ## [0.14.0] - 2016-05-05
419
+
420
+ ### Added
421
+
422
+ - support supermicro swithes (by @funzoneq)
423
+ - support catos switches
424
+
425
+ ### Fixed
426
+
427
+ - git+groups+singlerepo (by @PANZERBARON)
428
+ - asa, tmos, ironware, ios-xr
429
+ - mandate net-ssh 3.0.x, don't accept 3.1 (numerous issues)
430
+
431
+ ## [0.13.1] - 2016-03-30
432
+
433
+ ### Fixed
434
+
435
+ - file permissions (Sigh...)
436
+
437
+ ## [0.13.0] - 2016-03-30
438
+
439
+ ### Added
440
+
441
+ - http post for configs (by @jgroom33)
442
+ - support ericsson redbacks (by @roedie)
443
+ - support motorola wireless controllers (by @roadie)
444
+ - support citrix netscaler (by @roadie)
445
+ - support datacom devices (by @danilopopeye)
446
+ - support netonix devices
447
+ - support specifying ssh cipher and kex (by @roadie)
448
+ - rename proxy to ssh_proxy (by @roadie)
449
+ - support ssh keys on ssh_proxy (by @awix)
450
+
451
+ ### Fixed
452
+
453
+ - various (by @danilopopeye)
454
+ - Node#repo with groups (by @danilopopeye)
455
+ - githubrepohoook (by @danilopopeye)
456
+ - fortios, airos, junos, xos, edgeswitch, nos, tmos, procurve, ipos models
457
+
458
+ ## [0.12.2] - 2016-02-06
459
+
460
+ ### Fixed
461
+
462
+ - more MRV model fixes (by @natm)
463
+
464
+ ## [0.12.1] - 2016-02-06
465
+
466
+ ### Fixed
467
+
468
+ - set term to vty100
469
+ - MRV model fixes (by @natm)
470
+
471
+ ## [0.12.0] - 2016-02-05
472
+
473
+ ### Added
474
+
475
+ - enhance AOSW (by @mikebryant)
476
+ - F5 TMOS support (by @mikebryant)
477
+ - Opengear support (by @mikebryant)
478
+ - EdgeSwitch support (by @doogieconsulting)
479
+
480
+ ### Fixed
481
+
482
+ - rename input debug log files
483
+ - powerconnect model fixes (by @Madpilot0)
484
+ - fortigate model fixes (by @ElvinEfendi)
485
+ - various (by @mikebryant)
486
+ - write SSH debug to file without buffering
487
+ - fix IOS XR prompt handling
488
+
489
+ ## [0.11.0] - 2016-01-27
490
+
491
+ ### Added
492
+
493
+ - ssh proxycommand (by @ElvinEfendi)
494
+ - basic auth in HTTP source (by @laf)
495
+
496
+ ### Fixed
497
+
498
+ - do not inject string to output before model gets it
499
+ - store pidfile in oxidized root
500
+
501
+ ## [0.10.0] - 2016-01-06
502
+
503
+ ### Added
504
+
505
+ - Various refactoring (by @ElvinEfendi)
506
+ - Ciena SOAS support (by @jgroom33)
507
+ - support group variables (by @supertylerc)
508
+
509
+ ### Fixed
510
+
511
+ - various ((orly)) (by @marnovdm, @danbaugher, @MrRJ45, @asynet, @nickhilliard)
512
+
513
+ ## [0.9.0] - 2015-11-06
514
+
515
+ ### Added
516
+
517
+ - input log now uses devices name as file, instead of string from config (by @skoef)
518
+ - Dell Networkign OS (dnos) support (by @erefre)
519
+
520
+ ### Fixed
521
+
522
+ - CiscoSMB, powerconnect, comware, xos, ironware, nos fixes
523
+
524
+ ## [0.8.1] - 2015-09-17
525
+
526
+ ### Fixed
527
+
528
+ - restore ruby 1.9.3 compatibility
529
+
530
+ ## [0.8.0] - 2015-09-14
531
+
532
+ ### Added
533
+
534
+ - hooks (by @aakso)
535
+ - MRV MasterOS support (by @kwibbly)
536
+ - EdgeOS support (by @laf)
537
+ - FTP input and Zyxel ZynOS support (by @ytti)
538
+ - version and diffs API For oxidized-web (by @FlorianDoublet)
539
+
540
+ ### Fixed
541
+
542
+ - aosw, ironware, routeros, xos models
543
+ - crash with 0 nodes
544
+ - ssh auth fail without keyboard-interactive
545
+
546
+ ## [0.7.1] - 2015-05-26
547
+
548
+ ### Fixed
549
+
550
+ - rugged is again in gemspec (mandatory) (@ytti)
551
+
552
+ ## [0.7.0] - 2015-05-21
553
+
554
+ ### Added
555
+
556
+ - support http source (by @laf)
557
+ - support Palo Alto PANOS (by @rixxxx)
558
+
559
+ ### Fixed
560
+
561
+ - screenos fixes (by @rixxxx)
562
+ - allow 'none' auth in ssh (spotted by @SaldoorMike, needed by ciscosmb+aireos)
563
+
564
+ ## [0.6.0] - 2015-04-22
565
+
566
+ ### Added
567
+
568
+ - support cumulus linux (by @FlorianDoublet)
569
+ - support HP Comware SMB siwtches (by @sid3windr)
570
+ - remove secret additions (by @rodecker)
571
+ - option to put all groups in single repo (by @ytti)
572
+ - expand path in source: csv: (so that ~/foo/bar works) (by @ytti)
573
+
574
+ ### Fixed
575
+
576
+ - screenos fixes (by @rixxxx)
577
+ - ironware fixes (by @FlorianDoublet)
578
+ - powerconnect fixes (by @sid3windr)
579
+ - don't ask interactive password in new net/ssh (by @ytti)
580
+
581
+ ## [0.5.0] - 2015-04-03
582
+
583
+ ### Added
584
+
585
+ - Mikrotik RouterOS model (by @emjemj)
586
+ - add support for Cisco VSS (by @MrRJ45)
587
+
588
+ ### Fixed
589
+
590
+ - general fixes to powerconnect model (by @MrRJ45)
591
+ - fix initial commit issues with rugged (by @MrRJ45)
592
+ - pager error for old dell powerconnect switches (by @emjemj)
593
+ - logout error for old dell powerconnect switches (by @emjemj)
594
+
595
+ ## [0.4.1] - 2015-03-10
596
+
597
+ ### Fixed
598
+
599
+ - handle missing output file (by @brandt)
600
+ - fix passwordless enable on Arista EOS model (by @brandt)
601
+
602
+ ## [0.4.0] - 2015-03-06
603
+
604
+ ### Added
605
+
606
+ - allow setting IP address in addition to name in source (SQL/CSV)
607
+ - approximate how long it takes to get node from larger view than 1
608
+ - unconditionally start new job if too long has passed since previous start
609
+ - add enable to Arista EOS model
610
+ - add rugged dependency in gemspec
611
+ - log prompt detection failures
612
+
613
+ ### Fixed
614
+
615
+ - xos while using telnet (by @fhibler)
616
+ - ironware logout on some models (by @fhibler)
617
+ - allow node to be removed while it is being collected
618
+ - if model returns non string value, return empty string
619
+ - better prompt for Arista EOS model (by @rodecker)
620
+ - improved configuration handling for Arista EOS model (by @rodecker)
621
+
622
+ ## [0.3.0] - 2015-02-13
623
+
624
+ ### Added
625
+
626
+ - *FIXME* bunch of stuff I did for richih, docs needed
627
+ - ComWare model (by erJasp)
628
+ - Add comment support for router.db file
629
+ - Add input debugging and related configuration options
630
+
631
+ ### Fixed
632
+
633
+ - Fix ASA model prompt
634
+ - Fix Aruba model display
635
+ - Fix changing output in PowerConnect model
636
+
637
+ ## [0.2.4] - 2015-02-02
638
+
639
+ ### Added
640
+
641
+ - Cisco SMB (Nikola series VxWorks) model by @thetamind
642
+ - Extreme Networks XOS model (access by sjm)
643
+ - Brocade NOS (Network Operating System) (access by sjm)
644
+
645
+ ### Fixed
646
+
647
+ - Match exactly to node[:name] if node[name] is an ip address.
648
+
649
+ ## [0.2.3] - 2014-08-16
650
+
651
+ ### Added
652
+
653
+ - Alcatel-Lucent ISAM 7302/7330 model added by @jalmargyyk
654
+ - Huawei VRP model added by @jalmargyyk
655
+ - Ubiquiti AirOS added by @willglyn
656
+ - Support 'input' debug in config, ssh/telnet use it to write session log
657
+
658
+ ### Fixed
659
+
660
+ - rescue @ssh.close when far end closes disgracefully (ALU ISAM)
661
+ - bugfixes to models
662
+
663
+ ## [0.2.2] - 2014-07-24
664
+
665
+ ### Fixed
666
+
667
+ - mark node as failure if unknown error is raised
668
+
669
+ ## [0.2.1] - 2014-07-24
670
+
671
+ ### Fixed
672
+
673
+ - vars variable resolving for main level vars
674
+
675
+ ## [0.2.0] - 2014-07-24
676
+
677
+ ### Added
678
+
679
+ - Force10 model added by @lysiszegerman
680
+ - ScreenOS model added by @lysiszegerman
681
+ - FabricOS model added by @thakala
682
+ - ASA model added by @thakala
683
+ - Vyattamodel added by @thakala
684
+
685
+ ### Fixed
686
+
687
+ - Oxidized::String convenience methods for models fixed
688
+
689
+ ## [0.1.1] - 2014-07-21
690
+
691
+ ### Fixed
692
+
693
+ - vars needs to return value of r, not value of evaluation