blob: a1f6c10073f3d905b120dfaeef6d86cd12fe27e0 (
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
|
class UCS < Oxidized::Model
prompt /^(\r?[\w.@_()-]+[#]\s?)$/
comment '! '
cmd 'show version brief' do |cfg|
comment cfg
end
cmd 'show chassis detail' do |cfg|
comment cfg
end
cmd 'show fabric-interconnect detail' do |cfg|
comment cfg
end
cmd 'show configuration all | no-more' do |cfg|
cfg
end
cfg :ssh, :telnet do
post_login 'terminal length 0'
pre_logout 'exit'
end
cfg :telnet do
username /^login:/
password /^Password:/
end
end
|