hi, ich habe ein Problem mit meiner ssh2 connection. Folgender Fehler tritt bei mir auf:
Die ausgaben [Connection...], [Connected], [Authenticating...] werden ausgegeben und dann kommt Folgender Fehler:
Hier der Code
mein acc und mein pw stimmen ich habe sie auch schon ausprobiert (per shell und so).
Woran liegt das?
MfG Basti
Die ausgaben [Connection...], [Connected], [Authenticating...] werden ausgegeben und dann kommt Folgender Fehler:
Warning: ssh2_auth_password() [function.ssh2-auth-password]: Authentication failed for root using password in C:\Programme\xampp\htdocs\index.php on line 18
PHP-Code:
<?
echo "[Connecting...]<br>";
$ssh2 = ssh2_connect('10.17.13.53',22,array('hostkey'=>'ssh-dss'));
if(!$ssh2)
{
die("[Could not Connect...]<br>");
}
else
{
echo "[Connected]<br>";
}
echo "[Authenticating...]<br>";
if (ssh2_auth_password($ssh2, 'root', 'meinpw'))
{
echo "Authentication Successful!\n";
}
else
{
die('Authentication Failed...');
}
?>
Woran liegt das?
MfG Basti
Kommentar