http://qs321.pair.com?node_id=1066895


in reply to Re: A little demo for Net::SSH2
in thread A little demo for Net::SSH2

Hello All, I used an example from this tutorial in my code, which executes a command which has -i -c parameters(interval, no. of iterations). However Once the command completes the control never returns to the PERL code. Can anyone please help??? Below is the code:
use Net::SSH2; my $ssh2 = Net::SSH2->new(); $ssh2->connect('localhost') or die $!; $ssh2->auth_password('nasadmin','adminpassword') or die "Unable to log +in $@ \n"; my $chan = $ssh2->channel(); $chan->shell(); $chan->write("server_stats server_2 -monitor cifs-std -i 5 -c 5 \n"); select(undef,undef,undef,0.2); print $buf while ($len = $chan->read($buf,32)) > 0; $chan->close;

Replies are listed 'Best First'.
Re^3: A little demo for Net::SSH2
by Anonymous Monk on Mar 14, 2014 at 16:27 UTC
    I suspect your server_stats command is taking too long to generate output. Does it work with a "nas_server -list" command?