- 论坛徽章:
- 1
|
<?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 秒) - 正常终止 |
|