Sha256: 22da4c4879d9f4ef81a8d120130421c87a2ca8070f5754a168f742057c66aa45
Contents?: true
Size: 852 Bytes
Versions: 4
Compression:
Stored size: 852 Bytes
Contents
class Comtrol < Oxidized::Model using Refinements # Used in Comtrol Industrial Switches, such as RocketLinx ES8510 # Typical prompt "<hostname>#" prompt /([#>]\s?)$/ comment '! ' # how to handle pager expect /--More--+\s$/ do |data, re| send ' ' data.sub re, '' end cmd 'show version' do |cfg| comment cfg end cmd 'show running-config' do |cfg| cfg end cfg :telnet do username /^User name:/i password /^Password:/i end cfg :telnet, :ssh do if vars :enable post_login do send "enable\n" # Interpret enable: true as meaning we won't be prompted for a password unless vars(:enable).is_a? TrueClass expect /[pP]assword:\s?$/ send vars(:enable) + "\n" end expect /^.+[#]\s?$/ end end pre_logout 'exit' end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
oxidized-0.31.0 | lib/oxidized/model/comtrol.rb |
oxidized-0.30.1 | lib/oxidized/model/comtrol.rb |
oxidized-0.30.0 | lib/oxidized/model/comtrol.rb |
oxidized-0.29.1 | lib/oxidized/model/comtrol.rb |