免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2192 | 回复: 3
打印 上一主题 下一主题

php 与ssh扩展的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-04-20 12:20 |只看该作者 |倒序浏览
我在win XP 下,怎么也不成功啊。。php 5.2.3 ,apache 2.2.11
ssh2_connect(): Unable to connect to ,总是这错误,有哪位大虾帮帮忙啊,偶在网上翻了好久了。。未果啊。。

论坛徽章:
0
2 [报告]
发表于 2009-04-20 19:10 |只看该作者
你是怎么安装扩展的?

phpinfo()

论坛徽章:
0
3 [报告]
发表于 2009-04-21 18:12 |只看该作者
windows不成功 就先换一个 *nix下的试试啊

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
4 [报告]
发表于 2009-04-22 23:55 |只看该作者
<?php
/* Notify the user if the server terminates the connection */
function my_ssh_disconnect($reason, $message, $language) {
  printf("Server disconnected with reason code [%d] and message: %s\n",
         $reason, $message);
}

$methods = array(
  'kex' => 'diffie-hellman-group1-sha1',
  'client_to_server' => array(
    'crypt' => '3des-cbc',
    'comp' => 'none'),
  'server_to_client' => array(
    'crypt' => 'aes256-cbc,aes192-cbc,aes128-cbc',
    'comp' => 'none'));

$callbacks = array('disconnect' => 'my_ssh_disconnect');

$connection = ssh2_connect('admin.oursite.com', 22, $methods, $callbacks);
if (!$connection) die('Connection failed');
var_dump($connection);
?>

以上代码,原版抄袭于手册,(链接地址没有),结果如下:
---------- PHP5 代码调试 ----------
resource(4) of type (SSH2 Session)

输出完毕 (耗时 2 秒) - 正常终止
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP