While connecting to the remote host using the Net::SSH::Expect module, 2 out of 10 times I get the error SSHConnectionAborted.

I an unable to find the reason for this error and its solution. Can anybody please help me in this?

I am using the following Perl code:

my $Ssh = Net::SSH::Expect->new(
    host       => 15.178.209.112,
    user       => Administrator,
    password   => Password,
    raw_pty    => 1,
    timeout    => 10,
    log_stdout => 1
);
eval {$Ssh_Login = $Ssh->login();};
link|improve this question

1  
why on earth did you tag this html? – tekknolagi Dec 2 '11 at 5:39
1  
That's some pretty fancy looking HTML. – Nathan Hoad Dec 2 '11 at 5:40
see i dont know about tagging. its a perl code and i want help – Nitesh Dec 2 '11 at 5:43
@Nitesh please leave the networking tag, and mind you, calm down a bit – tekknolagi Dec 2 '11 at 5:44
very new to stack overflow. sory. can u help me how to raise a question again as it is a perl code – Nitesh Dec 2 '11 at 5:45
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

Do not use Net::SSH::Expect, it is just not reliable!

Net::SSH2, Net::OpenSSH (does not work on Cygwin or Windows) or even Net::SSH::Perl are better options.

Update: If all of those fail, Expect may still be a good option.

link|improve this answer
we are using cygwin environment to execute our scripts. Do u think these modules are suitable for cygwin. – Nitesh Dec 2 '11 at 12:50
What are the possible issues related with Net::SSH::Expect module – Nitesh Dec 2 '11 at 12:50
@Nitesh: I do not use Cygwin myself so I don't know for sure but Net::SSH2 is probably your best option there. The problem with Net::SSH::Expect is that it relies exclusively on timeouts to determine when some command or operation has finished. – salva Dec 2 '11 at 13:01
Thanks salva for your help. I will try my script with Net::SSH2 module. Thanks a lot – Nitesh Dec 2 '11 at 13:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.