博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos里启用snmp的监控
阅读量:4883 次
发布时间:2019-06-11

本文共 1251 字,大约阅读时间需要 4 分钟。

    yum install net-snmp net-snmp-devel -y
    /etc/init.d/snmpd stop
    net-snmp-config –create-snmpv3-user -ro -A 密码 -a MD5 用户名
    /etc/init.d/snmpd start

    密码要超过8位

[root@zhudoubaby ~]# net-snmp-config --create-snmpv3-user -ro

Enter a SNMPv3 user name to create:
test
Enter authentication pass-phrase:
net-snmp-config
Enter encryption pass-phrase:
  [press return to reuse the authentication pass-phrase]
net-snmp-config
adding the following line to /var/net-snmp/snmpd.conf:
   createUser zhudou MD5 "netsnmp$#config" DES netsnmp$#config
adding the following line to /etc/snmp/snmpd.conf:
   rouser test
[root@zhudoubaby ~]# service snmpd start

有防火墙的情况下,得把udp 161 端口打开了

[root@zhudoubaby ~]# iptables -L

Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
RH-Firewall-1-INPUT  all  --  anywhere             anywhere            
Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
RH-Firewall-1-INPUT  all  --  anywhere             anywhere            
Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         
Chain RH-Firewall-1-INPUT (2 references)
target     prot opt source               destination         
 
ACCEPT     udp  --  anywhere             anywhere            state NEW udp dpt:snmp    (必须的
ACCEPT     tcp  --  anywhere             anywhere            state NEW tcp dpt:smtp  (不用)
 

/etc/sysconfig/iptables

转载于:https://www.cnblogs.com/peter9/archive/2011/11/02/2362148.html

你可能感兴趣的文章
tomcat优化方向
查看>>
http
查看>>
8-1-组队赛
查看>>
codility: CountTriangles
查看>>
赛斯说
查看>>
python 中的pipe
查看>>
(SQL Analyzer services)定义链接维度
查看>>
squid
查看>>
系统开发管理、架构与设计步步谈随笔索引
查看>>
Java的时间空间复杂度详解
查看>>
有效防止SQL注入漏洞
查看>>
Linux chown命令
查看>>
十、I/O流——4-输入、输出流体系
查看>>
十二、网络编程——4-基于UDP协议的网络编程
查看>>
异常处理与调试6 - 零基础入门学习Delphi55(完)
查看>>
if语句三种形式
查看>>
正则表达式之字符串验证
查看>>
codeblocks如何支持_tmain?可移植代码的编码推荐
查看>>
省市联动 填坑
查看>>
canvas写的一个小时钟demo
查看>>