summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/hpebladesystem.rb
blob: 8eb83e265652ef79133158eeb7d28e84a1a9ddf5 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
class HPEBladeSystem < Oxidized::Model
  # HPE Onboard Administrator

  prompt /.*> /
  comment '# '

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

  cmd :all do |cfg|
    cfg = cfg.delete("\r").each_line.to_a[0..-1].map { |line| line.rstrip }.join("\n") + "\n"
    cfg.cut_tail
  end

  cmd :secret do |cfg|
    cfg.gsub! /^(SET SNMP COMMUNITY (READ|WRITE)).*/, '\\1 <configuration removed>'
    cfg
  end

  cmd 'show oa info' do |cfg|
    comment cfg
  end

  cmd 'show oa network' do |cfg|
    comment cfg
  end

  cmd 'show oa certificate' do |cfg|
    comment cfg
  end

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

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

  cmd 'show network' do |cfg|
    cfg.gsub! /Last Update:.*$/i, ''
    comment cfg
  end

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

  cmd 'show rack name' do |cfg|
    comment cfg
  end

  cmd 'show server list' do |cfg|
    comment cfg
  end

  cmd 'show server names' do |cfg|
    comment cfg
  end

  cmd 'show server port map all' do |cfg|
    comment cfg
  end

  cmd 'show server info all' do |cfg|
    comment cfg
  end

  cmd 'show config' do |cfg|
    cfg.gsub! /^#(Generated on:) .*$/, '\\1 <removed>'
    cfg.gsub /^\s+/, ''
  end

  cfg :telnet do
    username /\slogin:/
    password /^Password: /
  end

  cfg :telnet, :ssh do
    post_login "set script mode on"
    pre_logout "exit"
  end
end