Expect 使用示例

示例 #1 Expect 使用示例

此示例通过 SSH 连接到远程主机,并打印远程主机运行时间。

<?php
ini_set
("expect.loguser", "Off");

$stream = fopen("expect://ssh root@remotehost uptime", "r");

$cases = array (
array (
0 => "password:", 1 => PASSWORD)
);

switch (
expect_expectl ($stream, $cases)) {
case
PASSWORD:
fwrite ($stream, "password\n");
break;

default:
die (
"连接到远程主机时发生错误!\n");
}

while (
$line = fgets($stream)) {
print
$line;
}
fclose ($stream);
?>

以下示例连接到远程主机,确定安装的操作系统是 32 位还是 64 位,然后运行特定软件包的更新。

示例 #2 另一个 Expect 使用示例

<?php
ini_set
("expect.timeout", -1);
ini_set("expect.loguser", "Off");

$stream = expect_popen("ssh root@remotehost");

while (
true) {
switch (
expect_expectl ($stream, array (
array (
"password:", PASSWORD), // SSH 正在询问密码
array ("yes/no)?", YESNO), // SSH 正在询问是否保存主机条目
array ("~$ ", SHELL, EXP_EXACT), // 我们得到了 shell!
))) {
case
PASSWORD:
fwrite ($stream, "secret\n");
break;

case
YESNO:
fwrite ($stream, "yes\n");
break;

case
SHELL:
fwrite ($stream, "uname -a\n");
while (
true) {
switch (
expect_expectl ($stream, array (
array (
"~$ ", SHELL, EXP_EXACT), // 我们得到了 shell!
array ("^Linux.*$", UNAME, EXP_REGEXP), // uname -a 输出
), $match)) {
case
UNAME:
$uname .= $match[0];
break;

case
SHELL:
// 运行更新:
if (strstr ($uname, "x86_64")) {
fwrite ($stream, "rpm -Uhv http://mirrorsite/somepath/some_64bit.rpm\n");
} else {
fwrite ($stream, "rpm -Uhv http://mirrorsite/somepath/some_32bit.rpm\n");
}
fwrite ($stream, "exit\n");
break
2;

case
EXP_TIMEOUT:
case
EXP_EOF:
break
2;

default:
die (
"发生错误!\n");
}
}
break
2;

case
EXP_TIMEOUT:
case
EXP_EOF:
break
2;

default:
die (
"发生错误!\n");
}
}

fclose ($stream);
?>
添加注释

用户贡献的注释 1 个注释

David dkxl
11 年前
如果使用 telnet 而不是 ssh 的示例,请注意 telnet 可能需要 \r(回车符)而不是 \n(换行符)。
To Top