blob: 3d42a537965ea7a9f55fa2b504ec74a442d0f0c4 (
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
|
class SGOS < Oxidized::Model
comment '!- '
prompt /\w+>|#/
expect /--More--/ do |data, re|
send ' '
data.sub re, ''
end
cmd :all do |cfg|
cfg.each_line.to_a[1..-3].join
end
cmd 'show licenses' do |cfg|
comment cfg
end
cmd 'show general' do |cfg|
comment cfg
end
cmd :secret do |cfg|
cfg.gsub! /^(security hashed-enable-password).*/, '\\1 <secret hidden>'
cfg.gsub! /^(security hashed-password).*/, '\\1 <secret hidden>'
cfg
end
cmd 'show configuration expanded noprompts with-keyrings unencrypted' do |cfg|
cfg.gsub! /^(!- Local time).*/,""
cfg.gsub! /^(archive-configuration encrypted-password).*/, ""
cfg.gsub! /^(download encrypted-password).*/, ""
cfg
end
cfg :telnet, :ssh do
# preferred way to handle additional passwords
if vars :enable
post_login do
send "enable\n"
cmd vars(:enable)
end
end
pre_logout 'exit'
end
end
|