查看phpinfo(),是否有显示php_ssh2扩展加载成功。
家里的路由器刷了OpenWrt系统,我们下面用php代码通过ssh连接路由器,然后执行唤醒命令来唤醒家里的主机,代码如下:
<?
$connection = ssh2_connect("hangge.oicp.net",8022);
if(ssh2_auth_password($connection,"root","yuhang")){
echo "Successfull";
}else{
die("Failed");
}
$tcmd = '/usr/bin/etherwake -D "1c:6f:65:20:70:d4"';
$stream = ssh2_exec($connection,$tcmd);
stream_set_blocking($stream,true);
echo stream_get_contents($stream);
?>