3

tl;dr - 无法使用我尝试的任何编程语言将使用 RPC 的命令的输出捕获到远程服务器,即使这些命令在手动输入时输出回命令提示符

我有一个函数,它使用 fpipe 发出 netsh 命令来显示来自我们的 DHCP 服务器的统计信息。我在程序的其他地方使用了同样的 fpipe 缓冲区读取技术,它工作正常,但在这里我根本没有得到任何输出:

编辑:我正在将我的代码简化为更多的概念验证类型片段。它实际上是一个包罗万象的 .cpp 源文件,它仍然会复制问题。

#include <iostream>
#include <string>
#include <stdio.h>  // for _popen() and _pclose()
using namespace std;

    int main()
    {
        char buff[512];
        buff[0]=0;
        string cmd="netsh dhcp server 192.168.200.15 scope 192.168.200.0 show clients 1";
        FILE *fpipe = _popen(cmd.c_str(),"r");
        if(fpipe==NULL) cout<<"Failed to open"<<endl; else cout<<"Opened pipe successfully";
        while(fgets(buff,sizeof(buff),fpipe)!=NULL) cout<<buff<<endl;
        _pclose(fpipe);
    }

我得到的唯一输出是:

Opened pipe successfully

但是,如果我将该命令复制/粘贴到另一个命令提示符窗口中,它会运行良好并立即吐出许多行。

那么它要去哪里呢?为什么没有任何东西进入我的缓冲区?

此外,将“cmd”字符串从 netsh 更改为“dir”命令将成功输出 dir 的输出。

编辑:甚至system(cmd.c_str());没有给我任何输出!

编辑:奇怪的是,cmd="netsh dump";实际上输出很好,但仍然cmd="netsh dhcp server...没有。CMD 路由 netsh 文本的方式有些奇怪,或者……什么?在我的舒适区之外。

编辑:这显然是 C++ 之外的一个问题,因为当我在 Python 2.7 shell 中时(顺便说一下,这是 Windows 7 64 位),我试试这个:

>>> import subprocess
>>> subprocess.call('dir', shell=True)
 Volume in drive C has no label.
 Volume Serial Number is 2E2B-B34F

 Directory of C:\MyDir

09/30/2013 01:24 PM  <DIR>       .
09/30/2013 01:24 PM  <DIR>       ..
09/20/2013 10:11 AM          45  test.txt
             1 File(s)       45 bytes
             2 Dir(s)   162,260,246,528 bytes free
0
>>> subprocess.call('netsh dhcp server 192.168.200.15 scope 192.168.200.0 show clients 1', shell=True)
0
>>>
4

4 回答 4

1

也许输出将发送到 STDERR 而不是 STDOUT?

在系统命令的末尾尝试这个 -> “2>&1”。

例如: FILE *p = popen("g++ main.cpp -o main", "r");

试试这个: FILE *p = popen("g++ main.cpp -o main 2>&1", "r");

于 2013-09-24T20:00:16.390 回答
0

会不会是权限问题?如果netsh dhcp ...命令需要管理员权限才能正常工作,则问题可能是应用程序在运行时没有继承管理员权限,因此无法成功完成命令。当然,在这种情况下,它似乎应该向 STDERR 输出一些东西,但我不知道......

于 2013-09-27T01:04:36.063 回答
0

你确定命令?我假设您使用的是 Windows ,因为当我执行 netsh /? 时提到了“命令提示符” 我根本看不到 dhcp 子命令。我只看到 dhcpclient 。即使使用了这个错误的命令(我想),我也会得到一个子命令不可用的输出。这是代码,我使用Cygwin。因此 _p* 函数被替换为 p* 函数。

#include <iostream>
#include <vector>
#include <string>
using std::cout;
using std::endl;
using std::string;
using std::vector;

#include <stdio.h>

int main(int argc, char* argv[])
{
    cout<<"Entered DHCPLookup() function"<<endl;
    vector<string> scopes;
    scopes.push_back("192.168.16.0");
    scopes.push_back("192.168.144.0");
    // some scopes omitted here
    scopes.push_back("192.168.155.0");
    scopes.push_back("192.168.200.0");
    char buff[512];
    for(int x=0;x<scopes.size();x++)
    {
        buff[0]=0;
        string cmd="netsh dhcp server 192.168.200.15 scope "+scopes[x]+" show clients 1";
        cout<<cmd<<endl;
        FILE *fpipe = popen(cmd.c_str(),"r");
        while(fgets(buff,sizeof(buff),fpipe)!=NULL) cout<<buff<<endl;
        pclose(fpipe);
    }
}

这是输出

进入 DHCPLookup() 函数 netsh dhcp server 192.168.200.15 scope 192.168.16.0 show clients 1 找不到以下命令:dhcp server 192.168.200.15 scope 192.168.16.0 show clients 1。

netsh dhcp server 192.168.200.15 scope 192.168.144.0 show clients 1 找不到以下命令:dhcp server 192.168.200.15 scope 192.168.144.0 show clients 1。

netsh dhcp server 192.168.200.15 scope 192.168.155.0 show clients 1 找不到以下命令:dhcp server 192.168.200.15 scope 192.168.155.0 show clients 1。

netsh dhcp server 192.168.200.15 scope 192.168.200.0 show clients 1 找不到以下命令:dhcp server 192.168.200.15 scope 192.168.200.0 show clients 1。

于 2013-09-30T11:22:50.583 回答
0

尝试将您的 _popen 替换为:

FILE *fpipe = _popen(cmd.c_str(),"rt");

也许您仍然必须完全指定读取模式。

并且还使用错误检查来检查 _popen 是否有效:

if(fpipe == NULL)
    cout<<"Failed to open"<<endl;
于 2013-09-23T20:35:18.510 回答