私は次の場所にあるサンプルコードに従おうとしています:
http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/
スイッチに接続でき、認証に成功しました。しかし、コマンドを実行しようとすると、この投稿のタイトルにあるエラー メッセージで失敗します。
if (!function_exists("ssh2_connect")) die("function ssh2_connect doesn't exist");
// log in at server1.example.com on port 22
if(!($con = ssh2_connect("10.14.123.12", 22))){
echo "fail: unable to establish connection\n";
} else {
// try to authenticate with username root, password secretpassword
if(!ssh2_auth_password($con, "root", "mypassword")) {
echo "fail: unable to authenticate\n";
} else {
// execute a command
if (!($stream = ssh2_exec($con, "show mac-address" ))) {
echo "fail: unable to execute command\n";
} else {
stream_set_blocking($stream, true);
$data = "";
while ($buf = fread($stream,4096)) {
$data .= $buf;
}
fclose($stream);
}
}
}
show mac-address コマンドを実行しようとしている行で停止しています。これが switch コマンドの正しい構文であることを確認しました。手動で試してみましたが、問題なくデータが返されました。助言がありますか?ありがとう。