gpt4 book ai didi

java - SNMP4J 的 SNMP 消息 : Specify Read Community and Write Community?

转载 作者:行者123 更新时间:2023-12-01 15:00:20 26 4
gpt4 key购买 nike

我创建一条 snmp 消息 (SNMP4J),并且需要设置“读取社区公共(public)”和“写入社区私有(private)”。

从示例中设置社区:

// Specify receiver
Address targetaddress = new UdpAddress("10.10.10.10/162");
CommunityTarget target = new CommunityTarget();
target.setCommunity(new OctetString("public"));
target.setVersion(SnmpConstants.version2c);
target.setAddress(targetaddress);

但这并没有指定它是写入社区还是读取社区。有没有办法单独定义它们?

最佳答案

不,社区字符串就像密码一样,只读社区字符串和读/写社区字符串为您提供了对设备的不同访问权限。如果您只想从设备获取值,则使用只读团体,如果您不仅想获取值还想更改值,则必须使用读/写团体。 SNMP4j 不知道您想要哪种访问方式,因此它把选择权留给了您,您不能同时设置它们。

关于java - SNMP4J 的 SNMP 消息 : Specify Read Community and Write Community?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13745552/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com