diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | lib/oxidized/model/mikrotik.rb | 17 |
3 files changed, 22 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ea70091..c1e40a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +- FEATURE: Mikrotik RouterOS model (by @emjemj) +- BUGFIX: pager error for old dell powerconnect switches (by @emjemj) +- BUGFIX: logout error for old dell powerconnect switches (by @emjemj) + # 0.4.1 - BUGFIX: handle missing output file (by @brandt) - BUGFIX: fix passwordless enable on Arista EOS model (by @brandt) @@ -64,6 +64,7 @@ Oxidized is a network device configration backup tool. Its a RANCID replacment! * Huawei VRP * Juniper JunOS * Juniper ScreenOS (Netscreen) + * Mikrotik RouterOS * Ubiquiti AirOS diff --git a/lib/oxidized/model/mikrotik.rb b/lib/oxidized/model/mikrotik.rb new file mode 100644 index 0000000..40ec5e2 --- /dev/null +++ b/lib/oxidized/model/mikrotik.rb @@ -0,0 +1,17 @@ +class Mikrotik < Oxidized::Model + prompt /^\[\w+@\S+\]\s?>\s?$/ + comment "# " + + cmd '/system routerboard print' do |cfg| + comment cfg + end + + cmd '/export' do |cfg| + cfg = cfg.split("\n").select { |line| not line[/^\#\s\w{3}\/\d{2}\/\d{4}.*$/] } + cfg.join("\n") + "\n" + end + + cfg :ssh do + exec true + end +end |