blob: b0d88f805150d861b9d059fb4f7cfd44413b73f4 (
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
|
class IronWare < Oxidized::Model
prompt /^((\w*)@(.*)([>#])+)$/
comment '! '
#to handle pager without enable
#expect /^((.*)--More--(.*))$/ do |data, re|
# send ' '
# data.sub re, ''
#end
#to remove backspace (if handle pager without enable)
#expect /^((.*)[\b](.*))$/ do |data, re|
# data.sub re, ''
#end
cmd :all do |cfg|
cfg.each_line.to_a[1..-2].join
end
cmd 'show running-config' do |cfg|
cfg = cfg.each_line.to_a[3..-1].join
cfg
end
cmd 'show version' do |cfg|
cfg.gsub! /(^((.*)system uptime(.*))$)/, '' #remove unwanted line system uptime
comment cfg
end
cmd 'show chassis' do |cfg|
cfg.gsub! "\xFF", '' # ugly hack - avoids JSON.dump utf-8 breakage on 1.9..
cfg.gsub! /(^((.*)Current temp(.*))$)/, '' #remove unwanted lines current temperature
comment cfg
end
cmd 'show flash' do |cfg|
comment cfg
end
cmd 'show module' do |cfg|
comment cfg
end
cfg :telnet do
username /^Username:/
password /^Password:/
end
#handle pager with enable
cfg :telnet, :ssh do
if vars :enable
post_login do
send "enable\n"
send vars(:enable) + "\n"
end
end
post_login 'skip-page-display'
post_login 'terminal length 0'
pre_logout 'logout'
pre_logout 'exit'
pre_logout 'exit'
end
end
|