Sha256: 2f8fa23b204fe33591db38c00d40e149738a36154cd421a87a911301eb258ba0

Contents?: true

Size: 933 Bytes

Versions: 4

Compression:

Stored size: 933 Bytes

Contents

class NOS < Oxidized::Model
  using Refinements

  # Brocade Network Operating System

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

  cmd :all do |cfg|
    cfg.cut_both
  end

  cmd 'show version' do |cfg|
    comment cfg.each_line.reject { |line| line.match /([Ss]ystem [Uu]p\s?[Tt]ime|[Uu]p\s?[Tt]ime is \d)/ }.join
  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/) || line.match(/Update/) }.join
  end

  cfg 'show system' do |cfg|
    comment(cfg.each_line.reject { |line| line.match(/Time/) || 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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
oxidized-0.31.0 lib/oxidized/model/nos.rb
oxidized-0.30.1 lib/oxidized/model/nos.rb
oxidized-0.30.0 lib/oxidized/model/nos.rb
oxidized-0.29.1 lib/oxidized/model/nos.rb