@Test
public void testSendSimpleTrap() throws Exception {
SnmpTrapper trapper = snmpLib.trapper("test", "127.0.0.1", "public", "127.0.0.1", SnmpLib.SNMP_V1);
SNMPObjectIdentifier oid = snmpLib.oid("1.3.6.1.4.1.3.1.1");
trapper.trap(1, 1, oid);
Thread.sleep(100);
}