linux snmpd服务

来源:互联网 发布:云计算对oa系统的影响 编辑:程序博客网 时间:2024/04/30 11:05

一、Linux(RedHat)的配置

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

1、查找以下字段:


# sec.name source community
com2sec notConfigUser default public


将"comunity"字段改为你要设置的密码.比如"public".

将“default”改为你想哪台机器可以看到你的snmp信息,如10.10.10.10。

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.


#access notConfigGroup "" any noauth exact systemview none none

3、查找以下字段:


## incl/excl subtree mask
#view all included .1 80

将该行前面的"#"去掉.

保存关闭.

4、运行/etc/init.d/snmpd start命令运行snmpd.

最后运行netstat -ln查看161端口是否打开了.