forked from ytti/oxidized
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathos10.rb
46 lines (38 loc) · 869 Bytes
/
os10.rb
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
class OS10 < Oxidized::Model
# For switches running Dell EMC Networking OS10 #
#
# Tested with : Dell PowerSwitch S4148U-ON
comment '! '
cmd :all do |cfg|
cfg.gsub! /^% Invalid input detected at '\^' marker\.$|^\s+\^$/, ''
cfg.each_line.to_a[2..-2].join
end
cmd :secret do |cfg|
cfg.gsub! /(password )(\S+)/, '\1<secret hidden>'
cfg
end
cmd 'show inventory' do |cfg|
comment cfg
end
cmd 'show inventory media' do |cfg|
comment cfg
end
cmd 'show running-configuration' do |cfg|
cfg.each_line.to_a[3..-1].join
end
cfg :telnet do
username /^Login:/
password /^Password:/
end
cfg :telnet, :ssh do
if vars :enable
post_login do
send "enable\n"
cmd vars(:enable)
end
end
post_login 'terminal length 0'
pre_logout 'exit'
pre_logout 'exit'
end
end