summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/stoneos.rb
blob: 94f679f001df5ffe13a5a48b803d152270139210 (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
class StoneOS < Oxidized::Model
  # Hillstone Networks StoneOS software

  prompt /^\r?[\w.()-]+[#>](\s)?$/
  comment '# '

  expect /^\s.*--More--.*$/ do |data, re|
    send ' '
    data.sub re, ''
  end

  cmd :all do |cfg|
    cfg.cut_both
  end

  cmd 'show configuration running'

  cmd 'show version' do |cfg|
    comment cfg
  end

  cfg :telnet do
    username(/^login:/)
    password(/^Password:/)
  end

  cfg :telnet, :ssh do
    post_login 'terminal length 256'
    post_login 'terminal width 512'
    pre_logout 'exit'
  end
end