blob: 40f676d5c90153b6ca9d27903607115147535e0c (
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
|
class Enterasys < Oxidized::Model
# Enterasys B3/C3 models #
prompt /^.+\w\(su\)->\s?$/
comment '!'
cmd :all do |cfg|
cfg.each_line.to_a[2..-3].map { |line| line.delete("\r").rstrip }.join("\n") + "\n"
end
cmd 'show system hardware' do |cfg|
comment cfg
end
cmd 'show config' do |cfg|
cfg.gsub! /^This command shows non-default configurations only./, ''
cfg.gsub! /^Use 'show config all' to show both default and non-default configurations./, ''
cfg.gsub! /^!|#.*/, ''
cfg.gsub! /^$\n/, ''
cfg
end
cfg :ssh do
pre_logout 'exit'
end
end
|