I followed this page to create a TrapListener, and my code looks like this:
public class SnmpTrapd implements TrapListener {
public static void main(String args[]) {
// instantiate SNMP Trap Receiver bean
SnmpTrapReceiver trapreceiver = new SnmpTrapReceiver();
// set the port in which the trap is received
trapreceiver.setPort(162);
// register the listener for trap events
trapreceiver.setAutoInformResponse(true);
trapreceiver.setLocalAddresses(new String[]{new String("192.168.1.2")});
trapreceiver.addTrapListener(new SnmpTrapd());
trapreceiver.setTrapAuthEnable(false);
System.out.println("Waiting to receive traps .......");
}
@Override
public void receivedTrap(TrapEvent trap) {
System.out.println("Got a trap from: " + trap.getRemoteHost());
// print PDU details
System.out.println(((SnmpTrapReceiver) trap.getSource()).getMibOperations().toString(trap.getTrapPDU()));
if (trap.getTrapPDU().getCommand() == SnmpAPI.TRP_REQ_MSG) {
com.adventnet.snmp.mibs.MibTrap trapDefn = trap.getTrapDefinition();
if (trapDefn != null) // print name and description
System.out.println("Trap Name: " + trapDefn.getName() + "\nDescr: " + trapDefn.getDescription());
}
}
}
However, it didn't receive anything when I create a snmp v3 trap with my Fortigate 60D. I'm sure the trap is sent from the fortigate since I've monitored the interface on my computer with wireshark.
What's more,I can receive the v3 trap when I use another api (rather than adventnet), so I'm pretty sure the setting of fortigate is correct.
Is there any problem with my code?
Update
I also tried what this page said, but still in vain.
(Though I'm wondering the page is talk about v2c trap instead of v3...)
You set
setTrapAuthEnable
to false which means you would like to drop some v3 TRAP messages. Is that what you expected? Read the documentation and also check the packets sent by 60D, then you will see if that's the cause.