summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/iosxr.rb
blob: 6bad8cd2f9b31c5343d48ad239a6c9dd75bc83cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
class IOSXR < Oxidized::Model

  # IOS XR model #

  comment  '! '

  cmd :all do |cfg|
    cfg.each_line.to_a[2..-2].join
  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 CFG.vars[:enable] and CFG.vars[:enable] != ''
      post_login do
        send "enable\n"
        send CFG.vars[:enable] + "\n"
      end
    end
    pre_logout 'exit'
  end

end