blob: a325e2bf33a2847230cda47c25584068900d17af (
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
|
class Comtrol < Oxidized::Model
# Used in Comtrol Industrial Switches, such as RocketLinx ES8510
# Typical prompt "<hostname>#"
prompt /([#>]\s?)$/
comment '! '
# how to handle pager
expect /--More--+\s$/ do |data, re|
send ' '
data.sub re, ''
end
cmd :all do |cfg|
cfg.gsub! /^.*\e7/, ''
end
cmd 'show version'
cmd 'show running-config'
cfg :telnet do
username /^User name:/i
password /^Password:/i
end
cfg :telnet, :ssh do
if vars :enable
post_login do
send "enable\n"
# Interpret enable: true as meaning we won't be prompted for a password
unless vars(:enable).is_a? TrueClass
expect /[pP]assword:\s?$/
send vars(:enable) + "\n"
end
expect /^.+[#]\s?$/
end
end
pre_logout 'exit'
end
end
|