# rpm -qa |grep snmpnet-snmp-5.5-49.el6.i686net-snmp-libs-5.5-49.el6.i686php-snmp-5.3.3-27.el6_5.i686
如果沒有,那麼放入Linux安裝盤找到snmp的rpm包進行安裝,或者到網上搜索適合自己Linux發行版本的rpm包進行安裝,或者使用yum進行安裝
需要安裝的大概有一下幾個:
yum install -y net-snmpyum install -y net-snmp-develyum install -y net-snmp-libsyum install -y net-snmp-perlyum install -y net-snmp-utilsyum install -y mrtg
其中有一些不是必須的, -y 指的是對所有問題回答yes,省去安裝時的交互。
3.啟動輸入 service snmpd start 並用 service snmpd status 查看服務狀態。注意:有時輸入service snmpd status 後出現snmpd dead but pid file exists或者snmpd dead but subsys locked原因是沒有先輸入snmpd,原理還不是很明白,但是先記著吧。
4.配置裝好之後修改/etc/snmp/snmpd.conf對其進行配置 A、修改默認的 “community” string com2sec notConfigUser default public 將public修改為你才知道的字符串; 另default字符串如果想指定特定的服務器采集數據的話,將此字段替換成允許采集服務器的IP地址。 B、把下面的#號去掉 #view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc C、把下面的語句 access notConfigGroup ” ” any noauth exact systemview none none 改成: access notConfigGroup ” ” any noauth exact mib2 none none
5.重啟snmpd服務/etc/rc.d/init.d/snmpd restart
完成snmpd的配置
6.確保iptables防火牆開放了udp 161端口的訪問權限可使用iptables -L -n 查看當前iptables規則
可編輯/etc/sysconfig/iptables文件來修改iptables規則
本文原創地址:http://www.linuxprobe.com/snmp-update.html
http://xxxxxx/Linuxjc/1156071.html TechArticle