public void SNMP_SET(String ipAddress, int port, String strOID, String value, String community) {
ipAddress = ipAddress + "/" + port;
Address tHost = GenericAddress.parse(ipAddress);
Snmp snmp;
try {
TransportMapping transport = new DefaultUdpTransportMapping();
snmp = new Snmp(transport);
transport.listen();
CommunityTarget target = new CommunityTarget();
target.setCommunity(new OctetString(community));
target.setAddress(tHost);
target.setRetries(2);
target.setTimeout(5000);