blob: 5d460cfea5f8b6f2540d45a7c4d181a144e216c4 (
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
|
class SAOS < Oxidized::Model
# Ciena SAOS switch
# used for 6.x devices
comment '! '
cmd :all do |cfg|
cfg.each_line.to_a[1..-2].join
end
cmd 'configuration show' do |cfg|
cfg
end
cfg :telnet do
username /login:/
password /assword:/
end
cfg :telnet, :ssh do
post_login 'system shell set more off'
post_login 'system shell session set more off'
pre_logout 'exit'
end
end
|