ssh2_auth_password
(PECL ssh2 >= 0.9.0)
ssh2_auth_password — SSH 上でプレーンなパスワードを使用した認証を行う
説明
SSH 上でプレーンなパスワードを使用した認証を行います。 バージョン 0.12 以降、この関数は keyboard_interactive 方式にも対応するようになりました。
パラメータ
session
-
ssh2_connect() のコールによって取得した SSH 接続リンク ID。
username
-
リモートのユーザー名。
password
-
username
のパスワード。
例
例1 パスワードを用いた認証
<?php
$connection = ssh2_connect('shell.example.com', 22);
if (ssh2_auth_password($connection, 'username', 'secret')) {
echo "Authentication Successful!\n";
} else {
die('Authentication Failed...');
}
?>
+add a note
User Contributed Notes 1 note
sgchris at gmail dot com ¶
9 years ago
Please note that the function ssh2_auth_password raises PHP warning(!) on bad authentication. To avoid the warning, use the "silence" ("@") operator.
<?php
$ssh = ssh2_connect($host);
if (false === $ssh) {
die('connection failed');
}
$auth = @ssh2_auth_password($ssh, $user, $password);
if (false === $auth) {
die('authentication failed');
}
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google