Java Code Examples for org.snmp4j.UserTarget
The following examples show how to use
org.snmp4j.UserTarget.
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: mysql_perf_analyzer Author: yahoo File: SNMPClient.java License: Apache License 2.0 | 6 votes |
private Target getTargetV3() { //logger.info("Use SNMP v3, "+this.privacyprotocol +"="+this.password+", "+this.privacyprotocol+"="+this.privacypassphrase); OID authOID = AuthMD5.ID; if("SHA".equals(this.authprotocol)) authOID = AuthSHA.ID; OID privOID = PrivDES.ID; if(this.privacyprotocol == null || this.privacyprotocol.isEmpty()) privOID = null; UsmUser user = new UsmUser(new OctetString(this.username), authOID, new OctetString(this.password), //auth privOID, this.privacypassphrase!=null?new OctetString(this.privacypassphrase):null); //enc snmp.getUSM().addUser(new OctetString(this.username), user); Address targetAddress = GenericAddress.parse(address); UserTarget target = new UserTarget(); target.setAddress(targetAddress); target.setRetries(2); target.setTimeout(1500); target.setVersion(this.getVersionInt()); if(privOID != null) target.setSecurityLevel(SecurityLevel.AUTH_PRIV); else target.setSecurityLevel(SecurityLevel.AUTH_NOPRIV); target.setSecurityName(new OctetString(this.username)); return target; }
Example #2
Source Project: localization_nifi Author: wangrenlei File: SNMPUtilsTest.java License: Apache License 2.0 | 5 votes |
/** * Method to create a user target * @param address address * @param securityLevel security level * @param securityName security name * @return user target */ private static UserTarget createUserTarget(String address, int securityLevel, String securityName) { UserTarget target = new UserTarget(); target.setVersion(SnmpConstants.version3); target.setSecurityLevel(securityLevel); target.setSecurityName(new OctetString(securityName)); target.setAddress(new UdpAddress(address)); target.setRetries(0); target.setTimeout(500); return target; }
Example #3
Source Project: nifi Author: apache File: SNMPUtilsTest.java License: Apache License 2.0 | 5 votes |
/** * Method to create a user target * @param address address * @param securityLevel security level * @param securityName security name * @return user target */ private static UserTarget createUserTarget(String address, int securityLevel, String securityName) { UserTarget target = new UserTarget(); target.setVersion(SnmpConstants.version3); target.setSecurityLevel(securityLevel); target.setSecurityName(new OctetString(securityName)); target.setAddress(new UdpAddress(address)); target.setRetries(0); target.setTimeout(500); return target; }
Example #4
Source Project: SuitAgent Author: DevopsJK File: SNMPV3Session.java License: Apache License 2.0 | 4 votes |
/** * 创建SNMPV3会话 * @param userInfo * @throws IOException * @throws AgentArgumentException */ public SNMPV3Session(SNMPV3UserInfo userInfo) throws IOException, AgentArgumentException { if(StringUtils.isEmpty(userInfo.getAddress())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议的访问地址不能为空"); } if(StringUtils.isEmpty(userInfo.getUsername())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议的访问用户名不能为空"); } if(!StringUtils.isEmpty(userInfo.getAythType()) && StringUtils.isEmpty(userInfo.getAuthPswd())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议指定了认证算法 aythType,就必须要指定认证密码"); } if(!StringUtils.isEmpty(userInfo.getPrivType()) && StringUtils.isEmpty(userInfo.getPrivPswd())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议指定了加密算法 privType,就必须要指定加密密码"); } this.userInfo = userInfo; snmp = new Snmp(new DefaultUdpTransportMapping()); USM usm = new USM(SecurityProtocols.getInstance(), new OctetString(MPv3.createLocalEngineID( new OctetString(HostUtil.getHostIp() + UUID.randomUUID().toString()) )), 0); SecurityModels.getInstance().addSecurityModel(usm); snmp.listen(); UsmUser user = new UsmUser( new OctetString(userInfo.getUsername()), getAuthProtocol(userInfo.getAythType()), new OctetString(userInfo.getAuthPswd()), getPrivProtocol(userInfo.getPrivType()), new OctetString(userInfo.getPrivPswd())); snmp.getUSM().addUser(new OctetString(userInfo.getUsername()), user); target = new UserTarget(); target.setSecurityName(new OctetString(userInfo.getUsername())); target.setVersion(SnmpConstants.version3); target.setSecurityLevel(SecurityLevel.AUTH_PRIV); target.setAddress(GenericAddress.parse(userInfo.getProtocol() + ":" + userInfo.getAddress() + "/" + userInfo.getPort())); target.setTimeout(TIMEOUT); target.setRetries(1); }
Example #5
Source Project: OpenFalcon-SuitAgent Author: cqyijifu File: SNMPV3Session.java License: Apache License 2.0 | 4 votes |
/** * 创建SNMPV3会话 * @param userInfo * @throws IOException * @throws AgentArgumentException */ public SNMPV3Session(SNMPV3UserInfo userInfo) throws IOException, AgentArgumentException { if(StringUtils.isEmpty(userInfo.getAddress())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议的访问地址不能为空"); } if(StringUtils.isEmpty(userInfo.getUsername())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议的访问用户名不能为空"); } if(!StringUtils.isEmpty(userInfo.getAythType()) && StringUtils.isEmpty(userInfo.getAuthPswd())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议指定了认证算法 aythType,就必须要指定认证密码"); } if(!StringUtils.isEmpty(userInfo.getPrivType()) && StringUtils.isEmpty(userInfo.getPrivPswd())){ throw new AgentArgumentException("SNMPV3Session创建失败:snmp v3协议指定了加密算法 privType,就必须要指定加密密码"); } this.userInfo = userInfo; snmp = new Snmp(new DefaultUdpTransportMapping()); USM usm = new USM(SecurityProtocols.getInstance(), new OctetString(MPv3.createLocalEngineID()), 0); SecurityModels.getInstance().addSecurityModel(usm); snmp.listen(); UsmUser user = new UsmUser( new OctetString(userInfo.getUsername()), getAuthProtocol(userInfo.getAythType()), new OctetString(userInfo.getAuthPswd()), getPrivProtocol(userInfo.getPrivType()), new OctetString(userInfo.getPrivPswd())); snmp.getUSM().addUser(new OctetString(userInfo.getUsername()), user); target = new UserTarget(); target.setSecurityName(new OctetString(userInfo.getUsername())); target.setVersion(SnmpConstants.version3); target.setSecurityLevel(SecurityLevel.AUTH_PRIV); target.setAddress(GenericAddress.parse(userInfo.getProtocol() + ":" + userInfo.getAddress() + "/" + userInfo.getPort())); target.setTimeout(8000); target.setRetries(1); }
Example #6
Source Project: ingestion Author: Stratio File: SNMPUtils.java License: Apache License 2.0 | 4 votes |
public static void sendTrapV3(String port) { try { Address targetAddress = GenericAddress.parse("udp:127.0.0.1/" + port); TransportMapping<?> transport = new DefaultUdpTransportMapping(); Snmp snmp = new Snmp(transport); USM usm = new USM(SecurityProtocols.getInstance(), new OctetString( MPv3.createLocalEngineID()), 0); SecurityModels.getInstance().addSecurityModel(usm); transport.listen(); snmp.getUSM().addUser(new OctetString("MD5DES"), new UsmUser(new OctetString("MD5DES"), null, null, null, null)); // Create Target UserTarget target = new UserTarget(); target.setAddress(targetAddress); target.setRetries(1); target.setTimeout(11500); target.setVersion(SnmpConstants.version3); target.setSecurityLevel(SecurityLevel.NOAUTH_NOPRIV); target.setSecurityName(new OctetString("MD5DES")); // Create PDU for V3 ScopedPDU pdu = new ScopedPDU(); pdu.setType(ScopedPDU.NOTIFICATION); pdu.add(new VariableBinding(SnmpConstants.sysUpTime)); pdu.add(new VariableBinding(SnmpConstants.snmpTrapOID, SnmpConstants.linkDown)); pdu.add(new VariableBinding(new OID("1.2.3.4.5"), new OctetString("Major"))); // Send the PDU snmp.send(pdu, target); transport.close(); snmp.close(); } catch (Exception e) { System.err.println("Error in Sending Trap to (IP:Port)=> " + "127.0.0.1" + ":" + port); System.err.println("Exception Message = " + e.getMessage()); } }
Example #7
Source Project: ingestion Author: Stratio File: SNMPUtils.java License: Apache License 2.0 | 3 votes |
public static void sendTrapV3Auth(String port) throws IOException { try { Address targetAddress = GenericAddress.parse("udp:127.0.0.1/" + port); TransportMapping<?> transport = new DefaultUdpTransportMapping(); Snmp snmp = new Snmp(transport); USM usm = new USM(SecurityProtocols.getInstance(), new OctetString( MPv3.createLocalEngineID()), 0); SecurityModels.getInstance().addSecurityModel(usm); transport.listen(); snmp.getUSM().addUser( new OctetString("user"), new UsmUser(new OctetString("user"), AuthMD5.ID, new OctetString("12345678"), null, null)); // Create Target UserTarget target = new UserTarget(); target.setAddress(targetAddress); target.setRetries(1); target.setTimeout(11500); target.setVersion(SnmpConstants.version3); target.setSecurityLevel(SecurityLevel.AUTH_NOPRIV); target.setSecurityName(new OctetString("user")); // Create PDU for V3 ScopedPDU pdu = new ScopedPDU(); pdu.setType(ScopedPDU.NOTIFICATION); pdu.add(new VariableBinding(SnmpConstants.sysUpTime)); pdu.add(new VariableBinding(SnmpConstants.snmpTrapOID, SnmpConstants.linkDown)); pdu.add(new VariableBinding(new OID("1.2.3.4.5"), new OctetString("Major"))); // Send the PDU snmp.send(pdu, target); transport.close(); snmp.close(); } catch (Exception e) { System.err.println("Error in Sending Trap to (IP:Port)=> " + "127.0.0.1" + ":" + port); System.err.println("Exception Message = " + e.getMessage()); } }
Example #8
Source Project: ingestion Author: Stratio File: SNMPUtils.java License: Apache License 2.0 | 3 votes |
public static void sendTrapV3AuthPriv(String port) throws IOException { try { Address targetAddress = GenericAddress.parse("udp:127.0.0.1/" + port); TransportMapping<?> transport = new DefaultUdpTransportMapping(); Snmp snmp = new Snmp(transport); USM usm = new USM(SecurityProtocols.getInstance(), new OctetString( MPv3.createLocalEngineID()), 0); SecurityModels.getInstance().addSecurityModel(usm); transport.listen(); snmp.getUSM().addUser( new OctetString("user"), new UsmUser(new OctetString("user"), AuthMD5.ID, new OctetString("12345678"), PrivDES.ID, new OctetString("passphrase"))); // Create Target UserTarget target = new UserTarget(); target.setAddress(targetAddress); target.setRetries(1); target.setTimeout(11500); target.setVersion(SnmpConstants.version3); target.setSecurityLevel(SecurityLevel.AUTH_NOPRIV); target.setSecurityName(new OctetString("user")); // Create PDU for V3 ScopedPDU pdu = new ScopedPDU(); pdu.setType(ScopedPDU.NOTIFICATION); pdu.add(new VariableBinding(SnmpConstants.sysUpTime)); pdu.add(new VariableBinding(SnmpConstants.snmpTrapOID, SnmpConstants.linkDown)); pdu.add(new VariableBinding(new OID("1.2.3.4.5"), new OctetString("Major"))); // Send the PDU snmp.send(pdu, target); transport.close(); snmp.close(); } catch (Exception e) { System.err.println("Error in Sending Trap to (IP:Port)=> " + "127.0.0.1" + ":" + port); System.err.println("Exception Message = " + e.getMessage()); } }
Example #9
Source Project: nifi Author: apache File: SNMPUtilsTest.java License: Apache License 2.0 | 3 votes |
/** * Method to prepare user target and to add id in the User Based Security Model of the given SNMP instance * @param snmp SNMP instance * @param address address * @param securityLevel security level * @param securityName security name * @param auth authentication protocol * @param priv private protocol * @param authPwd authentication password * @param privPwd private password * @return user target */ protected static UserTarget prepareUser(Snmp snmp, String address, int securityLevel, String securityName, OID auth, OID priv, String authPwd, String privPwd) { snmp.getUSM().removeAllUsers(); OctetString aPwd = authPwd != null ? new OctetString(authPwd) : null; OctetString pPwd = privPwd != null ? new OctetString(privPwd) : null; snmp.getUSM().addUser(new OctetString(securityName), new UsmUser(new OctetString(securityName), auth, aPwd, priv, pPwd)); return createUserTarget(address, securityLevel, securityName); }
Example #10
Source Project: localization_nifi Author: wangrenlei File: SNMPUtilsTest.java License: Apache License 2.0 | 1 votes |
/** * Method to prepare user target and to add id in the User Based Security Model of the given SNMP instance * @param snmp SNMP instance * @param address address * @param securityLevel security level * @param securityName security name * @param auth authentication protocol * @param priv private protocol * @param authPwd authentication password * @param privPwd private password * @return user target */ protected static UserTarget prepareUser(Snmp snmp, String address, int securityLevel, String securityName, OID auth, OID priv, String authPwd, String privPwd) { snmp.getUSM().removeAllUsers(); OctetString aPwd = authPwd != null ? new OctetString(authPwd) : null; OctetString pPwd = privPwd != null ? new OctetString(privPwd) : null; snmp.getUSM().addUser(new OctetString(securityName), new UsmUser(new OctetString(securityName), auth, aPwd, priv, pPwd)); return createUserTarget(address, securityLevel, securityName); }