0
我有一個場景,當我打電話ssh2_auth_none
,它返回true
。根據文檔,這似乎表明,這意味着交換機配置爲允許登錄而無需身份驗證。ssh2_auth_none返回true
但是,情況並非如此。我們正在使用的密碼...
這裏是我的代碼如下所示:
<?php
$connection = ssh2_connect('10.124.123.45', 22);
$auth_methods = ssh2_auth_none($connection, 'username');
var_dump($auth_methods);
if (in_array('password', $auth_methods)) {
echo "Server supports password based authentication\n";
}
?>
,如果你有什麼我可以測試或檢查來解決此問題的任何意見或建議,只是想知道。最終,我希望能夠撥打ssh2_connect
和ssh2_auth_password()
登錄到此交換機。
謝謝。