forked from ytti/oxidized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlinknextgen.rb
39 lines (31 loc) · 936 Bytes
/
dlinknextgen.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
class DlinkNextGen < Oxidized::Model
using Refinements
# D-LINK next generation cli Switches
# Add support DXS-1210-12SC
prompt /[\w.@()\/-]+[#>]\s?$/
comment '# '
cmd :all do |cfg|
cfg.each_line.to_a[2..-2].map { |line| line.delete("\r").rstrip }.join("\n") + "\n"
end
cmd 'show switch' do |cfg|
cfg.gsub! /^\s+System Time\s.+/, '' # Omit constantly changing uptime info
comment cfg
end
cmd 'show vlan' do |cfg|
comment cfg
end
cmd 'show running-config' do |cfg|
cfg.gsub! /^(snmp-server community ["\w]+) \S+/, '\\1 <removed>'
cfg.gsub! /^(username [\w.@-]+ privilege \d{1,2} password \d{1,2}) \S+/, '\\1 <removed>'
cfg
end
cfg :telnet do
username /\r*([\w\s.@()\/:-]+)?([Uu]ser[Nn]ame|[Ll]ogin):/
password /\r*[Pp]ass[Ww]ord:/
end
cfg :telnet, :ssh do
post_login 'terminal length 0'
post_login 'terminal width 255'
pre_logout 'logout'
end
end