Sha256: 56cbcb23e5243b58d4f96e51a10ef1d68a0f1e2ab31a86f4ec9090b0e4aef603

Contents?: true

Size: 771 Bytes

Versions: 1

Compression:

Stored size: 771 Bytes

Contents

class PowerConnect < Oxidized::Model

  prompt /^([\w\s.@-]+[#>]\s?)$/ # allow spaces in hostname..dell does not limit it.. #

  comment  '! '

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

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

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

  cmd 'show system' do |cfg|
    cfg = cfg.each_line.take_while { |line| not line.match(/uptime/i) }
    comment cfg.join "\n"
  end

  cmd 'show running-config'

  cfg :telnet do
    username /^User( Name)?:/
    password /^\r?Password:/
  end

  cfg :telnet, :ssh do
    if vars :enable
      send "enable\n"
      send vars(:enable) + "\n"
    end

    post_login "terminal length 0"
    pre_logout "logout"
    
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oxidized-0.2.3 lib/oxidized/model/powerconnect.rb