snmp问题,请高手指点

发布于 2022-07-26 10:20:14 字数 2784 浏览 15 评论 2

snmp.conf文件内容如下(这台主机的ip为192.168.0.9):
# First, map the community name "public" into a "security name"

#       sec.name  source          community
#com2sec notConfigUser  default       public
com2sec notConfigUser  default       public

####
# Second, map the security name into a group name:

#       groupName      securityModel securityName
group   notConfigGroup v1           notConfigUser
group   notConfigGroup v2c           notConfigUser

####
# Third, create a view for us to let the group have rights to:

# Make at least  snmpwalk -v 1 localhost -c public system fast again.
#       name           incl/excl     subtree         mask(optional)
view    systemview    included   .1.3.6.1.2.1.1
view    systemview    included   .1.3.6.1.2.1.25.1.1
view    all           included   .1
####
# Finally, grant the group read-only access to the systemview view.

#       group          context sec.model sec.level prefix read   write  notif
access  notConfigGroup ""      any       noauth    exact  systemview none none
access  notConfigGroup ""      any       noauth    exact  all        none none
access  notConfigGroup ""      any       noauth    exact  mib2       none none

exec .1.3.6.1.4.1.2021.56 mem /bin/bash /tmp/memtest.sh
exec .1.3.6.1.4.1.2021.57 cpu /bin/bash /tmp/cpustat.sh

我在192.168.0.15主机上测试,输入命令snmpwalk -v 1 192.168.0.9 -c public .1.3.6.1.4.1.2021.57,怎么提示END MIB.
cat memtest.sh
#!/bin/bash

free -m|grep -i mem|awk '{print $3}'
free -m|grep -i mem|awk '{print $2}'
cat cpustat.sh
#!/bin/bash

idle=`sar -u 1 3|grep -i average|awk '{print $7}'`
used=`echo "100 - $idle"|bc -l -s`
echo $idle
echo $used

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

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

发布评论

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

评论(2

贩梦商人 2022-07-26 14:49:49

在顶一下,cu没人了吗???

ㄖ落Θ余辉 2022-07-26 10:24:59

那位大哥知道,赐教一下.

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