diff options
author | Hannes Rist <github@mirsin.org> | 2015-08-26 13:46:19 +0200 |
---|---|---|
committer | Hannes Rist <github@mirsin.org> | 2015-08-26 15:27:06 +0200 |
commit | 42cd484653da2f64a716be6b96efbde6f59fea83 (patch) | |
tree | 9d9028bd7c04477d07a8487203f63223b76ed57a | |
parent | 18cf96b36e54cb52c678e4e6395e595b6f9b4159 (diff) |
Add support for MRV MasterOS
-rw-r--r-- | lib/oxidized/model/masteros.rb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/oxidized/model/masteros.rb b/lib/oxidized/model/masteros.rb new file mode 100644 index 0000000..3f5a2fc --- /dev/null +++ b/lib/oxidized/model/masteros.rb @@ -0,0 +1,46 @@ +class MasterOS < Oxidized::Model + + # MRV MasterOS model # + +comment '!' + + cmd :secret do |cfg| + cfg.gsub! /^(snmp-server community).*/, '\\1 <configuration removed>' + cfg.gsub! /username (\S+) password encrypted (\S+) class (\S+).*/, '<secret hidden>' + cfg + end + + cmd :all do |cfg| + cfg.each_line.to_a[1..-2].join + end + + cmd 'show inventory' do |cfg| + cfg = cfg.each_line.to_a[0..-2].join + comment cfg + end + + cmd 'show plugins' do |cfg| + comment cfg + end + + cmd 'show hw-config' do |cfg| + comment cfg + end + + cmd 'show running-config' do |cfg| + cfg = cfg.each_line.to_a[3..-1].join + cfg + end + + cfg :telnet, :ssh do + post_login 'no pager' + if vars :enable + post_login do + send "enable\n" + send vars(:enable) + "\n" + end + end + pre_logout 'exit' + end + +end
\ No newline at end of file |