blob: 1e79da3f68e37369135d8c483cb5ebcaf89dc06d (
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
|
class BR6910 < Oxidized::Model
prompt /^([\w.@()-]+[#>]\s?)$/
comment '! '
# not possible to disable paging prior to show running-config
expect /^((.*)Others to exit ---(.*))$/ do |data, re|
send 'a'
data.sub re, ''
end
cmd :all do |cfg|
# sometimes br6910s inserts arbitrary whitespace after commands are
# issued on the CLI, from run to run. this normalises the output.
cfg.each_line.to_a[1..-2].drop_while { |e| e.match /^\s+$/ }.join
end
cmd 'show version' do |cfg|
comment cfg
end
# show flash is not possible on a brocade 6910, do dir instead
# to see flash contents (includes config file names)
cmd 'dir' do |cfg|
comment cfg
end
cmd 'show running-config' do |cfg|
arr = cfg.each_line.to_a
arr[2..-1].join unless arr.length < 2
end
cfg :telnet do
username /^Username:/
password /^Password:/
end
# post login and post logout
cfg :telnet, :ssh do
post_login ''
pre_logout 'exit'
end
end
|