blob: 77b78f4d46ebd4a706d18eb8e038e9b2553ece31 (
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
|
# Developed against:
# #show version
# Switch ID Hardware Version Firmware Version
# 0 SSE-G48-TG4 (P2-01) 1.0.16-9
class AricentISS < Oxidized::Model
prompt (/^(\e\[27m)?[ \r]*[\w-]+# ?$/)
cfg :ssh do
# "pagination" was misspelled in some (earlier) versions (at least 1.0.16-9)
# 1.0.18-15 is known to include the corrected spelling
post_login 'no cli pagination'
post_login 'no cli pagignation'
pre_logout 'exit'
end
cmd :all do |cfg|
# * Drop first line that contains the command, and the last line that
# contains a prompt
# * Strip carriage returns
cfg.delete("\r").each_line.to_a[1..-2].join
end
cmd :secret do |cfg|
cfg.gsub(/^(snmp community) .*/, '\1 <hidden>')
end
cmd 'show system information' do |cfg|
cfg.sub! /^Device Up Time.*\n/, ''
cfg.delete! "\r"
comment(cfg).gsub(/ +$/, '')
end
cmd 'show running-config' do |cfg|
comment_next = 0
cfg.each_line.map { |l|
next '' if l.match /^Building configuration/
if l.match /^Switch ID.*Hardware Version.*Firmware Version/ then
comment_next = 2
end
if comment_next > 0 then
comment_next -= 1
next comment(l)
end
l
}.join.gsub(/ +$/, '')
end
end
|