我需要编写脚本以连接到Cisco路由器并执行命令。 linux服务器和Cisco路由器使用ssh密钥,因此不需要用户名/密码。我已经找到了建立连接的方法,但是我不知道如何发出命令并读取响应。
注意:它必须在php中才能与我们正在进行的其他一些事情集成。
这是我到目前为止所拥有的:-
<?php
$connection = ssh2_connect("n.n.n.n", 22, array("hostkey"=>"ssh-rsa"));
if(!$connection)
{
die("Could not connect to the Router \n\r");
exit();
}
if (ssh2_auth_none ($connection, "username"))
{
echo("Public Key Authentication Successful\n\r");
}
else
{
die("Public Key Authentication Failed");
exit();
}
// New commands based on help received
try
{
$command = "dir";
$stream = ssh2_exec($connection, $command);
// added to test if the ssh2_exec command returns false - which it does, issue is with the command ???
if(!$stream)
{
echo("Command returned False\n\r");
exit();
}
$errorStream = ssh2_fetch_stream($stream, SSH2_STREAM_STDERR);
stream_set_blocking($errorStream, true);
stream_set_blocking($stream, true);
$errorStreamContent = stream_get_contents($errorStream);
$streamContent = stream_get_contents($stream);
echo("ErrorStream : " . $errorStreamContent . "\n" . "Stream : " .
$streamContent . "\n\r");
}
catch(exception $e)
{
echo("Error : " . $e);
exit();
}
?>
现在输出如下:-
Public Key Authentication Successful
Command returned False
有人可以给我发出命令和读取任何结果的正确方法吗?谢谢。
答案 0 :(得分:0)
我设法通过使用ssh2_auth_pubkey_file将ssh密钥传递到路由器并进行身份验证来解决此问题。之后,它可以正常工作。