1. 下载安装包
-
在线
yum install -y net-snmp*
-
离线
总共需要4个基础包
安装命令:下载地址:https://centos.pkgs.org/
rpm -ivh net-snmpxxx.rpm
安装顺序
- net-snmp-libs-5.7.2-37.el7.x86_64.rpm
- net-snmp-agent-libs-5.7.2-37.el7.x86_64.rpm
- net-snmp-5.7.2-37.el7.x86_64.rpm
- net-snmp-utils-5.7.2-37.el7.x86_64.rpm
- 查看是否安装成功
snmpd -v
2. 设置配置文件
文件位置:/etc/snmp/snmpd.conf
文件内容
com2sec notConfigUser default public
group notConfigGroup v1 notConfigUser
group notConfigGroup v2c notConfigUser
access notConfigGroup "" any noauth exact all none none
view all included .1 80
view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc
access notConfigGroup “” any noauth exact all none none
3. snmp服务
- 启动
systemctl start snmpd.service
- 查看是否启动成功
systemctl status snmpd.service
- 测试命令
snmpwalk -v 1 -c public 127.0.0.1 .1.3.6.1.2.1.1.1.0 # snmpwalk -v 版本号 -c 团体号 ip OID