문제

How a MIB is used during the SNMP Agent development in java means How MIB integrate with SNMP Agent in java so that SNMP Agent can communicate with MIB or vice versa

도움이 되었습니까?

해결책

In case of MIB's there may be 2 types of MIB OID's are possible

1) Scalar 2) Tabular

I hope you have enough knowledge about these & you can refer below code for reference

public class Mib implements MOGroup {

String sysDescr = client.getAsString(new OID(".1.3.6.1.2.1.1.1.0"));

}

And for and for more details have a look at "http://shivasoft.in/blog/java/snmp/create-snmp-client-in-java-using-snmp4j/".

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top