blob: 1a7780757b9c6f644ae99ecfe5ef33f34d343f5f (
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
|
class IPOS < Oxidized::Model
# Ericsson SSR (IPOS)
# Redback SE (SEOS)
prompt /^([\[\]\w.@-]+[#>]\s?)$/
comment '! '
cmd 'show chassis' do |cfg|
comment cfg
end
cmd 'show hardware detail' do |cfg|
comment cfg
end
cmd 'show release' do |cfg|
comment cfg
end
cmd 'show config'
cfg :telnet do
username /^login:/
password /^\r*password:/
end
cfg :telnet, :ssh do
post_login 'terminal length 0'
pre_logout do
send "exit\n"
send "n\n"
end
end
end
|