Sha256: 5bc8b6c9715cf0163fb0fd9142f65a133e27e7bf1071c40175b306d88868076c

Contents?: true

Size: 855 Bytes

Versions: 5

Compression:

Stored size: 855 Bytes

Contents

class IOSXR < Oxidized::Model

  # IOS XR model #

  prompt /^(\r?[\w.@:\/-]+[#>]\s?)$/
  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 platform' 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 /^Username:/
    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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
oxidized-0.13.1 lib/oxidized/model/iosxr.rb
oxidized-0.13.0 lib/oxidized/model/iosxr.rb
oxidized-0.12.2 lib/oxidized/model/iosxr.rb
oxidized-0.12.1 lib/oxidized/model/iosxr.rb
oxidized-0.12.0 lib/oxidized/model/iosxr.rb