diff options
author | ytti <saku@ytti.fi> | 2013-05-01 04:49:05 -0700 |
---|---|---|
committer | ytti <saku@ytti.fi> | 2013-05-01 04:49:05 -0700 |
commit | d0de575afa263a9f6f729d0d1a7fa77fdd15600d (patch) | |
tree | 8ce10918fa67cd0e66b173c581481be3809df6b1 /lib/oxidized | |
parent | c252a589b6b0274a17bfe40db3fd57ebeea3beb8 (diff) | |
parent | 17a9fb3d013912eea2a1e834bc0480b677592d71 (diff) |
Merge pull request #4 from nopedial/work-flow
Update powerconnect.rb, catch errors in input.rbs and fix typos in ios.rb
Diffstat (limited to 'lib/oxidized')
-rw-r--r-- | lib/oxidized/input/ssh.rb | 2 | ||||
-rw-r--r-- | lib/oxidized/input/telnet.rb | 4 | ||||
-rw-r--r-- | lib/oxidized/model/ios.rb | 4 | ||||
-rw-r--r-- | lib/oxidized/model/powerconnect.rb | 9 |
4 files changed, 9 insertions, 10 deletions
diff --git a/lib/oxidized/input/ssh.rb b/lib/oxidized/input/ssh.rb index 3d14a57..430eaa2 100644 --- a/lib/oxidized/input/ssh.rb +++ b/lib/oxidized/input/ssh.rb @@ -12,7 +12,7 @@ module Oxidized begin @ssh = Net::SSH.start @node.ip, @node.auth[:username], :password => @node.auth[:password], :timeout => CFG.timeout - rescue Timeout::Error, Net::SSH::Disconnect, Errno::ECONNREFUSED + rescue Timeout::Error, Errno::ECONNREFUSED, Errno::ECONNRESET, Net::SSH::Disconnect return false end open_shell @ssh unless @exec diff --git a/lib/oxidized/input/telnet.rb b/lib/oxidized/input/telnet.rb index c1afde2..f1222d8 100644 --- a/lib/oxidized/input/telnet.rb +++ b/lib/oxidized/input/telnet.rb @@ -17,7 +17,7 @@ module Oxidized expect password @telnet.puts @node.auth[:password] expect @node.prompt - rescue Errno::ECONNREFUSED, Timeout::Error + rescue Timeout::Error, Errno::ECONNREFUSED, Errno::ECONNRESET, Errno::EHOSTUNREACH return false end end @@ -28,7 +28,7 @@ module Oxidized args.merge!({ 'Match' => expect, 'Timeout' => @timeout }) if expect begin @telnet.cmd args - rescue Timeout::Error, Errno::ECONNRESET + rescue Timeout::Error, Errno::ECONNRESET, Errno::EPIPE return false end end diff --git a/lib/oxidized/model/ios.rb b/lib/oxidized/model/ios.rb index 7da5ed2..3fcc7ae 100644 --- a/lib/oxidized/model/ios.rb +++ b/lib/oxidized/model/ios.rb @@ -11,7 +11,7 @@ class IOS < Oxidized::Model # non-preferred way to handle additional PW prompt #expect /^[\w.]+>$/ do |data| # send "enable\n" - # send CFG.passwords[:enable] + "\n" + # send CFG.vars[:enable] + "\n" # data #end @@ -42,7 +42,7 @@ class IOS < Oxidized::Model # preferred way to handle additional passwords #post_login do # send "enable\n" - # send CFG.passwords[:enable] + "\n" + # send CFG.vars[:enable] + "\n" #end pre_logout 'exit' end diff --git a/lib/oxidized/model/powerconnect.rb b/lib/oxidized/model/powerconnect.rb index 732245e..0dbd808 100644 --- a/lib/oxidized/model/powerconnect.rb +++ b/lib/oxidized/model/powerconnect.rb @@ -1,15 +1,14 @@ class PowerConnect < Oxidized::Model + prompt /^([\w\s.@-]+[#>]\s?)$/ # allow spaces in hostname..dell does not limit it.. # + comment '! ' cmd :all do |cfg| cfg.each_line.to_a[1..-3].join end - cmd 'show running-config' do |cfg| - cfg = cfg.each_line.to_a[3..-1].join - cfg - end + cmd 'show running-config' cmd 'show version' do |cfg| comment cfg @@ -20,7 +19,7 @@ class PowerConnect < Oxidized::Model end cfg :telnet do - username /^User Name:/ + username /^User( Name)?:/ password /^\r?Password:/ end |