001: /*
002: * SNMP Package
003: *
004: * Copyright (C) 2004, Jonathan Sevy <jsevy@mcs.drexel.edu>
005: *
006: * This is free software. Redistribution and use in source and binary forms, with
007: * or without modification, are permitted provided that the following conditions
008: * are met:
009: *
010: * 1. Redistributions of source code must retain the above copyright notice, this
011: * list of conditions and the following disclaimer.
012: * 2. Redistributions in binary form must reproduce the above copyright notice,
013: * this list of conditions and the following disclaimer in the documentation
014: * and/or other materials provided with the distribution.
015: * 3. The name of the author may not be used to endorse or promote products
016: * derived from this software without specific prior written permission.
017: *
018: * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
019: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
020: * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
021: * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
022: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
023: * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
024: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
025: * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
026: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
027: *
028: */
029:
030: package snmp;
031:
032: import java.io.*;
033: import java.net.*;
034:
035: /**
036: * The class SNMPInformRequestSenderInterface implements an interface for sending SNMPv2 inform request
037: * messages to a remote SNMP manager. The approach is that from version 2c of SNMP, using no encryption of data.
038: * Communication occurs via UDP, using port 162, the standard SNMP trap and inform request port, as the destination port.
039: */
040:
041: public class SNMPInformRequestSenderInterface {
042: public static final int SNMP_TRAP_PORT = 162;
043:
044: private DatagramSocket dSocket;
045:
046: /**
047: * Construct a new inform request sender object to send inform requests to remote SNMP hosts.
048: */
049:
050: public SNMPInformRequestSenderInterface() throws SocketException {
051: dSocket = new DatagramSocket();
052: }
053:
054: /**
055: * Construct a new inform request sender object to send inform requests to remote SNMP hosts, binding to
056: * the specified local port.
057: */
058:
059: public SNMPInformRequestSenderInterface(int localPort)
060: throws SocketException {
061: dSocket = new DatagramSocket(localPort);
062: }
063:
064: /**
065: * Send the supplied SNMPv2 inform request pdu to the specified host, using the supplied version number
066: * and community name.
067: */
068:
069: public void sendInformRequest(int version, InetAddress hostAddress,
070: String community, SNMPv2InformRequestPDU pdu)
071: throws IOException {
072: SNMPMessage message = new SNMPMessage(version, community, pdu);
073:
074: byte[] messageEncoding = message.getBEREncoding();
075:
076: /*
077: System.out.println("Request Message bytes:");
078:
079: for (int i = 0; i < messageEncoding.length; ++i)
080: System.out.print(hexByte(messageEncoding[i]) + " ");
081: */
082:
083: DatagramPacket outPacket = new DatagramPacket(messageEncoding,
084: messageEncoding.length, hostAddress, SNMP_TRAP_PORT);
085:
086: /*
087: System.out.println("Message bytes length (out): " + outPacket.getLength());
088:
089: System.out.println("Message bytes (out):");
090: for (int i = 0; i < messageEncoding.length; ++i)
091: {
092: System.out.print(hexByte(messageEncoding[i]) + " ");
093: }
094: System.out.println("\n");
095: */
096:
097: dSocket.send(outPacket);
098:
099: }
100:
101: /**
102: * Send the supplied inform request pdu to the specified host, using the supplied community name and
103: * using 1 for the version field in the SNMP message.
104: */
105:
106: public void sendInformRequest(InetAddress hostAddress,
107: String community, SNMPv2InformRequestPDU pdu)
108: throws IOException {
109: int version = 1;
110:
111: sendInformRequest(version, hostAddress, community, pdu);
112: }
113:
114: private String hexByte(byte b) {
115: int pos = b;
116: if (pos < 0)
117: pos += 256;
118: String returnString = new String();
119: returnString += Integer.toHexString(pos / 16);
120: returnString += Integer.toHexString(pos % 16);
121: return returnString;
122: }
123:
124: private String getHex(byte theByte) {
125: int b = theByte;
126:
127: if (b < 0)
128: b += 256;
129:
130: String returnString = new String(Integer.toHexString(b));
131:
132: // add leading 0 if needed
133: if (returnString.length() % 2 == 1)
134: returnString = "0" + returnString;
135:
136: return returnString;
137: }
138:
139: }
|