blob: a694f1756fec4a6472fb434238a9ba0fbaa334e0 (
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
|
class mtrlwm < Oxidized::Model
# Motorola WM3400
comment '# '
cmd :all do |cfg|
# xos inserts leading \r characters and other trailing white space.
# this deletes extraneous \r and trailing white space.
cfg.each_line.to_a[1..-2].map{|line|line.delete("\r").rstrip}.join("\n") + "\n"
end
cmd 'show version' do |cfg|
comment cfg
end
cmd 'show licenses' do |cfg|
comment cfg
end
cmd 'show running-config'
cfg :telnet do
username /^login:/
password /^\r*password:/
end
cfg :telnet, :ssh do
post_login 'terminal length 0'
pre_logout 'exit'
pre_logout 'n'
end
end
|