Sha256: 61a67d3318ce4453c384fce4b2519af0cfb25767835a02a06936c62727bfac95

Contents?: true

Size: 844 Bytes

Versions: 4

Compression:

Stored size: 844 Bytes

Contents

class MasterOS < Oxidized::Model
  using Refinements

  # 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

4 entries across 4 versions & 1 rubygems

Version Path
oxidized-0.31.0 lib/oxidized/model/masteros.rb
oxidized-0.30.1 lib/oxidized/model/masteros.rb
oxidized-0.30.0 lib/oxidized/model/masteros.rb
oxidized-0.29.1 lib/oxidized/model/masteros.rb