in reply to Re^2: How to catch/avoid SSHConnectionAborted
in thread How to catch/avoid SSHConnectionAborted

What are the contents of the $login_output variable?

According to the Net::SSH::Expect manpage, it should contain some form of response from the server:

# 2) logon to the SSH server using those credentials. # test the login output to make sure we had success my $login_output = $ssh->login(); if ($login_output !~ /Welcome/) { die "Login has failed. Login output was $login_output"; }

Replies are listed 'Best First'.
Re^4: How to catch/avoid SSHConnectionAborted
by daphnaw (Acolyte) on Nov 16, 2010 at 08:28 UTC
    The $login_output variable only contains the prompt for password: Password: I think its contents is installation dependent.