oxidized 0.20.0 → 0.28.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +5 -5
  2. data/.codeclimate.yml +4 -0
  3. data/.github/PULL_REQUEST_TEMPLATE.md +12 -0
  4. data/.github/no-response.yml +13 -0
  5. data/.github/workflows/publishdocker.yml +13 -0
  6. data/.gitignore +4 -0
  7. data/.rubocop.yml +73 -0
  8. data/.rubocop_todo.yml +120 -0
  9. data/.travis.yml +6 -1
  10. data/CHANGELOG.md +693 -243
  11. data/Dockerfile +27 -19
  12. data/LICENSE +201 -0
  13. data/README.md +234 -913
  14. data/Rakefile +48 -7
  15. data/TODO.md +29 -23
  16. data/bin/console +1 -1
  17. data/bin/oxidized +6 -5
  18. data/docs/Configuration.md +313 -0
  19. data/docs/Creating-Models.md +140 -0
  20. data/docs/Hooks.md +274 -0
  21. data/docs/Model-Notes/AireOS.md +11 -0
  22. data/docs/Model-Notes/ArbOS.md +11 -0
  23. data/docs/Model-Notes/Comware.md +13 -0
  24. data/docs/Model-Notes/Cumulus.md +40 -0
  25. data/docs/Model-Notes/EOS.md +12 -0
  26. data/docs/Model-Notes/IOS.md +29 -0
  27. data/docs/Model-Notes/JunOS.md +33 -0
  28. data/docs/Model-Notes/LinuxGeneric.md +24 -0
  29. data/docs/Model-Notes/Netgear.md +87 -0
  30. data/docs/Model-Notes/Nokia.md +9 -0
  31. data/docs/Model-Notes/README.md +24 -0
  32. data/docs/Model-Notes/SmartAX-Huawei.md +35 -0
  33. data/docs/Model-Notes/VRP-Huawei.md +34 -0
  34. data/docs/Model-Notes/Viptela.md +12 -0
  35. data/docs/Model-Notes/XGS4600-Zyxel.md +36 -0
  36. data/docs/Outputs.md +190 -0
  37. data/docs/Ruby-API.md +199 -0
  38. data/docs/Sources.md +171 -0
  39. data/docs/Supported-OS-Types.md +227 -0
  40. data/docs/Troubleshooting.md +66 -0
  41. data/extra/nagios_check_failing_nodes.rb +9 -2
  42. data/extra/oxidized-report-git-commits +21 -40
  43. data/extra/oxidized-ubuntu.haproxy +45 -0
  44. data/extra/oxidized.logrotate +7 -0
  45. data/extra/oxidized.service +13 -0
  46. data/extra/rest_client.rb +7 -10
  47. data/extra/syslog.rb +47 -42
  48. data/lib/oxidized/cli.rb +41 -31
  49. data/lib/oxidized/config/vars.rb +9 -14
  50. data/lib/oxidized/config.rb +20 -13
  51. data/lib/oxidized/core.rb +8 -10
  52. data/lib/oxidized/hook/awssns.rb +6 -7
  53. data/lib/oxidized/hook/ciscosparkdiff.rb +43 -0
  54. data/lib/oxidized/hook/exec.rb +19 -24
  55. data/lib/oxidized/hook/githubrepo.rb +17 -17
  56. data/lib/oxidized/hook/noophook.rb +1 -1
  57. data/lib/oxidized/hook/slackdiff.rb +32 -19
  58. data/lib/oxidized/hook/xmppdiff.rb +59 -0
  59. data/lib/oxidized/hook.rb +63 -64
  60. data/lib/oxidized/input/cli.rb +22 -12
  61. data/lib/oxidized/input/exec.rb +28 -0
  62. data/lib/oxidized/input/ftp.rb +16 -15
  63. data/lib/oxidized/input/http.rb +72 -0
  64. data/lib/oxidized/input/input.rb +6 -6
  65. data/lib/oxidized/input/ssh.rb +64 -56
  66. data/lib/oxidized/input/telnet.rb +59 -102
  67. data/lib/oxidized/input/tftp.rb +9 -10
  68. data/lib/oxidized/jobs.rb +9 -10
  69. data/lib/oxidized/manager.rb +42 -44
  70. data/lib/oxidized/model/acos.rb +19 -20
  71. data/lib/oxidized/model/acsw.rb +62 -0
  72. data/lib/oxidized/model/adtran.rb +26 -0
  73. data/lib/oxidized/model/aen.rb +19 -0
  74. data/lib/oxidized/model/aireos.rb +9 -10
  75. data/lib/oxidized/model/airfiber.rb +22 -0
  76. data/lib/oxidized/model/alteonos.rb +58 -0
  77. data/lib/oxidized/model/alvarion.rb +0 -4
  78. data/lib/oxidized/model/aos.rb +11 -5
  79. data/lib/oxidized/model/aos7.rb +6 -7
  80. data/lib/oxidized/model/aosw.rb +30 -27
  81. data/lib/oxidized/model/apc_aos.rb +2 -5
  82. data/lib/oxidized/model/arbos.rb +26 -0
  83. data/lib/oxidized/model/aricentiss.rb +49 -0
  84. data/lib/oxidized/model/asa.rb +61 -22
  85. data/lib/oxidized/model/asyncos.rb +46 -0
  86. data/lib/oxidized/model/audiocodes.rb +28 -0
  87. data/lib/oxidized/model/audiocodesmp.rb +28 -0
  88. data/lib/oxidized/model/awplus.rb +84 -0
  89. data/lib/oxidized/model/axos.rb +16 -0
  90. data/lib/oxidized/model/boss.rb +77 -0
  91. data/lib/oxidized/model/br6910.rb +42 -45
  92. data/lib/oxidized/model/c4cmts.rb +6 -10
  93. data/lib/oxidized/model/cambium.rb +23 -0
  94. data/lib/oxidized/model/casa.rb +1 -1
  95. data/lib/oxidized/model/catos.rb +1 -3
  96. data/lib/oxidized/model/cisconga.rb +1 -3
  97. data/lib/oxidized/model/ciscosma.rb +42 -0
  98. data/lib/oxidized/model/ciscosmb.rb +30 -10
  99. data/lib/oxidized/model/ciscovpn3k.rb +11 -0
  100. data/lib/oxidized/model/cnos.rb +33 -0
  101. data/lib/oxidized/model/comnetms.rb +43 -0
  102. data/lib/oxidized/model/comtrol.rb +41 -0
  103. data/lib/oxidized/model/comware.rb +28 -16
  104. data/lib/oxidized/model/coriant8600.rb +3 -5
  105. data/lib/oxidized/model/coriantgroove.rb +26 -0
  106. data/lib/oxidized/model/corianttmos.rb +1 -3
  107. data/lib/oxidized/model/cumulus.rb +60 -49
  108. data/lib/oxidized/model/datacom.rb +1 -4
  109. data/lib/oxidized/model/dcnos.rb +46 -0
  110. data/lib/oxidized/model/dellx.rb +76 -0
  111. data/lib/oxidized/model/dlink.rb +5 -4
  112. data/lib/oxidized/model/dnos.rb +11 -5
  113. data/lib/oxidized/model/eciapollo.rb +34 -0
  114. data/lib/oxidized/model/edgecos.rb +49 -0
  115. data/lib/oxidized/model/edgeos.rb +12 -5
  116. data/lib/oxidized/model/edgeswitch.rb +2 -4
  117. data/lib/oxidized/model/enterasys.rb +28 -0
  118. data/lib/oxidized/model/eos.rb +8 -8
  119. data/lib/oxidized/model/fabricos.rb +4 -6
  120. data/lib/oxidized/model/fastiron.rb +66 -0
  121. data/lib/oxidized/model/fiberdriver.rb +2 -2
  122. data/lib/oxidized/model/firebrick.rb +31 -0
  123. data/lib/oxidized/model/firelinuxos.rb +41 -0
  124. data/lib/oxidized/model/firewareos.rb +3 -6
  125. data/lib/oxidized/model/fortios.rb +31 -19
  126. data/lib/oxidized/model/ftos.rb +8 -5
  127. data/lib/oxidized/model/fujitsupy.rb +5 -7
  128. data/lib/oxidized/model/gaiaos.rb +7 -11
  129. data/lib/oxidized/model/gcombnps.rb +84 -0
  130. data/lib/oxidized/model/grandstream.rb +9 -0
  131. data/lib/oxidized/model/hatteras.rb +9 -6
  132. data/lib/oxidized/model/hirschmann.rb +39 -0
  133. data/lib/oxidized/model/hpebladesystem.rb +20 -18
  134. data/lib/oxidized/model/hpemsa.rb +10 -0
  135. data/lib/oxidized/model/hpmsm.rb +84 -0
  136. data/lib/oxidized/model/ibos.rb +55 -0
  137. data/lib/oxidized/model/icotera.rb +27 -0
  138. data/lib/oxidized/model/ios.rb +63 -70
  139. data/lib/oxidized/model/iosxe.rb +5 -0
  140. data/lib/oxidized/model/iosxr.rb +2 -3
  141. data/lib/oxidized/model/ipos.rb +10 -6
  142. data/lib/oxidized/model/ironware.rb +20 -19
  143. data/lib/oxidized/model/isam.rb +5 -6
  144. data/lib/oxidized/model/junos.rb +9 -11
  145. data/lib/oxidized/model/linuxgeneric.rb +74 -0
  146. data/lib/oxidized/model/masteros.rb +3 -6
  147. data/lib/oxidized/model/mlnxos.rb +9 -10
  148. data/lib/oxidized/model/model.rb +72 -46
  149. data/lib/oxidized/model/mtrlrfs.rb +1 -4
  150. data/lib/oxidized/model/ndms.rb +23 -0
  151. data/lib/oxidized/model/netgear.rb +35 -15
  152. data/lib/oxidized/model/netonix.rb +2 -2
  153. data/lib/oxidized/model/netscaler.rb +6 -3
  154. data/lib/oxidized/model/nos.rb +5 -7
  155. data/lib/oxidized/model/nsxconfig.rb +22 -0
  156. data/lib/oxidized/model/nsxfirewall.rb +22 -0
  157. data/lib/oxidized/model/nxos.rb +13 -3
  158. data/lib/oxidized/model/oneos.rb +15 -9
  159. data/lib/oxidized/model/openbsd.rb +63 -0
  160. data/lib/oxidized/model/opengear.rb +3 -5
  161. data/lib/oxidized/model/openwrt.rb +78 -0
  162. data/lib/oxidized/model/opnsense.rb +19 -0
  163. data/lib/oxidized/model/os10.rb +46 -0
  164. data/lib/oxidized/model/outputs.rb +5 -7
  165. data/lib/oxidized/model/panos.rb +11 -12
  166. data/lib/oxidized/model/pfsense.rb +11 -6
  167. data/lib/oxidized/model/planet.rb +14 -17
  168. data/lib/oxidized/model/powerconnect.rb +24 -19
  169. data/lib/oxidized/model/procurve.rb +43 -11
  170. data/lib/oxidized/model/purityos.rb +12 -0
  171. data/lib/oxidized/model/qtech.rb +41 -0
  172. data/lib/oxidized/model/quantaos.rb +4 -6
  173. data/lib/oxidized/model/raisecom.rb +19 -0
  174. data/lib/oxidized/model/routeros.rb +26 -8
  175. data/lib/oxidized/model/saos.rb +1 -2
  176. data/lib/oxidized/model/screenos.rb +8 -11
  177. data/lib/oxidized/model/sgos.rb +45 -0
  178. data/lib/oxidized/model/siklu.rb +1 -3
  179. data/lib/oxidized/model/slxos.rb +59 -0
  180. data/lib/oxidized/model/smartax.rb +25 -0
  181. data/lib/oxidized/model/sonicos.rb +51 -0
  182. data/lib/oxidized/model/speedtouch.rb +34 -0
  183. data/lib/oxidized/model/sros.rb +96 -0
  184. data/lib/oxidized/model/stoneos.rb +32 -0
  185. data/lib/oxidized/model/supermicro.rb +6 -41
  186. data/lib/oxidized/model/tdre.rb +30 -0
  187. data/lib/oxidized/model/telco.rb +24 -0
  188. data/lib/oxidized/model/timos.rb +6 -114
  189. data/lib/oxidized/model/tmos.rb +6 -3
  190. data/lib/oxidized/model/tplink.rb +11 -11
  191. data/lib/oxidized/model/trango.rb +21 -42
  192. data/lib/oxidized/model/ucs.rb +30 -0
  193. data/lib/oxidized/model/viptela.rb +29 -0
  194. data/lib/oxidized/model/voltaire.rb +9 -12
  195. data/lib/oxidized/model/voss.rb +17 -6
  196. data/lib/oxidized/model/vrp.rb +11 -6
  197. data/lib/oxidized/model/vyatta.rb +8 -6
  198. data/lib/oxidized/model/weos.rb +20 -0
  199. data/lib/oxidized/model/xos.rb +20 -8
  200. data/lib/oxidized/model/zhoneolt.rb +2 -2
  201. data/lib/oxidized/model/zynos.rb +1 -3
  202. data/lib/oxidized/model/zynoscli.rb +36 -0
  203. data/lib/oxidized/model/zynosgs.rb +38 -0
  204. data/lib/oxidized/node/stats.rb +33 -8
  205. data/lib/oxidized/node.rb +86 -95
  206. data/lib/oxidized/nodes.rb +48 -44
  207. data/lib/oxidized/output/file.rb +32 -37
  208. data/lib/oxidized/output/git.rb +138 -153
  209. data/lib/oxidized/output/gitcrypt.rb +228 -242
  210. data/lib/oxidized/output/http.rb +35 -34
  211. data/lib/oxidized/output/output.rb +2 -3
  212. data/lib/oxidized/source/csv.rb +50 -44
  213. data/lib/oxidized/source/http.rb +58 -58
  214. data/lib/oxidized/source/source.rb +9 -10
  215. data/lib/oxidized/source/sql.rb +47 -45
  216. data/lib/oxidized/string.rb +18 -14
  217. data/lib/oxidized/version.rb +17 -1
  218. data/lib/oxidized/worker.rb +72 -33
  219. data/oxidized.gemspec +20 -19
  220. metadata +180 -36
  221. data/.ruby-version +0 -1
  222. data/Gemfile.lock +0 -44
data/CHANGELOG.md CHANGED
@@ -1,243 +1,693 @@
1
- # 0.20.0
2
- - FEATURE: gpg support for CSV source (@elmobp)
3
- - FEATURE: slackdiff (@natm)
4
- - FEATURE: gitcrypt output model (@clement-parisot)
5
- - FEATURE: model specific credentials (@davromaniak)
6
- - FEATURE: hierarchical json in http source model
7
- - FEATURE: next-adds-job config toggle (to add new job when ever /next is called)
8
- - FEATURE: netgear model (@aschaber1)
9
- - FEATURE: zhone model (@rfdrake)
10
- - FEATURE: tplink model (@mediumo)
11
- - FEATURE: oneos model (@crami)
12
- - FEATURE: cisco NGA model (@udhos)
13
- - FEATURE: voltaire model (@clement-parisot)
14
- - FEATURE: siklu model (@bdg-robert)
15
- - FEATURE: voss model (@ospfbgp)
16
- - BUGFIX: ios, cumulus, ironware, nxos, fiberdiver, aosw, fortios, comware, procurve, opengear, timos, routeros, junos, asa, aireos, mlnxos, pfsense, saos, powerconnect, firewareos, quantaos
17
-
18
- # 0.19.0
19
- - FEATURE: allow setting ssh_keys (not relying on openssh config) (@denvera)
20
- - FEATURE: fujitsupy model (@stokbaek)
21
- - FEATURE: fiberdriver model (@emjemj)
22
- - FEATURE: hpbladesystems model (@flokli)
23
- - FEATURE: planetsgs model (@flokli)
24
- - FEATURE: trango model (@rfdrake)
25
- - FEATURE: casa model (@rfdrake)
26
- - FEATURE: dlink model (@rfdrake)
27
- - FEATURE: hatteras model (@rfdrake)
28
- - FEATURE: ability to ignore SSL certs in http (@laf)
29
- - FEATURE: awsns hooks, publish messages to AWS SNS topics (@natm)
30
- - BUGFIX: pfsense, dnos, powerconnect, ciscosmb, eos, aosw
31
-
32
- # 0.18.0
33
- - FEATURE: APC model (by @davromaniak )
34
- - BUGFIX: ironware, aosw
35
- - BUGFIX: interpolate nil, false, true for node vars too
36
-
37
- # 0 17.0
38
- - 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.
39
- - FEATURE: support tftp as input model (@MajesticFalcon)
40
- - FEATURE: add alvarion model (@MajesticFalcon)
41
- - FEATURE: detect if ssh wants password terminal/CLI prompt or not
42
- - FEATURE: node (group, model, username, password) resolution refactoring, supports wider range of use-cases
43
- - BUGFIX: fetch for file output (@danilopopeye)
44
- - BUGFIX: net-ssh version specification
45
- - BUGFIX: routeros, catos, pfsense
46
-
47
- # 0.16.3
48
- - FEATURE: pfsense support (by @stokbaek)
49
- - BUGFIX: cumulus prompt not working with default switch configs (by @nertwork)
50
- - BUGFIX: disconnect ssh when prompt wasn't found (by @andir)
51
- - BUGFIX: saos, asa, acos, timos updates, cumulus
52
-
53
- # 0.16.2
54
- - BUGFIX: when not using git (by @danilopopeye)
55
- - BUGFIX: screenos update
56
-
57
- # 0.16.1
58
- - BUGFIX: unnecessary puts statement removed from git.rb
59
-
60
- # 0.16.0
61
- - FEATURE: support Gaia OS devices (by @totosh)
62
- - BUGFIX: #fetch, #version fixes in nodes.rb (by @danilopopeye)
63
- - BUGFIX: procurve
64
-
65
- # 0.15.0
66
- - FEATURE: disable periodic collection, only on demand (by Adam Winberg)
67
- - FEATURE: allow disabling ssh exec mode always (mainly for oxidized-script) (by @nickhilliard)
68
- - FEATURE: support mellanox devices (by @ham5ter)
69
- - FEATURE: support firewireos devices (by @alexandre-io)
70
- - FEATURE: support quanta devices (by @f0o)
71
- - FEATURE: support tellabs coriant8800, coriant8600 (by @udhos)
72
- - FEATURE: support brocade6910 (by @cardboardpig)
73
- - BUGFIX: debugging, tests (by @ElvinEfendi)
74
- - BUGFIX: nos, panos, acos, procurve, eos, edgeswitch, aosw, fortios updates
75
-
76
- # 0.14.3
77
- - BUGFIX: fix git when using multiple groups without single_repo
78
-
79
- # 0.14.2
80
- - BUGFIX: git expand path for all groups
81
- - BUGFIX: git get_version, teletubbies do it again
82
- - BUGFIX: comware, acos, procurve models
83
-
84
- # 0.14.1
85
- - BUGFIX: git get_version when groups and single_repo are used
86
-
87
- # 0.14.0
88
- - FEATURE: support supermicro swithes (by @funzoneq)
89
- - FEATURE: support catos switches
90
- - BUGFIX: git+groups+singlerepo (by @PANZERBARON)
91
- - BUGFIX: asa, tmos, ironware, ios-xr
92
- - BUGFIX: mandate net-ssh 3.0.x, don't accept 3.1 (numerous issues)
93
-
94
- # 0.13.1
95
- - BUGFIX: file permissions (Sigh...)
96
-
97
- # 0.13.0
98
- - FEATURE: http post for configs (by @jgroom33)
99
- - FEATURE: support ericsson redbacks (by @roedie)
100
- - FEATURE: support motorola wireless controllers (by @roadie)
101
- - FEATURE: support citrix netscaler (by @roadie)
102
- - FEATURE: support datacom devices (by @danilopopeye)
103
- - FEATURE: support netonix devices
104
- - FEATURE: support specifying ssh cipher and kex (by @roadie)
105
- - FEATURE: rename proxy to ssh_proxy (by @roadie)
106
- - FEATURE: support ssh keys on ssh_proxy (by @awix)
107
- - BUGFIX: various (by @danilopopeye)
108
- - BUGFIX: Node#repo with groups (by @danilopopeye)
109
- - BUGFIX: githubrepohoook (by @danilopopeye)
110
- - BUGFIX: fortios, airos, junos, xos, edgeswitch, nos, tmos, procurve, ipos models
111
-
112
- # 0.12.2
113
- - BUGFIX: more MRV model fixes (by @natm)
114
-
115
- # 0.12.1
116
- - BUGFIX: set term to vty100
117
- - BUGFIX: MRV model fixes (by @natm)
118
-
119
- # 0.12.0
120
- - FEATURE: enhance AOSW (by @mikebryant)
121
- - FEATURE: F5 TMOS support (by @mikebryant)
122
- - FEATURE: Opengear support (by @mikebryant)
123
- - FEATURE: EdgeSwitch support (by @doogieconsulting)
124
- - BUGFIX: rename input debug log files
125
- - BUGFIX: powerconnect model fixes (by @Madpilot0)
126
- - BUGFIX: fortigate model fixes (by @ElvinEfendi)
127
- - BUGFIX: various (by @mikebryant)
128
- - BUGFIX: write SSH debug to file without buffering
129
- - BUGFIX: fix IOS XR prompt handling
130
-
131
- # 0.11.0
132
- - FEATURE: ssh proxycommand (by @ElvinEfendi)
133
- - FEATURE: basic auth in HTTP source (by @laf)
134
- - BUGFIX: do not inject string to output before model gets it
135
- - BUGFIX: store pidfile in oxidized root
136
-
137
- # 0.10.0
138
- - FEATURE: Various refactoring (by @ElvinEfendi)
139
- - FEATURE: Ciena SOAS support (by @jgroom33)
140
- - FEATURE: support group variables (by @supertylerc)
141
- - BUGFIX: various ((orly)) (by @marnovdm, @danbaugher, @MrRJ45, @asynet, @nickhilliard)
142
-
143
- # 0.9.0
144
- - FEATURE: input log now uses devices name as file, instead of string from config (by @skoef)
145
- - FEATURE: Dell Networkign OS (dnos) support (by @erefre)
146
- - BUGFIX: CiscoSMB, powerconnect, comware, xos, ironware, nos fixes
147
-
148
- # 0.8.1
149
- - BUGFIX: restore ruby 1.9.3 compatibility
150
-
151
- # 0.8.0
152
- - FEATURE: hooks (by @aakso)
153
- - FEATURE: MRV MasterOS support (by @kwibbly)
154
- - FEATURE: EdgeOS support (by @laf)
155
- - FEATURE: FTP input and Zyxel ZynOS support (by @ytti)
156
- - FEATURE: version and diffs API For oxidized-web (by @FlorianDoublet)
157
- - BUGFIX: aosw, ironware, routeros, xos models
158
- - BUGFIX: crash with 0 nodes
159
- - BUGFIX: ssh auth fail without keyboard-interactive
160
- - Full changelog https://github.com/ytti/oxidized/compare/0.7.1...HEAD
161
-
162
- # 0.7.0
163
- - FEATURE: support http source (by @laf)
164
- - FEATURE: support Palo Alto PANOS (by @rixxxx)
165
- - BUGFIX: screenos fixes (by @rixxxx)
166
- - BUGFIX: allow 'none' auth in ssh (spotted by @SaldoorMike, needed by ciscosmb+aireos)
167
-
168
- # 0.6.0
169
- - FEATURE: support cumulus linux (by @FlorianDoublet)
170
- - FEATURE: support HP Comware SMB siwtches (by @sid3windr)
171
- - FEATURE: remove secret additions (by @rodecker)
172
- - FEATURE: option to put all groups in single repo (by @ytti)
173
- - FEATURE: expand path in source: csv: (so that ~/foo/bar works) (by @ytti)
174
- - BUGFIX: screenos fixes (by @rixxxx)
175
- - BUGFIX: ironware fixes (by @FlorianDoublet)
176
- - BUGFIX: powerconnect fixes (by @sid3windr)
177
- - BUGFIX: don't ask interactive password in new net/ssh (by @ytti)
178
-
179
- # 0.5.0
180
- - FEATURE: Mikrotik RouterOS model (by @emjemj)
181
- - FEATURE: add support for Cisco VSS (by @MrRJ45)
182
- - BUGFIX: general fixes to powerconnect model (by @MrRJ45)
183
- - BUGFIX: fix initial commit issues with rugged (by @MrRJ45)
184
- - BUGFIX: pager error for old dell powerconnect switches (by @emjemj)
185
- - BUGFIX: logout error for old dell powerconnect switches (by @emjemj)
186
-
187
- # 0.4.1
188
- - BUGFIX: handle missing output file (by @brandt)
189
- - BUGFIX: fix passwordless enable on Arista EOS model (by @brandt)
190
-
191
- # 0.4.0
192
- - FEATURE: allow setting IP address in addition to name in source (SQL/CSV)
193
- - FEATURE: approximate how long it takes to get node from larger view than 1
194
- - FEATURE: unconditionally start new job if too long has passed since previous start
195
- - FEATURE: add enable to Arista EOS model
196
- - FEATURE: add rugged dependency in gemspec
197
- - FEATURE: log prompt detection failures
198
- - BUGFIX: xos while using telnet (by @fhibler)
199
- - BUGFIX: ironware logout on some models (by @fhibler)
200
- - BUGFIX: allow node to be removed while it is being collected
201
- - BUGFIX: if model returns non string value, return empty string
202
- - BUGFIX: better prompt for Arista EOS model (by @rodecker)
203
- - BUGFIX: improved configuration handling for Arista EOS model (by @rodecker)
204
-
205
- # 0.3.0
206
- - FEATURE: *FIXME* bunch of stuff I did for richih, docs needed
207
- - FEATURE: ComWare model (by erJasp)
208
- - FEATURE: Add comment support for router.db file
209
- - FEATURE: Add input debugging and related configuration options
210
- - BUGFIX: Fix ASA model prompt
211
- - BUGFIX: Fix Aruba model display
212
- - BUGFIX: Fix changing output in PowerConnect model
213
-
214
- # 0.2.4
215
- - FEATURE: Cisco SMB (Nikola series VxWorks) model by @thetamind
216
- - FEATURE: Extreme Networks XOS model (access by sjm)
217
- - FEATURE: Brocade NOS (Network Operating System) (access by sjm)
218
- - BUGFIX: Match exactly to node[:name] if node[name] is an ip address.
219
-
220
- # 0.2.3
221
- - BUGFIX: rescue @ssh.close when far end closes disgracefully (ALU ISAM)
222
- - BUGFIX: bugfixes to models
223
- - FEATURE: Alcatel-Lucent ISAM 7302/7330 model added by @jalmargyyk
224
- - FEATURE: Huawei VRP model added by @jalmargyyk
225
- - FEATURE: Ubiquiti AirOS added by @willglyn
226
- - FEATURE: Support 'input' debug in config, ssh/telnet use it to write session log
227
-
228
- # 0.2.2
229
- - BUGFIX: mark node as failure if unknown error is raised
230
-
231
- # 0.2.1
232
- - BUGFIX: vars variable resolving for main level vars
233
-
234
- # 0.2.0
235
- - FEATURE: Force10 model added by @lysiszegerman
236
- - FEATURE: ScreenOS model added by @lysiszegerman
237
- - FEATURE: FabricOS model added by @thakala
238
- - FEATURE: ASA model added by @thakala
239
- - FEATURE: Vyattamodel added by @thakala
240
- - BUGFIX: Oxidized::String convenience methods for models fixed
241
-
242
- # 0.1.1
243
- - BUGFIX: vars needs to return value of r, not value of evaluation
1
+ # Changelog
2
+
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)
44
+
45
+ ## [0.27.0] - 2019-10-27
46
+
47
+ ### Added
48
+
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)
65
+
66
+ ### Changed
67
+
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
76
+
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
96
+
97
+ ## [0.26.3] - 2019-03-06
98
+
99
+ ### Fixed
100
+
101
+ - regression in git.rb version method where we check if Rugged::Diff has any deltas/patches
102
+
103
+ ## [0.26.2] - 2019-03-05
104
+
105
+ ### Fixed
106
+
107
+ - suppress net-ssh 5 deprecation warnings by moving from :paranoid to :verify_host_key
108
+
109
+ ## [0.26.1] - 2019-03-04
110
+
111
+ ### Fixed
112
+
113
+ - force file permissions in rubygems
114
+
115
+ ## [0.26.0] - 2019-03-04
116
+
117
+ ### Added
118
+
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
127
+
128
+ ### Changed
129
+
130
+ - prompt updates in siklu, netonix, netscaler models
131
+ - minimal supported ruby is now 2.3, net-ssh dependency ~> 5, rubocop ~> 0.65.0
132
+
133
+ ### Fixed
134
+
135
+ - in git comparison we might mistakenly always detect change due to !utf8 vs. utf8 encoding of a char
136
+
137
+ ## [0.25.1] - 2018-12-18
138
+
139
+ ### Fixed
140
+
141
+ - update changelog which was forgotten during release
142
+
143
+ ## [0.25.0] - 2018-12-16
144
+
145
+ ### Added
146
+
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
196
+
197
+ ### Fixed
198
+
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)
202
+
203
+ ## [0.22.0] - 2018-06-03
204
+
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)
274
+
275
+ ## [0.20.0] - 2017-05-14
276
+
277
+ ### Added
278
+
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)
293
+
294
+ ### Fixed
295
+
296
+ - ios, cumulus, ironware, nxos, fiberdiver, aosw, fortios, comware, procurve, opengear, timos, routeros, junos, asa, aireos, mlnxos, pfsense, saos, powerconnect, firewareos, quantaos
297
+
298
+ ## [0.19.0] - 2016-12-12
299
+
300
+ ### Added
301
+
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)
313
+
314
+ ### Fixed
315
+
316
+ - pfsense, dnos, powerconnect, ciscosmb, eos, aosw
317
+
318
+ ## [0.18.0] - 2016-10-14
319
+
320
+ ### Added
321
+
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