summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/ios.rb
blob: a316ccfe889c4fcff360e39dc4f95c09b7f0adfb (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
class IOS < Oxidized::Model

  comment  '! '

  cmd 'show running-config' do |cfg|
    cfg = cfg.each_line.to_a[3..-2].join
    cfg.sub! /^(ntp clock-period).*/, '! \1'
    cfg
  end

  cmd 'show inventory' do |cfg|
    comment cfg.each_line.to_a[1..-2].join
  end

  cfg :telnet do
    username /^Username:/
    password /^Password:/
  end

  cfg :telnet, :ssh do
    post_login 'terminal length 0'
    post_login 'terminal width 0'
    pre_logout 'exit'
  end

end