Sha256: f8b4840295da07c1a9c69cb5a89dc5fb2de6eac6a2425bd5f0825c79b4d2216e

Contents?: true

Size: 890 Bytes

Versions: 4

Compression:

Stored size: 890 Bytes

Contents

class OS10 < Oxidized::Model
  using Refinements

  # For switches running Dell EMC Networking OS10 #
  #
  # Tested with : Dell PowerSwitch S4148U-ON

  comment  '! '

  cmd :all do |cfg|
    cfg.gsub! /^% Invalid input detected at '\^' marker\.$|^\s+\^$/, ''
    cfg.each_line.to_a[2..-2].join
  end

  cmd :secret do |cfg|
    cfg.gsub! /(password )(\S+)/, '\1<secret hidden>'
    cfg
  end

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

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

  cmd 'show running-configuration' do |cfg|
    cfg.each_line.to_a[3..-1].join
  end

  cfg :telnet do
    username /^Login:/
    password /^Password:/
  end

  cfg :telnet, :ssh do
    if vars :enable
      post_login do
        send "enable\n"
        cmd vars(:enable)
      end
    end
    post_login 'terminal length 0'
    pre_logout 'exit'
    pre_logout 'exit'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

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