oxidized 0.29.1 → 0.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.coderabbit.yaml +21 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +45 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
- data/.github/ISSUE_TEMPLATE/support-request.md +39 -0
- data/.github/workflows/codeql.yml +4 -4
- data/.github/workflows/publishdocker.yml +108 -13
- data/.github/workflows/ruby.yml +3 -12
- data/.github/workflows/stale.yml +6 -1
- data/.gitignore +2 -0
- data/.rubocop.yml +69 -13
- data/.rubocop_todo.yml +13 -143
- data/CHANGELOG.md +431 -4
- data/CONTRIBUTING.md +189 -0
- data/Dockerfile +89 -34
- data/README.md +59 -188
- data/Rakefile +58 -12
- data/bin/oxidized +2 -5
- data/docs/Configuration.md +382 -149
- data/docs/Creating-Models.md +262 -10
- data/docs/DeviceSimulation.md +196 -0
- data/docs/Docker.md +246 -0
- data/docs/Hooks.md +146 -51
- data/docs/Inputs.md +237 -0
- data/docs/Issues.md +123 -0
- data/docs/Model-Notes/APC.md +72 -0
- data/docs/Model-Notes/Cumulus.md +5 -0
- data/docs/Model-Notes/EatonNetwork.md +18 -0
- data/docs/Model-Notes/ExaLink.md +43 -0
- data/docs/Model-Notes/FSOS.md +17 -0
- data/docs/Model-Notes/Fortinet.md +75 -0
- data/docs/Model-Notes/GrandstreamHT8xx.md +8 -0
- data/docs/Model-Notes/HPEAruba.md +32 -0
- data/docs/Model-Notes/IvantiConnectSecure.md +59 -0
- data/docs/Model-Notes/OS6.md +10 -0
- data/docs/Model-Notes/README.md +1 -20
- data/docs/Model-Notes/RouterOS.md +28 -0
- data/docs/Model-Notes/SikluMHTG.md +7 -0
- data/docs/Model-Notes/TrueNAS.md +23 -0
- data/docs/Model-Notes/XGS4600-Zyxel.md +5 -0
- data/docs/ModelUnitTests.md +219 -0
- data/docs/Outputs.md +102 -5
- data/docs/Release.md +102 -0
- data/docs/Ruby-API.md +135 -2
- data/docs/Sources.md +34 -0
- data/docs/Supported-OS-Types.md +207 -270
- data/docs/Troubleshooting.md +43 -1
- data/extra/device2yaml.rb +259 -0
- data/extra/gitdiff-msteams.sh +32 -5
- data/extra/hooks/modelrules.rb +55 -0
- data/extra/hooks/modelrulesadvanced.rb +167 -0
- data/extra/hooks/srcipmap.rb +54 -0
- data/extra/nagios_check_failing_nodes.rb +1 -1
- data/extra/oxidized.runit +1 -1
- data/extra/rest_client.rb +5 -4
- data/extra/syslog.rb +11 -6
- data/lib/oxidized/cli/support.rb +152 -0
- data/lib/oxidized/cli.rb +21 -6
- data/lib/oxidized/config/vars.rb +33 -14
- data/lib/oxidized/config.rb +28 -17
- data/lib/oxidized/core.rb +50 -8
- data/lib/oxidized/hook/ciscosparkdiff.rb +11 -9
- data/lib/oxidized/hook/exec.rb +5 -4
- data/lib/oxidized/hook/githubrepo.rb +55 -18
- data/lib/oxidized/hook/noophook.rb +2 -2
- data/lib/oxidized/hook/slackdiff.rb +50 -14
- data/lib/oxidized/hook/xmppdiff.rb +9 -9
- data/lib/oxidized/hook.rb +68 -16
- data/lib/oxidized/input/cli.rb +8 -3
- data/lib/oxidized/input/debugtext.rb +40 -0
- data/lib/oxidized/input/debugyaml.rb +82 -0
- data/lib/oxidized/input/exec.rb +2 -11
- data/lib/oxidized/input/ftp.rb +2 -19
- data/lib/oxidized/input/http.rb +67 -17
- data/lib/oxidized/input/input.rb +35 -14
- data/lib/oxidized/input/scp.rb +27 -0
- data/lib/oxidized/input/ssh.rb +59 -83
- data/lib/oxidized/input/sshbase.rb +102 -0
- data/lib/oxidized/input/telnet.rb +20 -19
- data/lib/oxidized/input/tftp.rb +8 -8
- data/lib/oxidized/job.rb +18 -7
- data/lib/oxidized/jobs.rb +11 -1
- data/lib/oxidized/logger.rb +51 -0
- data/lib/oxidized/manager.rb +18 -17
- data/lib/oxidized/model/acos.rb +2 -1
- data/lib/oxidized/model/addpack.rb +26 -0
- data/lib/oxidized/model/adtran.rb +5 -1
- data/lib/oxidized/model/adva.rb +3 -3
- data/lib/oxidized/model/airfiber.rb +1 -1
- data/lib/oxidized/model/aos7.rb +11 -0
- data/lib/oxidized/model/aoscx.rb +37 -29
- data/lib/oxidized/model/aosw.rb +39 -29
- data/lib/oxidized/model/apc_aos.rb +7 -2
- data/lib/oxidized/model/apcaos.rb +39 -0
- data/lib/oxidized/model/aricentiss.rb +9 -2
- data/lib/oxidized/model/arubainstant.rb +93 -0
- data/lib/oxidized/model/asa.rb +11 -10
- data/lib/oxidized/model/asternos.rb +22 -0
- data/lib/oxidized/model/asyncos.rb +3 -3
- data/lib/oxidized/model/audiocodes.rb +2 -2
- data/lib/oxidized/model/awplus.rb +15 -12
- data/lib/oxidized/model/axos.rb +1 -1
- data/lib/oxidized/model/bdcom.rb +1 -0
- data/lib/oxidized/model/c4cmts.rb +1 -2
- data/lib/oxidized/model/ciscosma.rb +1 -1
- data/lib/oxidized/model/ciscosmb.rb +6 -1
- data/lib/oxidized/model/cnos.rb +13 -10
- data/lib/oxidized/model/comtrol.rb +1 -1
- data/lib/oxidized/model/comware.rb +5 -3
- data/lib/oxidized/model/cumulus.rb +14 -2
- data/lib/oxidized/model/defacto.rb +26 -0
- data/lib/oxidized/model/dellx.rb +1 -1
- data/lib/oxidized/model/dlink.rb +5 -2
- data/lib/oxidized/model/dlinknextgen.rb +55 -0
- data/lib/oxidized/model/dnos.rb +3 -0
- data/lib/oxidized/model/dslcommands.rb +93 -0
- data/lib/oxidized/model/dslsetup.rb +102 -0
- data/lib/oxidized/model/eatonnetwork.rb +70 -0
- data/lib/oxidized/model/edgecos.rb +3 -1
- data/lib/oxidized/model/edgeos.rb +7 -6
- data/lib/oxidized/model/edgeswitch.rb +3 -1
- data/lib/oxidized/model/efos.rb +41 -0
- data/lib/oxidized/model/eltex.rb +4 -2
- data/lib/oxidized/model/enterasys800.rb +2 -2
- data/lib/oxidized/model/enterprise_sonic.rb +46 -0
- data/lib/oxidized/model/eos.rb +3 -1
- data/lib/oxidized/model/exalink.rb +36 -0
- data/lib/oxidized/model/f5os.rb +17 -0
- data/lib/oxidized/model/fabricos.rb +2 -2
- data/lib/oxidized/model/fastiron.rb +5 -3
- data/lib/oxidized/model/firebrick.rb +2 -2
- data/lib/oxidized/model/firelinuxos.rb +13 -6
- data/lib/oxidized/model/firewareos.rb +10 -1
- data/lib/oxidized/model/fortigate.rb +160 -0
- data/lib/oxidized/model/fortios.rb +38 -48
- data/lib/oxidized/model/fsos.rb +46 -0
- data/lib/oxidized/model/gaiaos.rb +4 -4
- data/lib/oxidized/model/garderos.rb +38 -0
- data/lib/oxidized/model/grandstreamht8xx.rb +19 -0
- data/lib/oxidized/model/h3c.rb +1 -1
- data/lib/oxidized/model/ibos.rb +1 -0
- data/lib/oxidized/model/ingate.rb +47 -0
- data/lib/oxidized/model/ios.rb +57 -30
- data/lib/oxidized/model/iosxr.rb +2 -2
- data/lib/oxidized/model/ironware.rb +7 -5
- data/lib/oxidized/model/ivanti.rb +54 -0
- data/lib/oxidized/model/junos.rb +12 -5
- data/lib/oxidized/model/kornfeldos.rb +33 -0
- data/lib/oxidized/model/lenovonos.rb +2 -0
- data/lib/oxidized/model/linksyssrw.rb +3 -3
- data/lib/oxidized/model/linuxgeneric.rb +4 -2
- data/lib/oxidized/model/macros.rb +60 -0
- data/lib/oxidized/model/mimosab11.rb +34 -0
- data/lib/oxidized/model/ml66.rb +33 -0
- data/lib/oxidized/model/mlnxos.rb +18 -14
- data/lib/oxidized/model/model.rb +98 -103
- data/lib/oxidized/model/mtrlrfs.rb +1 -0
- data/lib/oxidized/model/ndms.rb +6 -0
- data/lib/oxidized/model/netgear.rb +14 -3
- data/lib/oxidized/model/netonix.rb +1 -1
- data/lib/oxidized/model/netscaler.rb +1 -1
- data/lib/oxidized/model/nodegrid.rb +1 -1
- data/lib/oxidized/model/nsxdfw.rb +31 -0
- data/lib/oxidized/model/nsxfirewall.rb +2 -1
- data/lib/oxidized/model/nxos.rb +20 -15
- data/lib/oxidized/model/ocnos.rb +42 -0
- data/lib/oxidized/model/onefinity.rb +18 -0
- data/lib/oxidized/model/openbsd.rb +1 -1
- data/lib/oxidized/model/opengear.rb +36 -1
- data/lib/oxidized/model/openwrt.rb +6 -6
- data/lib/oxidized/model/opnsense.rb +9 -1
- data/lib/oxidized/model/os6.rb +48 -0
- data/lib/oxidized/model/outputs.rb +5 -0
- data/lib/oxidized/model/panos.rb +2 -0
- data/lib/oxidized/model/perle.rb +41 -0
- data/lib/oxidized/model/pfsense.rb +9 -0
- data/lib/oxidized/model/powerconnect.rb +32 -11
- data/lib/oxidized/model/procurve.rb +6 -2
- data/lib/oxidized/model/qtech.rb +3 -1
- data/lib/oxidized/model/quantaos.rb +8 -6
- data/lib/oxidized/model/rgos.rb +33 -0
- data/lib/oxidized/model/riverbed.rb +104 -0
- data/lib/oxidized/model/routeros.rb +18 -11
- data/lib/oxidized/model/saos.rb +18 -1
- data/lib/oxidized/model/saos10.rb +38 -0
- data/lib/oxidized/model/siklu.rb +1 -1
- data/lib/oxidized/model/siklumhtg.rb +22 -0
- data/lib/oxidized/model/sixwind.rb +28 -0
- data/lib/oxidized/model/slxos.rb +3 -3
- data/lib/oxidized/model/smartbyte.rb +48 -0
- data/lib/oxidized/model/sonicos.rb +27 -20
- data/lib/oxidized/model/speedtouch.rb +1 -1
- data/lib/oxidized/model/sros.rb +3 -3
- data/lib/oxidized/model/srosmd.rb +1 -1
- data/lib/oxidized/model/supermicro.rb +1 -1
- data/lib/oxidized/model/telco.rb +1 -1
- data/lib/oxidized/model/tmos.rb +1 -0
- data/lib/oxidized/model/tnsr.rb +57 -0
- data/lib/oxidized/model/tplink.rb +5 -5
- data/lib/oxidized/model/trango.rb +4 -2
- data/lib/oxidized/model/truenas.rb +64 -3
- data/lib/oxidized/model/ucs.rb +1 -1
- data/lib/oxidized/model/unifiap.rb +144 -0
- data/lib/oxidized/model/uplinkolt.rb +46 -0
- data/lib/oxidized/model/voltaire.rb +1 -1
- data/lib/oxidized/model/voss.rb +3 -0
- data/lib/oxidized/model/vrp.rb +5 -1
- data/lib/oxidized/model/vyatta.rb +9 -3
- data/lib/oxidized/model/vyos.rb +37 -0
- data/lib/oxidized/model/xos.rb +10 -1
- data/lib/oxidized/model/zhoneolt.rb +4 -2
- data/lib/oxidized/model/zynos.rb +67 -3
- data/lib/oxidized/model/zynosadsl.rb +14 -0
- data/lib/oxidized/model/zynoscli.rb +1 -1
- data/lib/oxidized/model/zynosgs.rb +2 -0
- data/lib/oxidized/model/zynosmgs.rb +32 -0
- data/lib/oxidized/node.rb +99 -64
- data/lib/oxidized/nodes.rb +40 -19
- data/lib/oxidized/output/file.rb +80 -43
- data/lib/oxidized/output/git.rb +295 -151
- data/lib/oxidized/output/gitcrypt.rb +193 -185
- data/lib/oxidized/output/http.rb +63 -51
- data/lib/oxidized/output/output.rb +20 -4
- data/lib/oxidized/signals.rb +44 -0
- data/lib/oxidized/source/csv.rb +49 -49
- data/lib/oxidized/source/http.rb +76 -63
- data/lib/oxidized/source/jsonfile.rb +68 -0
- data/lib/oxidized/source/source.rb +73 -18
- data/lib/oxidized/source/sql.rb +71 -59
- data/lib/oxidized/version.rb +6 -4
- data/lib/oxidized/worker.rb +57 -29
- data/lib/oxidized.rb +4 -24
- data/lib/refinements.rb +21 -1
- data/oxidized.gemspec +45 -21
- metadata +248 -41
- data/lib/oxidized/model/timos.rb +0 -10
data/.rubocop_todo.yml
CHANGED
|
@@ -1,91 +1,19 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on
|
|
3
|
+
# on 2026-03-31 11:49:52 UTC using RuboCop version 1.86.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, AllowNil.
|
|
11
|
-
Lint/SuppressedException:
|
|
12
|
-
Exclude:
|
|
13
|
-
- 'lib/oxidized/input/ssh.rb'
|
|
14
|
-
- 'lib/oxidized/input/telnet.rb'
|
|
15
|
-
- 'lib/oxidized/nodes.rb'
|
|
16
|
-
|
|
17
|
-
# Offense count: 62
|
|
18
|
-
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
|
|
19
|
-
Metrics/AbcSize:
|
|
20
|
-
Max: 92
|
|
21
|
-
|
|
22
|
-
# Offense count: 16
|
|
23
|
-
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
|
24
|
-
Metrics/CyclomaticComplexity:
|
|
25
|
-
Max: 12
|
|
26
|
-
|
|
27
|
-
# Offense count: 13
|
|
28
|
-
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
|
29
|
-
Metrics/PerceivedComplexity:
|
|
30
|
-
Max: 12
|
|
31
|
-
|
|
32
|
-
# Offense count: 1
|
|
33
|
-
Naming/AccessorMethodName:
|
|
34
|
-
Exclude:
|
|
35
|
-
- 'lib/refinements.rb'
|
|
36
|
-
|
|
37
|
-
# Offense count: 8
|
|
38
|
-
Naming/ConstantName:
|
|
39
|
-
Exclude:
|
|
40
|
-
- 'extra/rest_client.rb'
|
|
41
|
-
- 'lib/oxidized/config.rb'
|
|
42
|
-
- 'lib/oxidized/hook.rb'
|
|
43
|
-
- 'lib/oxidized/input/ftp.rb'
|
|
44
|
-
- 'lib/oxidized/input/input.rb'
|
|
45
|
-
- 'lib/oxidized/input/ssh.rb'
|
|
46
|
-
- 'lib/oxidized/input/telnet.rb'
|
|
47
|
-
|
|
48
|
-
# Offense count: 1
|
|
49
|
-
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
|
|
50
|
-
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
|
|
51
|
-
Naming/MemoizedInstanceVariableName:
|
|
52
|
-
Exclude:
|
|
53
|
-
- 'lib/refinements.rb'
|
|
54
|
-
|
|
55
|
-
# Offense count: 9
|
|
56
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
57
|
-
# Configuration parameters: PreferredName.
|
|
58
|
-
Naming/RescuedExceptionsVariableName:
|
|
59
|
-
Exclude:
|
|
60
|
-
- 'bin/oxidized'
|
|
61
|
-
- 'extra/rest_client.rb'
|
|
62
|
-
- 'extra/syslog.rb'
|
|
63
|
-
- 'lib/oxidized/cli.rb'
|
|
64
|
-
- 'lib/oxidized/config.rb'
|
|
65
|
-
- 'lib/oxidized/node.rb'
|
|
66
|
-
- 'lib/oxidized/nodes.rb'
|
|
67
|
-
- 'lib/oxidized/source/sql.rb'
|
|
68
|
-
|
|
69
9
|
# Offense count: 2
|
|
70
|
-
|
|
10
|
+
# Configuration parameters: CountComments, Max, CountAsOne.
|
|
11
|
+
Metrics/ClassLength:
|
|
71
12
|
Exclude:
|
|
72
|
-
- '
|
|
13
|
+
- 'lib/oxidized/node.rb'
|
|
14
|
+
- 'lib/oxidized/output/git.rb'
|
|
73
15
|
|
|
74
16
|
# Offense count: 1
|
|
75
|
-
Security/Eval:
|
|
76
|
-
Exclude:
|
|
77
|
-
- 'Rakefile'
|
|
78
|
-
|
|
79
|
-
# Offense count: 3
|
|
80
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
81
|
-
# Configuration parameters: EnforcedStyle.
|
|
82
|
-
# SupportedStyles: nested, compact
|
|
83
|
-
Style/ClassAndModuleChildren:
|
|
84
|
-
Exclude:
|
|
85
|
-
- 'lib/oxidized/config/vars.rb'
|
|
86
|
-
- 'lib/oxidized/nodes.rb'
|
|
87
|
-
|
|
88
|
-
# Offense count: 2
|
|
89
17
|
Style/ClassVars:
|
|
90
18
|
Exclude:
|
|
91
19
|
- 'lib/oxidized.rb'
|
|
@@ -99,76 +27,18 @@ Style/DoubleNegation:
|
|
|
99
27
|
- 'lib/oxidized/hook/exec.rb'
|
|
100
28
|
|
|
101
29
|
# Offense count: 1
|
|
102
|
-
|
|
103
|
-
Style/GlobalStdStream:
|
|
104
|
-
Exclude:
|
|
105
|
-
- 'lib/oxidized.rb'
|
|
106
|
-
|
|
107
|
-
# Offense count: 3
|
|
108
|
-
Style/OpenStructUse:
|
|
109
|
-
Exclude:
|
|
110
|
-
- 'lib/oxidized/hook.rb'
|
|
111
|
-
- 'lib/oxidized/node.rb'
|
|
112
|
-
- 'spec/hook/githubrepo_spec.rb'
|
|
113
|
-
|
|
114
|
-
# Offense count: 27
|
|
115
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
116
|
-
Style/RedundantRegexpCharacterClass:
|
|
30
|
+
Style/FileOpen:
|
|
117
31
|
Exclude:
|
|
118
|
-
- '
|
|
119
|
-
- 'lib/oxidized/model/comtrol.rb'
|
|
120
|
-
- 'lib/oxidized/model/fabricos.rb'
|
|
121
|
-
- 'lib/oxidized/model/ironware.rb'
|
|
122
|
-
- 'lib/oxidized/model/mlnxos.rb'
|
|
123
|
-
- 'lib/oxidized/model/nxos.rb'
|
|
124
|
-
- 'lib/oxidized/model/slxos.rb'
|
|
125
|
-
- 'lib/oxidized/model/sonicos.rb'
|
|
126
|
-
- 'lib/oxidized/model/speedtouch.rb'
|
|
127
|
-
- 'lib/oxidized/model/telco.rb'
|
|
128
|
-
- 'lib/oxidized/model/ucs.rb'
|
|
129
|
-
- 'lib/oxidized/model/voltaire.rb'
|
|
130
|
-
- 'lib/oxidized/model/zhoneolt.rb'
|
|
131
|
-
- 'lib/oxidized/model/zynoscli.rb'
|
|
32
|
+
- 'extra/syslog.rb'
|
|
132
33
|
|
|
133
|
-
# Offense count:
|
|
134
|
-
#
|
|
135
|
-
Style/
|
|
34
|
+
# Offense count: 2
|
|
35
|
+
# Configuration parameters: AllowedClasses.
|
|
36
|
+
Style/OneClassPerFile:
|
|
136
37
|
Exclude:
|
|
137
|
-
- 'lib/oxidized/
|
|
138
|
-
- 'lib/oxidized/
|
|
139
|
-
- 'lib/oxidized/model/aosw.rb'
|
|
140
|
-
- 'lib/oxidized/model/c4cmts.rb'
|
|
141
|
-
- 'lib/oxidized/model/dellx.rb'
|
|
142
|
-
- 'lib/oxidized/model/eltex.rb'
|
|
143
|
-
- 'lib/oxidized/model/enterasys800.rb'
|
|
144
|
-
- 'lib/oxidized/model/netonix.rb'
|
|
145
|
-
- 'lib/oxidized/model/netscaler.rb'
|
|
146
|
-
- 'lib/oxidized/model/openbsd.rb'
|
|
147
|
-
- 'lib/oxidized/model/siklu.rb'
|
|
148
|
-
- 'lib/oxidized/model/slxos.rb'
|
|
149
|
-
- 'lib/oxidized/model/sonicos.rb'
|
|
150
|
-
- 'lib/oxidized/model/trango.rb'
|
|
151
|
-
|
|
152
|
-
# Offense count: 45
|
|
153
|
-
# This cop supports safe autocorrection (--autocorrect).
|
|
154
|
-
# Configuration parameters: EnforcedStyle, AllowInnerSlashes.
|
|
155
|
-
# SupportedStyles: slashes, percent_r, mixed
|
|
156
|
-
Style/RegexpLiteral:
|
|
157
|
-
Enabled: false
|
|
38
|
+
- 'lib/oxidized/input/telnet.rb'
|
|
39
|
+
- 'lib/oxidized/signals.rb'
|
|
158
40
|
|
|
159
|
-
# Offense count:
|
|
41
|
+
# Offense count: 32
|
|
160
42
|
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
161
43
|
Style/SlicingWithRange:
|
|
162
44
|
Enabled: false
|
|
163
|
-
|
|
164
|
-
# Offense count: 81
|
|
165
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
166
|
-
# Configuration parameters: Mode.
|
|
167
|
-
Style/StringConcatenation:
|
|
168
|
-
Enabled: false
|
|
169
|
-
|
|
170
|
-
# Offense count: 1
|
|
171
|
-
# This cop supports unsafe autocorrection (--autocorrect-all).
|
|
172
|
-
Style/ZeroLengthPredicate:
|
|
173
|
-
Exclude:
|
|
174
|
-
- 'lib/oxidized/core.rb'
|
data/CHANGELOG.md
CHANGED
|
@@ -4,15 +4,441 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
-
## [
|
|
7
|
+
## [0.37.0 - 2026-05-20]
|
|
8
|
+
### Added
|
|
9
|
+
- routeros: support store mode `on_significant` (@infabo)
|
|
10
|
+
- model for Grandstream HT8xx (@mklopocki)
|
|
11
|
+
- Add --support option to gather system diagnostics (@robertcheramy)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- input/ssh: validate that cmd is a String. See #3700 (@robertcheramy)
|
|
15
|
+
- junos: changed "show system license" regex to reduce notification noise for PTX routers. See #3794 (@ctomkow)
|
|
16
|
+
- ios: keep motherboard information in show version. Closes #3798 (@robertcheramy)
|
|
17
|
+
- aoscx: use oxidized filtering instead of "show system | exclude...". (@robertcheramy)
|
|
18
|
+
- input/*: rewrite debug logging; remove unused logging; input/ssh: write a YAML simulation file (@robertcheramy)
|
|
19
|
+
- truenas: capture app, replication, cloudsync configurations without constant changes. See #3795 (@neilschelly)
|
|
20
|
+
- Set Rake::TestTask to `verbose = false` since the behavior changed with rake 13.4.2 (@robertcheramy)
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- VyOS: detect community string in SNMP traps. Fixes: #3793 (@nicolasberens)
|
|
24
|
+
- fortigate: show Part No. of SFPs. Fixes: #3800 (@robertcheramy)
|
|
25
|
+
- aoscx: Hide total power consumption (stacking). Fixes #3801 (@robertcheramy)
|
|
26
|
+
- linuxgeneric: fix prompt, telnet username and clean ANSI Escape Codes (@robertcheramy)
|
|
27
|
+
- cumulus: fix prompt (make : and space optional). Fixes #3812 (@robertcheramy)
|
|
28
|
+
- dlinknexgen: NULL byte handling. Fixes #3816 (@ziotibia81)
|
|
29
|
+
- nxos: hide snmpv3 priv key when remove_secret is true. Fixes: #3805 (@robertcheramy)
|
|
30
|
+
- tpink: use `\r\n` when sending commands and set `terminal length 0`. Fixes #3804 (@robertcheramy)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [0.36.0 - 2026-03-31]
|
|
34
|
+
### Release Notes
|
|
35
|
+
The fortios model has been split into fortigate and fortios. You need the new fortigate model for FortiGate firewalls. Be sure to check the [Fortinet model notes](docs/Model-Notes/Fortinet.md) before upgrading.
|
|
36
|
+
|
|
37
|
+
The SCP gem is now an optional dependency as it will rarely be used - you must install it if you need it. It is still included in the docker image.
|
|
38
|
+
|
|
39
|
+
We may rework models in the future to clean up duplicated code (by using the macros or by inheriting from the Defacto model). To make sure your favorite model doesn’t break, please share [simulation files](/docs/DeviceSimulation.md) via issues or, preferably, pull requests, so we can detect when a change breaks a model.
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
- Support https mode, headers, and ssl verify for HTTP output (@bahirul)
|
|
43
|
+
- String refinements: introduce `keep_lines` and `reject_lines` methods (@robertcheramy)
|
|
44
|
+
- Support for storing configurations only on significant changes (@robertcheramy)
|
|
45
|
+
- Add support for Ivanti Secure Connect ISA models (@candleflip)
|
|
46
|
+
- smartbyte: new model for SmartByte switches (@freddy36)
|
|
47
|
+
- Support multiple input (@robertcheramy)
|
|
48
|
+
- apcaos model with SSH + SCP capabilities, deprecates apc_aos (@robertcheramy)
|
|
49
|
+
- exalink model for specific Cisco ExaLink Fusion (formerly Exablaze) switches (@obol89)
|
|
50
|
+
- source_node_transform hook, allows user to manipulate node data when loading from source (@ytti)
|
|
51
|
+
- docker image: publish major version tag (e.g. `0`) in addition to full semver tag on releases (@infabo)
|
|
52
|
+
- introduce the defacto model and macros for models (@ytti)
|
|
53
|
+
|
|
54
|
+
### Changed
|
|
55
|
+
- Refactored models: Use `keep_lines` and `reject_lines` in aosw, arubainstant, asa, efos, firelinuxos, fsos, ironware, mlnxos and perle (@robertcheramy)
|
|
56
|
+
- Refactor SSH and SCP into a common class SSHBase. Fixes #3597 (@robertcheramy)
|
|
57
|
+
- Modified models to support store mode on significant changes: ios, fortios, perle, ndms (@robertcheramy, @furriest)
|
|
58
|
+
- fortios: model rewrite and split into fortios and fortigate. Fixes #3680 (@robertcheramy)
|
|
59
|
+
- fortigate: Add PSU & SFP inventory (@robertcheramy)
|
|
60
|
+
- fortigate: move var fortios_autoupdate (deprecated) to fortigate_autoupdate (@robertcheramy)
|
|
61
|
+
- netgear: extended login and pager detection to add support for GS728TPv2 and GS752TPv2 (@weberc)
|
|
62
|
+
- comware: Hide snmp secrets for Comware (@iriseden)
|
|
63
|
+
- Aruba-CX : Hide secrets for Aruba-CX (@iriseden)
|
|
64
|
+
|
|
65
|
+
### Fixed
|
|
66
|
+
- VyOS: Only remove SNMP community, not route-maps. Fixes #3735 (@systeembeheerder)
|
|
67
|
+
- apc_aos: set comment to "; " to match comments in config.ini (@robertcheramy)
|
|
68
|
+
- h3c: fix overly permissive prompt regexp causing false matches. Fixes #3673 (@robertcheramy)
|
|
69
|
+
- extra/device2yaml.rb: fix \r being removed at end of line (@robertcheramy)
|
|
70
|
+
- perle: remove trailing \r (the device sends \r\r\n) (@robertcheramy)
|
|
71
|
+
- Reintroduce support for Ruby 3.0. Fixes #3688 (@robertcheramy)
|
|
72
|
+
- githubrepo: fix authentication with ssh-agent not working. Fixes #3420 (@robertcheramy)
|
|
73
|
+
- fastiron: adjust prompt to account for stacks, remove time from stack output. Fixes #3106 (@ManoftheSea)
|
|
74
|
+
- interval: fix fetching device configuration at oxidized start when interval is 0. Fixes #3746 (@tgr229)
|
|
75
|
+
- voss: more cleanup of constantly changing values (fan & temp) for at least Extreme Networks 7520-48Y-8C-FabricEngine (8.10.5.0) (@irrwitzer42)
|
|
76
|
+
- truenas: Added retry logic to use sudo for reading/dumping the configuration database if needed. Fixes #3767 (@neilschelly)
|
|
77
|
+
- aoscx: update regex to include 'N/A' in FAN speed parsing (@solrac200, @robertcheramy)
|
|
78
|
+
- nxos: show inventory for older models. Fixes #3779 (@scamp)
|
|
79
|
+
|
|
80
|
+
## [0.35.0 - 2025-12-04]
|
|
81
|
+
### Release Notes
|
|
82
|
+
- VyOS now has it's own model and should be used for supported VyOS versions instead of the Vyatta model.
|
|
83
|
+
- AosCX has been reworked and may break old OS versions. Submit an issue along with a YAML Simulation File if you encounter problems.
|
|
84
|
+
- TiMOS (deprecated model) has been removed. Use SROS.
|
|
85
|
+
- FortiOs will be reworked in release 0.36 (Issue #3680). Subscribe to the issue if you want to be informed and test the model before the release.
|
|
86
|
+
- ~~Support for Ruby 3.1 will be discontinued in release 0.36 (Issue #3688) if no one objects.~~
|
|
87
|
+
|
|
88
|
+
### Added
|
|
89
|
+
- Allow setting timeout on per node basis. Closes #3612 (@ytti)
|
|
90
|
+
- Added Vyos as individual model. Closes #3603 #3560 (@nicolasberens)
|
|
91
|
+
- Add metadata to models. Closes #3249 (@robertcheramy)
|
|
92
|
+
- perle: new model for console servers (@robertcheramy)
|
|
93
|
+
- Introduce [conditional commands](/docs/Ruby-API.md#conditional-commands) (@robertcheramy)
|
|
94
|
+
|
|
95
|
+
### Changed
|
|
96
|
+
- tnsr: added simulation data for older versions (@Vantomas)
|
|
97
|
+
- docker image: change default shell to bash. (@electrocret)
|
|
98
|
+
- refactor suppression of ANSI escape codes into model.rb (use `clean :escape_codes` in your model. Updated cumulus, garderos, mlnxos and vyos. (@robertcheramy)
|
|
99
|
+
- aoscx: rework handling of ANSI escape codes (@robertcheramy)
|
|
100
|
+
- docker: build on arm64 natively. Closes #3665 (@robertcheramy)
|
|
101
|
+
- docker image: move base image from phusion/baseimage to debian:trixie-slim (@robertcheramy)
|
|
102
|
+
|
|
103
|
+
### Fixed
|
|
104
|
+
- input/http: bracket IPv6 URI. Fixes #3620 (@ytti)
|
|
105
|
+
- tnsr: fixed prompt regex, sometimes --More-- pager is misplaced on older versions (@ClumsyAdmin)
|
|
106
|
+
- eatonnetwork: Update for firmware v2.2.0 #3634 (@thanegill)
|
|
107
|
+
- input/http: Corrected pagination causing duplicated nodes. Fixes #3676 (@kquilliam)
|
|
108
|
+
- many models: fix redundant regular expressions (@robertcheramy)
|
|
109
|
+
- timos: remove deprecated model timos. Use sros. #3617 (@robertcheramy)
|
|
110
|
+
- fsos: set terminal width to 0. Fixes #3576 (@robertcheramy)
|
|
111
|
+
- aoscx: rework environmental data anonymization. Fixes #3568 (@robertcheramy, inspired by PR #3653 by @martadams89)
|
|
112
|
+
- netgear: fix prompt issues caused by ANSI escape codes. Fixes #3287 (@robertcheramy)
|
|
113
|
+
- remove redundant dependency on bundler producing a CI failure on ruby-head (@robertcheramy)
|
|
114
|
+
- nxos: use "show inventory" when "show inventory all" is not supported. Fixes #3657 (@robertcheramy)
|
|
115
|
+
- arubainstant: handle spaces/parentheses in AP names and add Zone column. Fixes #3611 (@iRomanyshyn, @robertcheramy)
|
|
116
|
+
- core: fix "undefined method `[]' for nil" when only extensions: configured. Fixes: #3607 (@robertcheramy)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
## [0.34.3 - 2025-08-05]
|
|
120
|
+
This release fixes an issue preventing /node/show/<hostname> to work in oxidized-web.
|
|
121
|
+
|
|
122
|
+
### Fixed
|
|
123
|
+
- Guarantee that node vars is a dict (Issue ytti/oxidized-web#365) (@ytti)
|
|
8
124
|
|
|
9
|
-
##
|
|
125
|
+
## [0.34.2 – 2025-08-01]
|
|
126
|
+
This release mainly fixes a bug in input/scp that made ssh raise an error when
|
|
127
|
+
closing a closed connection (Issue #3583).
|
|
10
128
|
|
|
11
|
-
|
|
129
|
+
A fix for config vars (Issue #3536) changes the way oxidized stores its
|
|
130
|
+
vars internally (symblos => strings). Libraries depending on oxidized internal
|
|
131
|
+
structures may have problem with this. oxidized-web was fixed in Release 0.17.1.
|
|
132
|
+
|
|
133
|
+
### Added
|
|
134
|
+
- Absolute time limit for a fetch job (default: 300 seconds) (@robertcheramy)
|
|
135
|
+
|
|
136
|
+
### Changed
|
|
137
|
+
- slackdiff: Attempt to join the channel if Errors::NotInChannel is encountered (@varesa)
|
|
138
|
+
|
|
139
|
+
### Fixed
|
|
140
|
+
- SSH raises error when closing a closed connection. Fixes #3583 (@ytti)
|
|
141
|
+
- Config vars will not fall back to less specific. Fixes #3536 (@ytti)
|
|
142
|
+
- input/scp: make common errors produce a warning, not a crashfile (@robertcheramy)
|
|
143
|
+
- input/scp: implement timeouts. Fixes #3590 (@robertcheramy, @ytti)
|
|
144
|
+
- model/mtrlrfs: add missing prompt (@R3thos)
|
|
145
|
+
- slackdiff: Respect the HTTP proxy configuration while uploading the file. Fixes #3534 (@varesa)
|
|
146
|
+
- logging (syslog): do not write two timestamps (Fixed in semanticlogger) (@robertcheramy)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
## [0.34.1 - 2025-07-18]
|
|
150
|
+
This release contains small fixes and will include the new version of oxidized-web (0.17.0) in the docker container.
|
|
151
|
+
|
|
152
|
+
### Changed
|
|
153
|
+
- github: run ruby CI against ruby-head (@robertcheramy)
|
|
154
|
+
|
|
155
|
+
### Fixed
|
|
156
|
+
- input/ssh: hide Net::SSH errors and only display fatal logs unless input.debug = true. Fixes: #3574 (@robertcheramy)
|
|
157
|
+
- junos: fix unfrozen literal strings (@robertcheramy)
|
|
158
|
+
- spec/model: fix unfrozen literal strings and set a default prompt (@robertcheramy)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
## [0.34.0 - 2025-07-15]
|
|
162
|
+
:warning: This release introduces a [new logging system](docs/Configuration.md#logging),
|
|
163
|
+
based on [semantic logger](https://logger.rocketjob.io/). The old configuration
|
|
164
|
+
(`log`, `syslog`) is still supported but obsolete and will be removed in a
|
|
165
|
+
future release, so be sure to migrate your configuration.
|
|
166
|
+
|
|
167
|
+
### Added
|
|
168
|
+
- add iosxr support to SyslogMonitor (@deesel)
|
|
169
|
+
- add junos: support show chassis cluster when SRX series (@shigechika)
|
|
170
|
+
- add nxos: support for complete hardware inventory (@garryshtern)
|
|
171
|
+
- ssh: support 'newline "string"' cfg block method to allow defining \r\n newline (@ytti)
|
|
172
|
+
- model for Netgate TNSR (@Vantomas)
|
|
173
|
+
- efos: New model for Brocade Enhanced Fabric OS. Fixes #3477 (@sorano, @cetjcm, @robertcheramy)
|
|
174
|
+
- output/file, output/git: clean node configurations which are not listed in the
|
|
175
|
+
source anymore. Fixes: #1805 (@robertcheramy)
|
|
176
|
+
- sixwind: New model to support 6WIND Virtual Service Router (@hcaldicott)
|
|
177
|
+
- model for saos10 (@penfold1972)
|
|
178
|
+
|
|
179
|
+
### Changed
|
|
180
|
+
- remove uri in commit-archive location for EdgeOS. Fixed #3525 (@systeembeheerder)
|
|
181
|
+
- acos: remove free storage amount from show version. Fixes #3492 (@991jo)
|
|
182
|
+
- Housekeeping in the code: Maximal line length: 120 char + Rubocop fixes (@robertcheramy)
|
|
183
|
+
- spec/model/data uses # instead of : as a separator in the filename, so we can
|
|
184
|
+
git clone under Windows. Fixes: #3481 (@robertcheramy)
|
|
185
|
+
- logging: rework of the logging system, using Semantic Logger (@robertcheramy)
|
|
186
|
+
|
|
187
|
+
### Fixed
|
|
188
|
+
- nxos: ignore bootflash size and permission errors (@rouven0)
|
|
189
|
+
- githubrepo: explicitly tell when Rugged isn't installed with ssh support (@robertcheramy)
|
|
190
|
+
- ironware: mask temperatures with more than two digits (@merelissdgr)
|
|
191
|
+
- add content-type header for PUT request in rest client (@deesel)
|
|
192
|
+
- docker: do not remove git. Fixes #3482 (@robertcheramy)
|
|
193
|
+
- awplus: fix skip password when enable=true (@shigechika)
|
|
194
|
+
- aosw: fix secret parsing (@rouven0)
|
|
195
|
+
- mlnxos: handle ANSI-ESC codes and pager requests. The prompt has been
|
|
196
|
+
reengineered, open an issue if you experience timeouts. Fixes #3469 (@robertcheramy)
|
|
197
|
+
- Update installation instructions on Rocky Linux 9. Fixes #3368 (@robertcheramy)
|
|
198
|
+
- awplus: fix enable password when supplied (@sgsimpson)
|
|
199
|
+
- Fix CodeQL scanning alerts on regular expressions (Issue #3513) in node.rb (alert 40),
|
|
200
|
+
asa (alerts 5 and 6), sonicos (4, 11), quantaos (9, 10), eltex (7), zynos (18, 19),
|
|
201
|
+
AricentISS (15) and aosw (36)
|
|
202
|
+
- fabricos: remove power supply input voltage from `chassisShow` output (@hops)
|
|
203
|
+
- netgear: include running-config in config output (@bradleywehmeier)
|
|
204
|
+
- tmos: remove deprecated secrets (@rouven0)
|
|
205
|
+
- log an error when no suitable input is found for a node. Fixes: #3346 (@robertcheramy)
|
|
206
|
+
- firelinuxos: fix timeout on syntax error. Fixes #3393, #3502 (@robertcheramy)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
## [0.33.0 - 2025-03-26]
|
|
210
|
+
This release changes the way to configure oxidized-web. The old `rest`
|
|
211
|
+
configuration is still supported but deprecated. The new configuration works
|
|
212
|
+
with oxidized-web 0.16.0 or later.
|
|
213
|
+
See [docs/Configuration.md](/docs/Configuration.md#oxidized-web-RESTful-API-and-web-interface).
|
|
214
|
+
|
|
215
|
+
The docker container includes
|
|
216
|
+
[security fixes to ruby-rake](https://ubuntu.com/security/notices/USN-7366-1),
|
|
217
|
+
so be sure to update to the latest version.
|
|
218
|
+
|
|
219
|
+
### Added
|
|
220
|
+
- unifiap: new model for Unifi APs, switches, and AirOS APs (@clifcox)
|
|
221
|
+
- github: Issue templates for bugs, feature requests and support requests (@robertcheramy)
|
|
222
|
+
- model for Ingate Operating System (@thanegill)
|
|
223
|
+
- model for Easton Gigabit Network Card (@thanegill)
|
|
224
|
+
|
|
225
|
+
### Changed
|
|
226
|
+
- fortios: support for FortiADC (@electrocret)
|
|
227
|
+
- output/git: cache commit log to improve performance of oxidized-web. Fixes #3121 (@robertcheramy)
|
|
228
|
+
- input/http: digest auth handles special characters in passwords by itself (no need to url encode them manually) (@einglasvollkakao)
|
|
229
|
+
- changed the configuration for oxidized-web from rest: to extensions.oxidized-web (@robertcheramy)
|
|
230
|
+
- netgear: add pager-handler workaround, fixes: #2394 and #3341 (@candlerb, @syn-bit)
|
|
231
|
+
- Output#version (git/gitcrypt) returns a Time object in its hash for more flexibility in oxidized-web (@robertcheramy)
|
|
232
|
+
- ios: hide secret key of aaa radius (@martinberg, @robertcheramy)
|
|
233
|
+
- container: update to phusion/baseimage:noble-1.0.1 (@robertcheramy)
|
|
234
|
+
|
|
235
|
+
### Fixed
|
|
236
|
+
- powerconnect: Mask the changing temperature issue for non-stacked switches. Fixes #2088 (@clifcox)
|
|
237
|
+
- Fix frozen string literals (@robertcheramy)
|
|
238
|
+
- powerconnect: Cleanup login/logout logic. Fixes #3437 (@clifcox)
|
|
239
|
+
- aos7: remove extra lines occuring when `show hardware-info` runs slow (@rouven0)
|
|
240
|
+
- srosmd: add ignore regex for 64-bit system uptime (@emiliaaah)
|
|
241
|
+
- removed some rubocop warnings (@robertcheramy)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
## [0.32.2 – 2025-02-27]
|
|
245
|
+
This patch release mainly fixes the docker building process, wich resulted in
|
|
246
|
+
0.32.1 not beeing built.
|
|
247
|
+
|
|
248
|
+
### Changed
|
|
249
|
+
- docker image: updated github CI to explicitly build tag versions (@robertcheramy)
|
|
250
|
+
- docker image: update rake build_container to match the tags of GitHub CI (@robertcheramy)
|
|
251
|
+
|
|
252
|
+
### Fixed
|
|
253
|
+
- powerconnect: restore last line of command output, and remove spurious CR characters. Fixes #2692 (@clifcox)
|
|
254
|
+
- powerconnect: Remove undesirable inserted blank lines during pagination. Fixes #3413 (@clifcox)
|
|
255
|
+
- docker image: remove ubuntu user introduced in noble. Fixes #3336 (@robertcheramy)
|
|
256
|
+
- docker image: correct rights under /home/oxidized. Fixes #3336 (@robertcheramy)
|
|
257
|
+
- docker image: revert the use of GEM_HOME. Fixes #3331 (@robertcheramy)
|
|
258
|
+
- docker image: improve the documentation. Fixes #3336 (@robertcheramy)
|
|
259
|
+
- docker image: remove examples/podman-compose as this is better documented in docs/Docker.md (@robertcheramy)
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
## [0.32.1 – 2025-02-20]
|
|
263
|
+
This patch release fixes a javascript issue in oxidized-web, which is included
|
|
264
|
+
in the Docker container of oxidized.
|
|
265
|
+
|
|
266
|
+
### Fixed
|
|
267
|
+
- powerconnect: Hide enable, and line secrets. Further Fixes #1212 (#clifcox)
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
## [0.32.0 – 2025-02-17]
|
|
271
|
+
This release fixes a security issue in oxidized-web, which is included in the
|
|
272
|
+
Docker container of oxidized. If you are not using the Docker container but
|
|
273
|
+
use oxidized-web, be sure to update your oxidized-web gem to 0.15.0.
|
|
274
|
+
|
|
275
|
+
### Added
|
|
276
|
+
- junos: add unit test (@systeembeheerder)
|
|
277
|
+
- apc_aos: support for scp (@robertcheramy)
|
|
278
|
+
- config: allow model_map and group_map keys to be regexp. Fixes #3360 (@ytti)
|
|
279
|
+
- enterprise_sonic: add new model enterprise_sonic (@ohai89)
|
|
280
|
+
- model for Kornfeld Operating System (@yurenkov)
|
|
281
|
+
|
|
282
|
+
### Changed
|
|
283
|
+
- sonicos: accept policy message. Fixes #3339 (@Steve-M-C, @robertcheramy)
|
|
284
|
+
- input/ssh: change input.debug to dump all characters and include sent commands. (@robertcheramy)
|
|
285
|
+
- cumulus: remove ANSI Escape codes and fix prompt issues. The prompt is more specific now (@alchemyx, @robertcheramy)
|
|
286
|
+
- model unit tests: the tests are automated and simpler to use (@ytti, @robertcheramy)
|
|
287
|
+
- device2yaml.rb: moved to extra/, commands can be specified from the command line or from a file (no cmdsets provided anymore) (@robertcheramy)
|
|
288
|
+
- extra/gitdiff-msteams.sh: honor the 28KB size limit and add an optional link to GitHub (@mopi3456)
|
|
289
|
+
|
|
290
|
+
### Fixed
|
|
291
|
+
- tplink: send 'enable' before the enable password. Fixes #3271 (@robertcheramy)
|
|
292
|
+
- asyncos: fix prompt for hostnames containing "-" . Fixes #3327 (@robertcheramy)
|
|
293
|
+
- sonicos: fix prompt for hostnames containing "-" . Fixes #3333 (@robertcheramy)
|
|
294
|
+
- xos: Hide radius accounting secret
|
|
295
|
+
- fsos: Hide AAA and SNMP secrets (@RayaneB35)
|
|
296
|
+
- aos7: fix prompt for version 8.8x. Fixes #3351 (@robertcheramy)
|
|
297
|
+
- aosw: Hide power measurements (@rouven0)
|
|
298
|
+
- arubainstant: show version prepends a space to prompt when a core file is present. Fixes #3398 (@robertcheramy)
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
## [0.31.0 – 2024-11-29]
|
|
302
|
+
|
|
303
|
+
### Added
|
|
304
|
+
- model for Riverbed Steelhead (@Swaeltjie)
|
|
305
|
+
- model for uplink EP4440-DP OLT (@AAm-kun)
|
|
306
|
+
- model for Siklu Multihaul TG radios (@bdg-robert)
|
|
307
|
+
- model for VMWare NSX DFW (@elmobp)
|
|
308
|
+
- model for F5OS (@teunvink)
|
|
309
|
+
- cumulus: Add possibility to use NVUE (@lagertonne)
|
|
310
|
+
- model for garderos (@robertcheramy)
|
|
311
|
+
- unit tests framework for models with ssh input (@robertcheramy)
|
|
312
|
+
- os6: Added support to Dell EMC Networking OS6 (@anubisg1)
|
|
313
|
+
- model for HPE Aruba Networking Instant Mode (Aruba Instant). Fixes #3057 (@robertcheramy)
|
|
314
|
+
- Add JSONFILE source (@sargon)
|
|
315
|
+
|
|
316
|
+
### Changed
|
|
317
|
+
- h3c: change prompt to expect either angle (user-view) or square (system-view) brackets (@nl987)
|
|
318
|
+
- xos: Hide radius and user secrets for XOS (@iriseden)
|
|
319
|
+
- eos: Hide radius and snmp secrets for Arista EOS (@iriseden)
|
|
320
|
+
- fortios: Hide date in acme certifcate comments (@systeembeheerder)
|
|
321
|
+
- dlink: added support for 'enable admin' before getting configuration, if enable=true (@as8net)
|
|
322
|
+
- dlinknextgen: strip uptime and ntp update time from config
|
|
323
|
+
- Updated slackdiff.rb to use slack_ruby_client instead of slack-api (@Punicaa)
|
|
324
|
+
- oxidized: options (such as credentials, etc.) now use the same resolution logic as variables and can also be defined per model in a group (@EinGlasVollKakao)
|
|
325
|
+
- saos: add inventory and software status collection (@grbeneke)
|
|
326
|
+
- container-image: update to phusion/baseimage:noble-1.0.0 and include security upgrades at build time (@robertcheramy)
|
|
327
|
+
- container-image: use ubuntu-packages instead of gems in order to reduce container image size (@robertcheramy)
|
|
328
|
+
- edgecos.rb: hide temperature and fan speed (@dhooper6430)
|
|
329
|
+
- cnos: show information before config, remove secrets only when told to do so (@robje)
|
|
330
|
+
- Updated slackdiff.rb to use new files.getUploadURLExternal slack file upload API instead of deprecated files.upload (@varesa)
|
|
331
|
+
- Updated source/output files to reference a Source/Output module to avoid namespace duplication (@laf, @robertcheramy)
|
|
332
|
+
- ios: Hide WLAN PSK, AP profile dot1x password, AP profile mgmtuser password/secret and radius COA server-key (@devon-mar)
|
|
333
|
+
- ios: remove values from custom SNMP OID's, set by an EEM script (@syn-bit)
|
|
334
|
+
- Update net-ssh to 7.3 to enable support for aes(128|256)gcm. Fixes #3168 (@jacobw)
|
|
335
|
+
- removed time command from uplink EP4440-DP OLT model
|
|
336
|
+
- fortios: variable `fullconfig` to get the configuration with default values. Fixes: #3159 (@robertcheramy)
|
|
337
|
+
- container-image: install x25519 gem package to support more ssh kex. Fixes #3070 (@benasse)
|
|
338
|
+
- lenovonos: Salt administrator-password line when remove_unstable_lines is set to True (@kani999)
|
|
339
|
+
- lenovonos: Removes lines that started with Fan because RPM always changes. (@kani999)
|
|
340
|
+
|
|
341
|
+
### Fixed
|
|
342
|
+
- fixed error for ibos when remove_secret is set (@dminuoso)
|
|
343
|
+
- fixed prompt for Watchguard FirewareOS not matching the regex when the node is managed and master (@benasse)
|
|
344
|
+
- fixed prompt for vyos/vyatta to allow logins with non-priviliged accounts. Fixes #3111 (@h-lopez)
|
|
345
|
+
- fixed power consumption included in ArubaOS-CX diffs starting with FL.10.13.xxx. Fixes #3142 (@terratalpi)
|
|
346
|
+
- fixed oxidized-web getting "version not found" when fetching a version from git and no group is defined. Fixes #2222 (@robertcheramy)
|
|
347
|
+
- fixed telnet to disconnect gracefully even if it throws IOError while disconnect. Fixes #3212 (@ytti)
|
|
348
|
+
- docs: run git garbage collection to address performance issues. Fixes #3121 (@robertcheramy)
|
|
349
|
+
- saos: fixed handling of 'unsaved configuration' indicator in prompt (@grbeneke)
|
|
350
|
+
- rgos: also strip "System uptime" for installed modules (@spike77453)
|
|
351
|
+
- fixed digest authentication when using http input (@spike77453)
|
|
352
|
+
- fixed aosw prompt; now working with ArubaOS 8 (@mabezi, @robertcheramy)
|
|
353
|
+
- routeros: fix system info for CHR. Fixes #3180 (@systeembeheerder)
|
|
354
|
+
- removed hardcoded '~/.config/oxidized/config'. Fixes #3229 (@robertcheramy)
|
|
355
|
+
- linuxgeneric: updated prompt to support '$' at the end (@robertcheramy)
|
|
356
|
+
- hook githubrepo: add a specific warning when rugged not installed with ssh support. Fixes #3211 (@robertcheramy)
|
|
357
|
+
- hook githubrepo: works with custom branch names (@robertcheramy)
|
|
358
|
+
- ios: removes secrets when config has multiple snmp-server host lines. Fixes #3239 (@robertcheramy)
|
|
359
|
+
- ios: fixed device specs on ASR900 Series. Fixes #3297 (@robertcheramy, @roshnaraman)
|
|
360
|
+
- netgear: prompt for gs752tpp. Fixes #3287 (@robertcheramy)
|
|
361
|
+
- aoscx: fixed regex for 6400 switches to hide temperature and power (@steveneppler)
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
## [0.30.1 – 2024-04-12]
|
|
365
|
+
|
|
366
|
+
### Added
|
|
367
|
+
- document the release process (@robertcheramy)
|
|
368
|
+
|
|
369
|
+
### Fixed
|
|
370
|
+
- The version string was not set correctly (@robertcheramy)
|
|
371
|
+
|
|
372
|
+
## [0.30.0 – 2024-04-11]
|
|
373
|
+
|
|
374
|
+
### Added
|
|
375
|
+
- model for D-Link cisco like CLI (@mirackle-spb)
|
|
376
|
+
- model for Ruijie Networks RGOS devices (@spike77453)
|
|
377
|
+
- Add serial number collection to Opengear (@ermuller)
|
|
378
|
+
- added support for AricentISS 2.x firmware (@davromaniak)
|
|
379
|
+
- model for Asterfusion Network Operating System (@avl-dev)
|
|
380
|
+
- pagination for http source (@davama)
|
|
381
|
+
- model for Ericsson Miniling 6600 series (@schouwenburg)
|
|
382
|
+
- model for Mimosa B11 (@ritzbhuj)
|
|
383
|
+
- added SCP input (@aeiodelic)
|
|
384
|
+
- Added `linux/arm64` and `linux/amd64` platforms to Docker build/publish. (@disaac)
|
|
385
|
+
- Added verion info for Vyatta (@systeembeheerder)
|
|
386
|
+
- model for Fibrestore (fs.com) FSOS (@tcrichton)
|
|
387
|
+
- model for IP Infusion OcNOS
|
|
388
|
+
- model for Fujitsu 1finity (@jerji)
|
|
389
|
+
|
|
390
|
+
### Changed
|
|
391
|
+
- tp-link: fixed enable mode post login entrance (@mirackle-spb)
|
|
392
|
+
- dlink: fixed prompt for other dlink switches, added additional uptime removal expressions (@mirackle-spb)
|
|
393
|
+
- Collect VC info for juniper ex3400 (@ermuller)
|
|
394
|
+
- adva: fix config content for recovery process, collect config delta instead of current (@MichiMeyer)
|
|
395
|
+
- iosxr: include last config changed by in model (@electrocret)
|
|
396
|
+
- panos: exclude device dictionary
|
|
397
|
+
- Added support for Nokia SAR 7705 HMC in SROS model (@schouwenburg)
|
|
398
|
+
- fortios: only perform a "show" instead of a "show full-configuration" when retrieving configs from fortios. fixes timeouts and avoids extraneous defaulted config information. (@jforeman)
|
|
399
|
+
- opengear: support newer Opengear CM* and OM* models (@matej_v)
|
|
400
|
+
- edgecos: improve system temperature removal (@freddy36)
|
|
401
|
+
- zynos: Rewrite the script to properly collect config via ssh/telnet. Backup with FTP is not working atm, feel free to open an issue if needed. (@sharteeya)
|
|
402
|
+
- pfsense: exclude autogenerated firewall rule timestamps to reduce change churn from use of stuff like PFBlockerNG #2985 (@anthonysomerset)
|
|
403
|
+
- ciscosmb: ignore "Please change the password" hint when doing backup. (@sharteeya)
|
|
404
|
+
- c4cmts: uses chassis eeprom data for inventory information instead of environmental status (@nickhilliard)
|
|
405
|
+
- dlinknextgen removes user and snmp-server secrets (@tcrichton)
|
|
406
|
+
- dnos: hide secrets in "ospf message-digest-key", "authentication-type" and "bsd-username" (@rybnico)
|
|
407
|
+
- junos: Replace dynamic value in VMX-BANDWIDTH with count, hide ssh keys
|
|
408
|
+
|
|
409
|
+
### Fixed
|
|
410
|
+
- fixed empty lines for ZyXEL GS1900 switches (@jluebbe)
|
|
411
|
+
- fixed prompt for Watchguard FirewareOS not matching the regex when the node is non-master (@netdiver)
|
|
412
|
+
- defined 'psych' runtime dependency to resolve 'unsafe_load' error during startup (@MattKobayashi)
|
|
413
|
+
- fixed new date/time format with newer RouterOS `# jun/01/2023 12:11:25 by RouterOS 7.9.1` vs `# 2023-06-01 12:16:16 by RouterOS 7.10rc1` (@tim427)
|
|
414
|
+
- fixed netscaler backups with hostname set #2828 (@electrocret)
|
|
415
|
+
- Do not redirect stderr when fetching opnsense version since default shell (csh) doesn't support it (@spike77453)
|
|
416
|
+
- Fix missing configuration for Opengear (@ermuller)
|
|
417
|
+
- Fixed fan RPM speeds included in Aruba CX diffs (@danpoltawski)
|
|
418
|
+
- Gitcrypt output refinements (@electrocret)
|
|
419
|
+
- Remove constantly updating dates from backup of Adtran config (@davesbell)
|
|
420
|
+
- fixed prompt for Cumulus to allow usernames with dots and dashes (@ktims)
|
|
421
|
+
- fixed source http when source is librenms (@davama)
|
|
422
|
+
- Fixed login and su regex unable to match in some comware devices (@sharteeya)
|
|
423
|
+
- fixed prompt detection for Netgear M4250-10G2XF-PoE+ and M4300-28G-PoE+ (@rexhaugen)
|
|
424
|
+
- fixed devices (pfsense, opnsense, openwrt) not retriving config after refinement change #2771 #2968 (@robertcheramy)
|
|
425
|
+
- Fixed login into Fortigate when post-login-baned ist enabled. Fixes #2021 (@chrisr0880, @sahdan, @dangoscomb and @robertcheramy)
|
|
426
|
+
- Fixed pre_logout for BDCOM switches
|
|
427
|
+
- Fix 'wpa passphrase' hashed secret for SonicOS devices with built-in wireless #3036 (@lazynooblet)
|
|
428
|
+
- Oxidized will now exit on SIGTERM and SIGINT; SIGHUP will trigger a node list reload and reopen logs (@gs-kamnas)
|
|
429
|
+
- Fix potential busy wait when retries and/or next_adds_job is enabled (@gs-kamnas)
|
|
430
|
+
- Reverting PR #2498 as it broke old procurve models (2510G, 2610, 2824). Fixes #2833, #2871 (@robertcheramy)
|
|
431
|
+
- Fixed regexp used to remove secrets in nxos model. Fixes #3080 (@desnoe)
|
|
432
|
+
|
|
433
|
+
## [0.29.1 - 2023-04-24]
|
|
434
|
+
|
|
435
|
+
### Added
|
|
436
|
+
|
|
437
|
+
### Changed
|
|
12
438
|
|
|
13
439
|
- Ensure Docker builds are only pushed to registry on `master` (@aschaber1)
|
|
14
440
|
|
|
15
|
-
|
|
441
|
+
### Fixed
|
|
16
442
|
|
|
17
443
|
- #2749: fix issues with `cut_both`
|
|
18
444
|
|
|
@@ -114,6 +540,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
114
540
|
- ios: Add support for RBAC in IOS model (@jameskirsop)
|
|
115
541
|
- hide unsupported-transceiver license key in Arista EOS (@davidc)
|
|
116
542
|
- edgecos: add support for FS S3900-48T6S-R (@cgsecurity)
|
|
543
|
+
- eltex: added one command for disable pagination on Eltex MES2424 switches (@mirackle-spb)
|
|
117
544
|
|
|
118
545
|
### Fixed
|
|
119
546
|
|