Java实现snmp SNMP4J通过get、trap、walk监控交换机 附带api

时间:2025-04-04 22:31:14
package com.snmp.collection.get_collection.collectionforII; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.snmp4j.*; import org.snmp4j.event.ResponseEvent; import org.snmp4j.mp.MPv1; import org.snmp4j.mp.MPv2c; import org.snmp4j.mp.MPv3; import org.snmp4j.mp.SnmpConstants; import org.snmp4j.security.*; import org.snmp4j.smi.*; import org.snmp4j.transport.DefaultTcpTransportMapping; import org.snmp4j.transport.DefaultUdpTransportMapping; import org.snmp4j.util.MultiThreadedMessageDispatcher; import org.snmp4j.util.ThreadPool; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.net.UnknownHostException; import java.util.*; /** * @description: get方式获取数据 * @author: yghhz * @create: 2020-11-15 10:14 **/ public class MultiThreadedGetDemo { private static final Logger LOGGER = LogManager.getLogger(MultiThreadedGetDemo.class); //用户名 private String username = "nms2-admin"; //鉴权密码 private String authPassword = "hello123"; //数据加密密码 private String privPassword = "hello123"; //trap地址 private String address = "udp:192.160.0.1/162"; //get 地址 private String addressGet = "udp:192.160.0.2/161"; private MultiThreadedMessageDispatcher dispatcher; private Snmp snmp = null; private Address listenAddress; private ThreadPool threadPool; public MultiThreadedGetDemo() { } public void initSnmp() throws IOException { //1、初始化多线程消息转发类 MessageDispatcher messageDispatcher = new MessageDispatcherImpl(); //其中要增加三种处理模型。如果snmp初始化使用的是Snmp(TransportMapping<? extends Address> transportMapping) ,就不需要增加 messageDispatcher.addMessageProcessingModel(new MPv1()); messageDispatcher.addMessageProcessingModel(new MPv2c()); //当要支持snmpV3版本时,需要配置user OctetString localEngineID = new OctetString(MPv3.createLocalEngineID()); USM usm = new USM(SecurityProtocols.getInstance().addDefaultProtocols(), localEngineID, 0); OctetString userName1 = new OctetString(username); OctetString authPass = new OctetString(authPassword); OctetString privPass = new OctetString(privPassword); UsmUser user = new UsmUser(userName1, AuthMD5.ID, authPass, PrivAES128.ID, privPass); usm.addUser(user.getSecurityName(), user); messageDispatcher.addMessageProcessingModel(new MPv3(usm)); //2、创建transportMapping ip为本地ip,可以不设置 TransportMapping<?> transportMapping = new DefaultUdpTransportMapping(); //3、正式创建snmp snmp = new Snmp(messageDispatcher, transportMapping); //开启监听 snmp.listen(); } private Target createTarget(String oid) { Target target = null; int version = 1; if (!(version == SnmpConstants.version3 || version == SnmpConstants.version2c || version == SnmpConstants.version1)) { //("参数version异常"); return target; } if (version == SnmpConstants.version3) { target = new UserTarget(); //snmpV3需要设置安全级别和安全名称,其中安全名称是创建snmp指定user设置的new OctetString("SNMPV3") target.setSecurityLevel(SecurityLevel.AUTH_PRIV); target.setSecurityName(new OctetString(this.username)); } else { //snmpV1和snmpV2需要指定团体名名称 target = new CommunityTarget(); ((CommunityTarget) target).setCommunity(new OctetString(this.username)); if (version == SnmpConstants.version2c) { target.setSecurityModel(SecurityModel.SECURITY_MODEL_SNMPv2c); } } target.setVersion(version); //必须指定,没有设置就会报错。 target.setAddress(GenericAddress.parse(this.addressGet)); target.setRetries(3); target.setTimeout(2000); return target; } private static PDU createPDU(int version, int type, String oid) { PDU pdu = null; if (version == SnmpConstants.version3) { pdu = new ScopedPDU(); } else { pdu = new PDUv1(); } pdu.setType(type); //可以添加多个变量oid /*for(String oid:oids){ (new VariableBinding(new OID(oid))); }*/ pdu.add(new VariableBinding(new OID(oid))); return pdu; } /** * GET方式请求 * @param oid */ public List<Map> snmpGet(String oid) { try { LOGGER.info("getfangshi"); List<Map> list = new ArrayList<Map>(); //1、初始化snmp,并开启监听 initSnmp(); //2、创建目标对象 Target target = this.createTarget(oid); //3、创建报文 PDU pdu = createPDU(1, PDU.GET, oid); //4、发送报文,并获取返回结果 ResponseEvent responseEvent = snmp.send(pdu, target); PDU response = responseEvent.getResponse(); if (response == null) { System.out.println("TimeOut..."); } else { if (response.getErrorStatus() == PDU.noError) { //get方式获取到的返回值 Vector<? extends VariableBinding> vbs = response.getVariableBindings(); for (VariableBinding vb : vbs) { Map map = new HashMap(); map.put("value",vb.getVariable()); System.out.println("():" + vb.getVariable()); System.out.println("OID:" + vb.getVariable()); LOGGER.info("OIDvALUE" + vb.getVariable()); list.add(map); } return list; } else { System.out.println("Error:" + response.getErrorStatusText()); } } } catch (IOException e) { e.printStackTrace(); } return null; } //开启监控的main方法。 public static void main(String[] args) throws IOException { MultiThreadedGetDemo multithreadedtrapreceiver = new MultiThreadedGetDemo(); multithreadedtrapreceiver.run(); } public void run() { try { System.out.println("开始监听get信息!"); LOGGER.info("内存"); String devOid = "1.3.6.1.4.1.25506.2.6.1.1.1.1.8"; this.snmpGet(devOid); LOGGER.info("cpu"); String devOid1 = "1.3.6.1.4.1.25506.2.6.1.1.1.1.6"; this.snmpGet(devOid1); LOGGER.info("运行时间"); String data1 = "1.3.6.1.2.1.1.3.0"; this.snmpGet(data1); } catch (Exception ex) { ex.printStackTrace(); } } }