summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/hirschmann.rb
blob: 82432d7f4df5221d391ef210422b66b33a94594e (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 Hirschmann < Oxidized::Model

  prompt /^[\(\w\s\w\)]+\s[>|#]+?$/ 
 
  comment '## '
 
  #Handle pager
  expect /^--More--.*$/ do |data, re|
    send 'a'
    data.sub re, ''
  end

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

  cmd 'show sysinfo' do |cfg|
    cfg.gsub! /^System Up Time.*\n/, ""
    cfg.gsub! /^System Date and Time.*\n/, ""
    cfg.gsub! /^CPU Utilization.*\n/, ""
    cfg.gsub! /^Memory.*\n/, ""
    cfg.gsub! /^Average CPU Utilization.*\n/, ""
    comment cfg
  end
 
  cmd 'show running-config' do |cfg|
    cfg.gsub! /^users.*\n/, "" 
    cfg
  end    

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

  cfg :telnet, :ssh do
   post_login 'enable'
   pre_logout 'logout'
  end

end