snmp 服务无法在 Linux 中正确运行我的程序

发布于 2024-11-07 20:07:51 字数 539 浏览 0 评论 0原文

我开发了这个脚本程序:(程序名称是x1)

#!/bin/bash
/usr/bin/top -n 1 >/tmp/top1.log
echo ok

接下来是我在终端上运行它并得到正确回复的命令:

./x1

这意味着当外部命令top -n 1>tmp/top1.log 写入文件 top1.log 中,然后在输出中打印消息 ok!

但是,如果我配置 snmpd.cof 并且该程序由 snmp 服务运行:

snmpwalk -v2c -c public 127.0.0.0    OID

top -n 1>/tmp/top1.log 的外部命令将不会放置在 top1.log 中,并且不会生成文件top1.log,仅在输出中打印消息ok。

事实上,top -n 1>/tmp/top1.log 命令无法由 SNMP 服务运行。

I have developed this script program : (program name is x1)

#!/bin/bash
/usr/bin/top -n 1 >/tmp/top1.log
echo ok

Next is the command that I run it on terminal and get correct reply:

./x1

meaning that when external command of top -n 1>tmp/top1.log is written in the file top1.log and then the message ok printed in output!

But, if I config the snmpd.cof and the program is run by snmp service:

snmpwalk -v2c -c public 127.0.0.0    OID

The external command of top -n 1>/tmp/top1.log will not be placed in top1.log and the file top1.log will not be generated, only the message ok is printed in the output.

In fact, top -n 1>/tmp/top1.log command cannot run by SNMP service.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃扇骨 2024-11-14 20:07:51

我的 snmpd.conf :

syslocation Server Room
syscontact Sysadmin (root@localhost)

rwcommunity public 192.168.7.165
rwcommunity public 127.0.0.1

sh  1.3.6.1.4.1.999.4.1.4  public  /tmp/x1

我使用( sh 和 exec )来运行!

my snmpd.conf :

syslocation Server Room
syscontact Sysadmin (root@localhost)

rwcommunity public 192.168.7.165
rwcommunity public 127.0.0.1

sh  1.3.6.1.4.1.999.4.1.4  public  /tmp/x1

i used ( sh and exec ) to run !

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文