summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/weos.rb
blob: dcde695cf48f077c0912e2962b913d192183f447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class WEOS < Oxidized::Model
  # Westell WEOS, works with Westell 8178G, Westell 8266G

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

  cmd :all do |cfg|
    cfg.cut_both
  end

  cmd 'show running-config' do |cfg|
    cfg
  end

  cfg :telnet do
    username /login:/
    password /assword:/
    post_login 'cli more disable'
    pre_logout 'logout'
  end
end