Sha256: d8b90254dc9e63875412343bd248bcb131322526d4e0517e9bae74ae35b76ce2
Contents?: true
Size: 823 Bytes
Versions: 9
Compression:
Stored size: 823 Bytes
Contents
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.cut_both cfg.gsub /^(! Configuration ).*/, '!' end cmd 'show inventory' do |cfg| comment cfg.cut_tail 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
Version data entries
9 entries across 9 versions & 1 rubygems