blob: 3401593adc7c96a92d4f54681419ab364d3ea3ea (
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
|
class Supermicro < Oxidized::Model
comment '! '
# example how to handle pager
# --- [Space] Next page, [Enter] Next line, [A] All, Others to exit ---
expect /^---(.*)exit ---$/ do |data, re|
send 'a'
data.sub re, ''
end
cmd :secret do |cfg|
cfg.gsub!(/password \d+ (\S+).*/, '<secret removed>')
cfg.gsub!(/community (\S+)/, 'community <hidden>')
cfg
end
cmd :all do |cfg|
cfg.each_line.to_a[1..-2].join
end
cmd 'show running-config'
cmd 'show access-list tcam-utilization' do |cfg|
comment cfg
end
cmd 'show memory' do |cfg|
comment cfg
end
cmd 'show version' do |cfg|
comment cfg
end
cmd 'show watchdog' do |cfg|
comment cfg
end
cfg :telnet do
username /^Username:/
password /^Password:/
end
cfg :telnet, :ssh do
pre_logout 'exit'
end
end
|