summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/datacom.rb
blob: 54091ed72724111b09872e1adb56a3124adb7970 (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
class DataCom < Oxidized::Model

  comment '! '

  expect /^--More--\s+$/ do |data, re|
    send ' '
    data.sub re, ''
  end

  cmd :all do |cfg|
    cfg.each_line.to_a[1..-2].join
    cfg.cut_head.cut_tail
  end

  cmd 'show firmware' do |cfg|
    comment cfg
  end

  cmd 'show system' do |cfg|
    comment cfg
  end

  cmd 'show running-config' do |cfg|
    cfg.cut_head
  end

  cfg :telnet, :ssh do
    username /login:\s$/
    password /^Password:\s$/
    pre_logout 'exit'
  end

end