Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: why timeout not working in Net::OpenSSH

by Loops (Curate)
on Aug 07, 2013 at 06:32 UTC ( [id://1048265]=note: print w/replies, xml ) Need Help??


in reply to why timeout not working in Net::OpenSSH

Hi there,

The problem is that Ssh doesn't have a lot of options when it comes to responding to a timeout. Checkout the Timeouts section of the documentation to see there are really two options.

The first and default option is to close down the socket the remote system is using for input. In the ideal case the remote is configured to recognize this situation and terminate all running processes associated with the login. Clearly that's not happening on your remote, at least not while it's executing "sleep 10".

The other option which you can enable, will terminate all connections to the remote and immediately continue the execution of your local script. The downside with this is that the remote script may continue executing, and you wont capture any of its output. To enable this option change your params to:

my %param=( user => $user, password=>'xxxxxx', port => '22', kill_ssh_on_timeout => 1);
You should see this error printed by your script:
operation didn't complete successfully: ssh slave failed: timed out at + ...

Replies are listed 'Best First'.
Re^2: why timeout not working in Net::OpenSSH
by aqwsh2006 (Initiate) on Aug 07, 2013 at 09:45 UTC

    I see. Thanks

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1048265]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-24 20:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found