[#409331] Capture HTML table data, pass to Ruby, pass back and display result in HTML text field — Hubert Wagner <lists@...>

Hello :

11 messages 2013/08/04

[#409336] Rakefile Error - Please Help — "Jennifer T." <lists@...>

Hi,

13 messages 2013/08/04
[#409341] Re: Rakefile Error - Please Help — Hassan Schroeder <hassan.schroeder@...> 2013/08/04

On Sun, Aug 4, 2013 at 7:41 AM, Jennifer T. <lists@ruby-forum.com> wrote:

net/telnet haning on pasword

From: Avery Rozar <lists@...>
Date: 2013-08-08 10:22:28 UTC
List: ruby-talk #404616
Hello all,
I'm getting stuck at the @password portion. This script will get into
the Cisco ASA, but doesn't seem to enter in the password. Any help is
greatly appreciated.

begin
  session = Net::Telnet::new('Host' => @hostname, 'Timeout' => 10,
'Telnetmode' => false, verbose: :debug)
  session.waitfor('Prompt' => /Username/)
  session.cmd(@username) { |c| print c }
  session.waitfor('Prompt' => /Password/)
  session.cmd(@password) { |c| print c }
  session.waitfor(/>/)
  session.cmd(@cmd + '\n') { |c| print c }
  session.close

end


Debug output:

arozar
Password: Uncaught exception: timed out while waiting for more data
  /Users/averyrozar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/telnet.rb:558:in
`waitfor'
  /Users/averyrozar/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/net/telnet.rb:695:in
`cmd'
  /Users/averyrozar/Ruby-Scripts/tools/telnet-tool.rb:44:in `<top
(required)>'

Process finished with exit code 0

-- 
Posted via http://www.ruby-forum.com/.

In This Thread

Prev Next