Linux系统下开启SNMP
说明:要使用CactiEZ监控一台Linux主机,需要在被监控的主机上安装net-snmp等相关的软件包;同时需要开启防火墙UDP161端口1、开启防火墙UDP161端口vi /etc/sysconfig/iptables #编辑防火墙配置-A INPUT -m state --state NEW -m udp -p udp --dport 161 -j ACCEPT/etc/init.d/iptables restart #重启防火墙使配置生效2、安装net-snmp(这里使用CentOS的yum命令在线安装)yum -y install net-snmpchkconfig snmpd on #设置开机启动service snmpd start #启动snmpd2、配置snmpmv /etc/snmp/snmpd.conf /etc/snmp/snmpd.confbak #备份配置文件vim snmpd.conf #添加下面代码com2sec notConfigUser default publicgroup notConfigGroup v1 notConfigUsergroup notConfigGroup v2c notConfigUserview systemview included .1access notConfigGroup "" any noauth exact systemview none nonesyslocation www.osyunwei.compass .1.3.6.1.4.1.4413.4.1 /usr/bin/ucd5820stat:wq! #保存退出service snmpd restart #重启snmpnetstat -nlup |grep ":161" #检查snmp服务器是否运行,出现下面输出结果,说明snmp运行正常
页:
[1]