forked from ytti/oxidized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetgear.rb
53 lines (47 loc) · 1.44 KB
/
netgear.rb
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
class Netgear < Oxidized::Model
comment '!'
prompt /^(\([\w\s\-.]+\)\s[#>])$/
cmd :secret do |cfg|
cfg.gsub!(/password (\S+)/, 'password <hidden>')
cfg.gsub!(/encrypted (\S+)/, 'encrypted <hidden>')
cfg.gsub!(/snmp-server community (\S+)$/, 'snmp-server community <hidden>')
cfg.gsub!(/snmp-server community (\S+) (\S+) (\S+)/, 'snmp-server community \\1 \\2 <hidden>')
cfg
end
cfg :telnet do
username /^(User:|Applying Interface configuration, please wait ...)/
password /^Password:/i
end
cfg :telnet, :ssh do
post_login do
if vars(:enable) == true
cmd "enable"
elsif vars(:enable)
cmd "enable", /[pP]assword:\s?$/
cmd vars(:enable)
end
end
post_login 'terminal length 0'
# quit / logout will sometimes prompt the user:
#
# The system has unsaved changes.
# Would you like to save them now? (y/n)
#
# So it is safer simply to disconnect and not issue a pre_logout command
end
cmd :all do |cfg, cmdstring|
new_cfg = comment "COMMAND: #{cmdstring}\n"
new_cfg << cfg.each_line.to_a[1..-2].join
end
cmd 'show version' do |cfg|
cfg.gsub! /(Current Time\.+ ).*/, '\\1 <removed>'
comment cfg
end
cmd 'show bootvar' do |cfg|
comment cfg
end
cmd 'show running-config' do |cfg|
cfg.gsub! /(System Up Time\s+).*/, '\\1 <removed>'
cfg.gsub! /(Current SNTP Synchronized Time:).*/, '\\1 <removed>'
end
end