Sha256: 74682b34347c543466d3139b11d0c1b2b1a25175eb642981d83d2c32a283506b
Contents?: true
Size: 695 Bytes
Versions: 4
Compression:
Stored size: 695 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 end cmd 'show running-config' cfg :telnet do username /^User( Name)?:/ password /^\r?Password:/ end cfg :telnet, :ssh do post_login 'terminal datadump' post_login 'enable' pre_logout 'exit' end end
Version data entries
4 entries across 4 versions & 1 rubygems