1、確保本機已經安裝了snmp服務
[root@idc ~]# rpm -qa |grep snmp
net-snmp-libs-5.1.2-11.EL4.7
net-snmp-5.1.2-11.EL4.7
如果沒有,那麼放入linux安裝盤找到snmp的rpm包進行安裝,或者到網上搜索適合自己linux發行版本的rpm包進行安裝
2、snmpd.conf文件配置
按照如下方式修改snmpd.conf文件
A、修改默認的community string
com2sec notConfigUser default public
將public修改為你才知道的字符串
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
3、重啟snmpd服務
#/etc/rc.d/init.d/snmpd restart
完成snmpd的配置
4、確保linux的iptables防火牆對我們的流量監控服務器開放了udp 161端口的訪問權限
可使用iptables –L –n 查看當前iptables規則
可編輯/etc/sysconfig/iptables文件來修改iptables規則。