문제

I am trying to make snmp set query in java to a Linux machine, whenever I make the query I get

 No Access to 127.0.0.1 6 (No access)</exception>

I am really curious about why I can not have an access, do I need to be root to make snmp set query ? Or if you know how I can access to localhost to make this query , can you please help me ?

By the way my Variable consists of 1.3.6.1.4.1 and sysDescr

Thank you all

도움이 되었습니까?

해결책

Every SNMP agent has an address book of all its objects, called the MIB or Management Information Base. The MIB provides the name, OID, data type, read/write permissions, and a brief description for each object in an SNMP agent. So, if the OID is of read-only, then you can't update value of that OID and sysDescr OID is read-only.
For example, see here.

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