blob: 150029cd6554f0d3a8b20a6393c0c9637a0d8540 (
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
|
class C4CMTS < Oxidized::Model
# Arris C4 CMTS
prompt /^([\w.@:\/-]+[#>]\s?)$/
comment '! '
cmd :all do |cfg|
cfg.each_line.to_a[1..-2].map{|line|line.delete("\r").rstrip}.join("\n") + "\n"
end
cmd :secret do |cfg|
cfg.gsub! /(.+)\s+encrypted-password\s+\w+\s+(.*)/, '\\1 <secret hidden> \\2'
cfg.gsub! /(snmp-server community)\s+".*"\s+(.*)/, '\\1 <secret hidden> \\2'
cfg.gsub! /(tacacs.*\s+key)\s+".*"\s+(.*)/, '\\1 <secret hidden> \\2'
cfg.gsub! /(cable authstring)\s+\w+\s+(.*)/, '\\1 <secret hidden> \\2'
cfg
end
cmd 'show environment' do |cfg|
cfg.gsub! /\s+[\-\d]+\s+C\s+[\(\s\d]+\s+\F\)/, '' # remove temperature readings
cfg.each_line.to_a[1..-2].join
comment cfg
end
cmd 'show version' do |cfg|
# remove uptime readings at char 55 and beyond
cfg = cfg.each_line.map{|line|line.rstrip.slice(0..54)}.join("\n") + "\n"
comment cfg
end
cmd 'show running-config' do |cfg|
cfg = cfg.each_line.to_a[1..-2].join
cfg
end
cfg :telnet do
username /^Username:/
password /^Password:/
end
cfg :telnet, :ssh do
if vars :enable
post_login do
send "enable\n"
send vars(:enable) + "\n"
end
end
pre_logout 'exit'
end
end
|