blob: e44f69e110853eee9c088203285e3d85b0639992 (
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
|
class VRP < Oxidized::Model
# Huawei VRP
prompt /^(<[\w.-]+>)$/
comment '# '
cmd :secret do |cfg|
cfg.gsub! /(pin verify (?:auto|)).*/, '\\1 <PIN hidden>'
cfg.gsub! /(%\^%#.*%\^%#)/, '<secret hidden>'
cfg
end
cmd :all do |cfg|
cfg.each_line.to_a[1..-2].join
end
cfg :telnet do
username /^Username:$/
password /^Password:$/
end
cfg :telnet, :ssh do
post_login 'screen-length 0 temporary'
pre_logout 'quit'
end
cmd 'display version' do |cfg|
cfg = cfg.each_line.reject { |l| l.match /uptime/ }.join
comment cfg
end
cmd 'display device' do |cfg|
comment cfg
end
cmd 'display current-configuration all' do |cfg|
cfg
end
end
|