summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorytti <saku@ytti.fi>2015-10-20 16:10:11 +0300
committerytti <saku@ytti.fi>2015-10-20 16:10:11 +0300
commit5a21302753014a3f3e1e7fa5f1c1a8b5e671f894 (patch)
treecc10e83cc31199c2477da647a91845d3d27b60b0
parentb5e8078318c1c3e50198acdaa698a113012bfa41 (diff)
parentcd914865e8f44109400335be130a9ea8d0e11c3e (diff)
Merge pull request #221 from erefre/patch-2
add support for Dell networking OS, dnos
-rw-r--r--lib/oxidized/model/dnos.rb47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/oxidized/model/dnos.rb b/lib/oxidized/model/dnos.rb
new file mode 100644
index 0000000..1c31aad
--- /dev/null
+++ b/lib/oxidized/model/dnos.rb
@@ -0,0 +1,47 @@
+class DNOS < Oxidized::Model
+
+ # Force10 DNOS model #
+
+ comment '! '
+
+ cmd :all do |cfg|
+ cfg.each_line.to_a[2..-2].join
+ end
+
+ cmd :secret do |cfg|
+ cfg.gsub! /^(snmp-server community).*/, '\\1 <configuration removed>'
+ cfg.gsub! /secret (\d+) (\S+).*/, '<secret hidden>'
+ cfg
+ end
+
+ cmd 'show inventory' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show inventory media' do |cfg|
+ comment cfg
+ end
+
+ cmd 'show running-config' do |cfg|
+ cfg = cfg.each_line.to_a[3..-1].join
+ cfg
+ end
+
+ cfg :telnet do
+ username /^Login:/
+ password /^Password:/
+ end
+
+ cfg :telnet, :ssh do
+ post_login 'terminal length 0'
+ post_login 'terminal width 0'
+ if vars :enable
+ post_login do
+ send "enable\n"
+ send vars(:enable) + "\n"
+ end
+ end
+ pre_logout 'exit'
+ end
+
+end