snmp代理的基本配置

查看snmp安装情况rpm -qa |grep snmp
如果没安装就直接用yum安装

yum install net-snmp net-snmp-libs

安装完毕后

打开默认的/etc/snmp/snmpd.conf文件,更改如下配置:

1、查找以下字段:
     sec.name source          community
com2sec notConfigUser default       public
将"comunity"字段改为你要设置的密码.比如"public".                                            
将“default”改为你想哪台机器可以看到你的snmp信息,如10.10.10.10。
服务端改为127.0.0.1

2、查找以下字段:
# 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 all none none

将"read"字段改为all.
3、查找以下字段:
#           incl/excl subtree                          mask
#view all    included .1                               80
将该行前面的"#"去掉.
保存关闭.

你可能感兴趣的:(linux,snmp)