我正在尝试通过执行一些 php 命令来控制远程电源开关。
有一个 telnet 库,我用它来建立 telnet 连接: http: //www.soucy.org/project/cisco/source.php
我的连接函数如下所示:
public function connect()
{
$this->_connection = fsockopen($this->_hostname, $this->_port, $errno, $errstr, $this->_timeout);
if ($this->_connection === false) {
die("Error: Connection Failed for $this->_hostname\n");
} // if
stream_set_timeout($this->_connection, $this->_timeout);
$this->_readTo(':');
if (substr($this->_data, -9) == 'Username:') {
$this->_send($this->_username);
$this->_readTo(':');
} // if
$this->_send($this->_password);
$this->_send(''); //blank space, because we need to press <Enter> for the second login prompt
//Login Second time
$this->_send($this->_username2);
$this->_send($this->_password2);
}
发送函数如下所示:
private function _send($command)
{
fputs($this->_connection, $command . "\r\n");
}
因此,如果我们要控制远程电源开关,则有一个菜单。在此菜单中,用户可以像这样导航:
-------- 控制台 ----------------------------------------- --------------
1- Device Manager
2- Network
3- System
4- Logout
<ESC>- Main Menu, <ENTER>- Refresh
当我们按 1 时,我们将转到另一个菜单:
- - - - 装置经理 - - - - - - - - - - - - - - - - - - - - - ---------------
1- Bank Monitor
2- Outlet Management
3- Power Supply Status
<ESC>- Back, <ENTER>- Refresh
等等......所以我们可以通过输入这些数字来访问我们想要的插座。
重新加载插座的功能(插座号 22):
public function ReloadOutlet22()
{
$this->_send('1'); // Access Device Manager
$this->_send('2'); // Access Outlet Management
$this->_send('1'); // Outlet Control/Configuration
$this->_send(); // '<Enter> to continue'
$this->_send('22'); // Access Outlet number 22
$this->_send('6'); // Delayed Reboot (reboot with 5 sec delay)
$this->_send('YES'); // 'Yes' to continue
$this->_send(); // <Enter> to continue'
//Everything is working till there. I can successfully reload the outlet which I want. After the reload I want to go to the main menu and logout from this console.
$this->_send('\e'); // <Esc> - back
$this->_send('\e'); // <Esc> - back
$this->_send('\e'); // <Esc> - back
$this->_send('\e'); // <Esc> - back
$this->_send('\e'); // <Esc> - back
$this->_send('4'); // Logout
}
所以有问题。下次,当我想重新加载另一个插座时,例如编号为 23 的插座,我无法成功登录 APC PDU。我可以在登录提示中看到尝试使用 '\e' 作为用户名和密码。
所以也许你们有一个想法,为什么在成功重新加载后我的代码不能正常工作?为什么我无法返回主菜单并注销?
感谢您的时间。