blob: 4418b68d44d258c2bafa8355d2b413e33a393eb9 (
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
|
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
|