summaryrefslogtreecommitdiff
path: root/lib/oxidized/model/nos.rb
blob: f71420bd458488c1ef037715cac441b251bb08cc (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
38
39
40
41
42
43
44
45
class NOS < Oxidized::Model

  # Brocade Network Operating System

  prompt /^(?:\e\[..h)?[\w.-]+# $/
  comment  '! '

  cmd :all do |cfg|
    cfg.each_line.to_a[1..-2].join
  end

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

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

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

  cmd 'show chassis' do |cfg|
    comment cfg.each_line.reject { |line| line.match /Time/ }.join
  end

  cfg 'show system' do |cfg|
    comment cfg.each_line.reject { |line| line.match /Time/ or line.match /speed/ }
  end

  cmd 'show running-config | nomore'

  cfg :telnet do
    username /^.* login: /
    password /^Password:/
  end

  cfg :telnet, :ssh do
    post_login 'terminal length 0'
    #post_login 'terminal width 0'
    pre_logout 'exit'
  end

end