summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorytti <saku@ytti.fi>2015-03-16 21:25:26 +0200
committerytti <saku@ytti.fi>2015-03-16 21:25:26 +0200
commit43d19284d7066247800f136c15e0420ece9634bb (patch)
treec8fa6960a66e4d63eadad1a8b851fa99b52586c1
parenta7b632815f5c1db1d44810067ac41caa3c40fb2e (diff)
parentf289d7411d5fe04e816d3567781068f4f3ec6f73 (diff)
Merge pull request #93 from emjemj/master
Added support for Mikrotik RouterOS
-rw-r--r--CHANGELOG.md4
-rw-r--r--README.md1
-rw-r--r--lib/oxidized/model/mikrotik.rb17
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)
diff --git a/README.md b/README.md
index 99f3173..aa7080d 100644
--- a/README.md
+++ b/README.md
@@ -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