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


in reply to A little demo for Net::SSH2

Hi Zentara,

Thanks for this tutorial. It helped me create a script for automating checks on our NAS Arrays to check for failures.

Perlpetually Indebted To PerlMonks

Win 7 at Work. Living through it....Linux at home. Loving it.

Replies are listed 'Best First'.
Re^2: A little demo for Net::SSH2
by Anonymous Monk on Dec 12, 2013 at 18:36 UTC
    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;
      I suspect your server_stats command is taking too long to generate output. Does it work with a "nas_server -list" command?