blob: 429f1c88fcbf2893d9be416dc63d1e718775424a (
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
|
class PowerConnect < Oxidized::Model
prompt /^([\w\s.@-]+[#>]\s?)$/ # allow spaces in hostname..dell does not limit it.. #
comment '! '
expect /^\s--More--\s+.*$/ do |data, re|
send ' '
data.sub re, ''
end
cmd :all do |cfg|
cfg.each_line.to_a[1..-3].join
end
cmd 'show version' do |cfg|
cfg = cfg.split("\n").select { |line| not line[/Up\sTime/] }
comment cfg.join("\n") + "\n"
end
cmd 'show system' do |cfg|
cfg = cfg.split("\n").select { |line| not line[/Up\sTime/] }
cfg = cfg[0..-28]<<" "
comment cfg.join("\n")
end
cmd 'show running-config'
cfg :telnet do
username /^User( Name)?:/
password /^\r?Password:/
end
cfg :telnet, :ssh do
if vars :enable
post_login do
send "enable\n"
send vars(:enable) + "\n"
end
end
post_login "terminal datadump"
post_login "terminal length 0"
pre_logout "logout"
pre_logout "exit"
end
end
|