snmp4j 的简单使用

snmp4j最重要的核心类之间的关系

这里写图片描述

snmp4j向外部SNMP实体发送请求的过程:

  1. 用户代码(Invoker)通过Snmp.send()方法发起请求

  2. TransportMapping组件通过底层的TCP或者UDP协议将请求传输出去

  3. 请求、应答的载体均是PDU,对应了SNMP报文

  4. Target代表远程SNMP实体,持有它的地址、身份、SNMP版本等信息

  5. 对于同步请求,应答直接返回给Invoker;对于异步请求,应答通过ResponseListener回调,ResponseListener在Invoker发送异步请求时,作为方法参数注册

snmp4j接收外部SNMP实体的请求,并进行处理的过程:

  1. snmp4j监听(通过TransportMapping)外部SNMP报文,并转为PDU类型

  2. MessageDispatcher负责将PDU转发给(回调)合适的CommandResponder,自定义CommandResponder可以注册到Snmp会话

  3. CommandResponder负责处理请求PDU,可选的,给出一个应答PDU

snmp4j的应用实例:

1. 我们先做简单的:基于v2c实现snmpget snmpwalk

package snmphandle;

import java.io.IOException;
import java.net.InetAddress;
import java.net.SocketException;
import java.net.SocketTimeoutException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.snmp4j.CommunityTarget;
import org.snmp4j.PDU;
import org.snmp4j.Snmp;
import org.snmp4j.event.ResponseEvent;
import org.snmp4j.mp.SnmpConstants;
import org.snmp4j.smi.Address;
import org.snmp4j.smi.GenericAddress;
import org.snmp4j.smi.OID;
import org.snmp4j.smi.OctetString;
import org.snmp4j.smi.VariableBinding;
import org.snmp4j.transport.DefaultUdpTransportMapping;

import snmp.SNMPObject;
import snmp.SNMPSequence;
import snmp.SNMPVarBindList;
import snmp.SNMPv1CommunicationInterface;

/**
 * SNMP管理类
 */
public class SnmpManager {

    private static final Log log = LogFactory.getLog(SnmpManager.class);

    private static int version = 2vc; // SNMP版本

    private static String protocol = "udp"; // 监控时使用的协议

    private static String port = "161"; // 监控时使用的端口

    /**
     * 获取SNMP节点值
     * 
     * @param ipAddress 目标IP地址
     * @param community 公同体
     * @param oid 对象ID
     * @return String 监控结果代号
     * @throws AppException
     */
    @SuppressWarnings("unchecked")
    public static String snmpGet(String ipAddress, String community, String oid) throws AppException {
        String resultStat = null; // 监控结果状态

        StringBuffer address = new StringBuffer();
        address.append(protocol);
        address.append(":");
        address.append(ipAddress);
        address.append("/");
        address.append(port);

//      Address targetAddress = GenericAddress.parse(protocol + ":" + ipAddress + "/" + port);
        Address targetAddress = GenericAddress.parse(address.toString());
        PDU pdu = new PDU();
        pdu.add(new VariableBinding(new OID(oid)));
        pdu.setType(PDU.GET);

        // 创建共同体对象CommunityTarget
        CommunityTarget target = new CommunityTarget();
        target.setCommunity(new OctetString(community));
        target.setAddress(targetAddress);
        target.setVersion(SnmpConstants.version1);
        target.setTimeout(2000);
        target.setRetries(1);

        DefaultUdpTransportMapping udpTransportMap = null;
        Snmp snmp = null;
        try {
            // 发送同步消息
            udpTransportMap = new DefaultUdpTransportMapping();
            udpTransportMap.listen();
            snmp = new Snmp(udpTransportMap);
            ResponseEvent response = snmp.send(pdu, target);
            PDU resposePdu = response.getResponse();

            if (resposePdu == null) {
                log.info(ipAddress + ": Request timed out.");
            } else {
                //errorStatus = resposePdu.getErrorStatus();
                Object obj = resposePdu.getVariableBindings().firstElement();
                VariableBinding variable = (VariableBinding) obj;
                resultStat = variable.getVariable().toString();
            }
        } catch (Exception e) {
            throw new AppException("获取SNMP节点状态时发生错误!", e);
        } finally {
            if (snmp != null) {
                try {
                    snmp.close();
                } catch (IOException e) {
                    snmp = null;
                }
            }
            if (udpTransportMap != null) {
                try {
                    udpTransportMap.close();
                } catch (IOException e) {
                    udpTransportMap = null;
                }
            }
        }

        if (log.isInfoEnabled()) {
            log.info("IP:" + ipAddress + " resultStat:" + resultStat);
        }

        return resultStat;
    }


    /**
     * 走访SNMP节点
     * 
     * @param ipAddress 目标IP地址
     * @param community 共同体
     * @param oid 节点起始对象标志符
     * @return String[] 走方结果
     * @throws AppException
     */
    public static String[] snmpWalk(String ipAddress, String community, String oid) throws AppException {
        String[] returnValueString = null; // oid走访结果数组

        SNMPv1CommunicationInterface comInterface = null;
        try {
            InetAddress hostAddress = InetAddress.getByName(ipAddress);
            comInterface = new SNMPv1CommunicationInterface(
                    version, hostAddress, community);
            comInterface.setSocketTimeout(2000);

            // 返回所有以oid开始的管理信息库变量值
            SNMPVarBindList tableVars = comInterface.retrieveMIBTable(oid);
            returnValueString = new String[tableVars.size()];

            // 循环处理所有以oid开始的节点的返回值
            for (int i = 0; i < tableVars.size(); i++) {
                SNMPSequence pair = (SNMPSequence) tableVars.getSNMPObjectAt(i); // 获取SNMP序列对象, 即(OID,value)对
                SNMPObject snmpValue = pair.getSNMPObjectAt(1); // 获取某个节点的返回值
                String typeString = snmpValue.getClass().getName(); // 获取SNMP值类型名
                // 设置返回值
                if (typeString.equals("snmp.SNMPOctetString")) {
                    String snmpString = snmpValue.toString();
                    int nullLocation = snmpString.indexOf('\0');
                    if (nullLocation >= 0)
                        snmpString = snmpString.substring(0, nullLocation);
                    returnValueString[i] = snmpString;
                } else {
                    returnValueString[i] = snmpValue.toString();
                }
            }
        } catch (SocketTimeoutException ste) {
            if (log.isErrorEnabled()) {
                log.error("走访IP为" + ipAddress + ", OID为" + oid + " 时超时!");
            }
            returnValueString = null;
        } catch (Exception e) {
            throw new AppException("SNMP走访节点时发生错误!", e);
        } finally {
            if (comInterface != null) {
                try {
                    comInterface.closeConnection();
                } catch (SocketException e) {
                    comInterface = null;
                }
            }
        }

        return returnValueString;
    }
} 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值