⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sendtrap.java

📁 无线网络管理
💻 JAVA
字号:
// NAME//      $RCSfile: SendTrap.java,v $// DESCRIPTION//      [given below in javadoc format]// DELTA//      $Revision: 1.7 $// CREATED//      $Date: 2006/06/19 14:44:06 $// COPYRIGHT//      Westhawk Ltd// TO DO///* * Copyright (C) 2001 - 2006 by Westhawk Ltd * * Permission to use, copy, modify, and distribute this software * for any purpose and without fee is hereby granted, provided * that the above copyright notices appear in all copies and that * both the copyright notice and this permission notice appear in * supporting documentation. * This software is provided "as is" without express or implied * warranty. * author <a href="mailto:snmp@westhawk.co.uk">Tim Panton</a> */ package uk.co.westhawk.examplev1;import java.awt.*; import javax.swing.*;import java.util.*;import java.net.*;import uk.co.westhawk.snmp.stack.*;    import uk.co.westhawk.snmp.pdu.*;    /** * <p> * The SendTrap application sends a trap using the TrapPduv1.  * </p> * * <p> * The host, port, oid and community name can be configured  * in the properties file.  * The name of the properties file can be passed as first argument to * this application. If there is no such argument, it will look for * <code>SendTrap.properties</code>. If this file does not exist, the * application will use default parameters. * </p> * * @see uk.co.westhawk.snmp.stack.TrapPduv1 * * @author <a href="mailto:snmp@westhawk.co.uk">Birgit Arkesteijn</a> * @version $Revision: 1.7 $ $Date: 2006/06/19 14:44:06 $ */public class SendTrap extends JPanel {    private static final String     version_id =        "@(#)$Id: SendTrap.java,v 1.7 2006/06/19 14:44:06 birgit Exp $ Copyright Westhawk Ltd";    public final static String ENTERPRISE = "enterprise";    public final static String SPECIFIC = "specific";    public final static String TIMETICS = "timetics";    public final static String sysObjectID = "1.3.6.1.2.1.1.2";    public final static String sysUpTime   = "1.3.6.1.2.1.1.3";    public byte [] address = {1, 1, 1, 1};    private SnmpContext context;    private TrapPduv1 pdu;    private Util util;/** * Constructor. * * @param propertiesFilename The name of the properties file. Can be * null. */public SendTrap(String propertiesFilename){    AsnObject.setDebug(6);     util = new Util(propertiesFilename, this.getClass().getName());}public void init () {    String host = util.getHost();    String bindAddr = util.getBindAddress();    int port = util.getPort(ListeningContextFace.DEFAULT_TRAP_PORT);    String socketType = util.getSocketType();    String oid = util.getOid(sysUpTime);    String community = util.getCommunity();    try    {        address = InetAddress.getLocalHost().getAddress();    }    catch (UnknownHostException exc) { }    String enterprise = util.getProperty(ENTERPRISE, "1.1");    int specific = util.getIntParameter(SPECIFIC, 0);    long timeticks = util.getIntParameter(TIMETICS, 1000);    try     {        context = new SnmpContext(host, port, bindAddr, socketType);        context.setCommunity(community);        pdu = new TrapPduv1(context);        pdu.setIpAddress(address);        pdu.setEnterprise(enterprise);        pdu.setSpecificTrap(specific);        pdu.setTimeTicks(timeticks);        // if you want to assign additional values, use:        // pdu.addOid(AsnObjectId oid, AsnObject val)        System.out.println(pdu.toString());        pdu.send();    }    catch (java.io.IOException exc)    {        System.out.println("IOException " + exc.getMessage());        System.exit(0);    }    catch(uk.co.westhawk.snmp.stack.PduException exc)    {        System.out.println("PduException " + exc.getMessage());        System.exit(0);    }    try    {        // sleep in milliseconds        // to make sure the trap leave the system        Thread.sleep(3000);    }    catch (java.lang.InterruptedException e) {}    System.out.println(context.getDebugString());    System.exit(0);}public static void main (String [] args){    String propFileName = null;    if (args.length > 0)    {        propFileName = args[0];    }    SendTrap trap = new SendTrap(propFileName);    trap.init();}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -