in reply to Re^4: net::ssh:perl - sshd: debug1: need rekeying
in thread net::ssh:perl - sshd: debug1: need rekeying

I'm testing.... No problem so far (but I replaced the "remote script" by the simple straight commmand : tar czf  /tmp/toto.tgz /mnt/Musique/AlJarreau/Jarreau/
May be the remote script is hosed... Why use "print STDERR"? You have "warn" for that, use it.
BTW you didn't follow the Very Holy Golden Law : Always Use strict.
Better change the code this way :
#!/usr/bin/perl -w use strict; use diagnostics; #use strict; use Net::SSH::Perl; use IO::Handle; open(FOUT, ">/tmp/test.out"); open(FERR, ">/tmp/test1.err"); ########################## my ($sshconn, $ssherr, $sshexit); my %params = ( protocol => 2, port => 22, debug => 'true', interactive => 'false', compression => 'false', identity_files => [$ENV{HOME}."/.ssh/id_rsa"], options => [ "RSAAuthentication yes", "PasswordAuthentication yes", "ConnectTimeout 10", "BatchMode yes", "FallBackToRsh no", "RhostsAuthentication no", "RhostsRSAAuthentication no", "KeepAlive yes"] ); eval { if ( $sshconn = Net::SSH::Perl->new("localhost", %params)) { $sshconn->login('op'); $sshconn->register_handler("stdout", sub { my($outchannel, $outbuffer) = @_; print(FOUT $sshconn->type); }); $sshconn->register_handler("stderr", sub { my($errchannel, $errbuffer) = @_; print(FERR $errbuffer->bytes); }); ($ssherr, $ssherr, $sshexit) = $sshconn->cmd("/tmp/bufile.pl") +; $sshconn->cmd("exit"); } }; if ( $@ ) { warn $@; } close(FOUT); close(FERR);

Replies are listed 'Best First'.
Re^6: net::ssh:perl - sshd: debug1: need rekeying
by freeop (Initiate) on May 10, 2005 at 06:39 UTC
    yes, but remote script is "backup agent". :)
    important that the remote STDERR and remote STDOUT redirect to local file.(posteriorly wrought the STDERR messages)
    tar czf /tmp/toto.tgz /mnt/Musique/AlJarreau/Jarreau/
    work fine here:) but data transfer not ssh tunel and remote created
    "tar cz /mnt/Musique/AlJarreau/Jarreau/"
    print file STDOUT and
    $sshconn->register_handler("stdout", sub { my($outchannel, $outbuffer) = @_; print(FOUT $sshconn->type); });
    redirect to local file. the mistake one hour after check in. please try who that way (one hour!!) (use strict OK - this only test :))
    see my code comments)
    thank you