我正在尝试使用 SNMP 和 SharpNet 查询 Windows 机器的 CPU 温度。SharpNet 网站上的示例处理使用以下内容:
OctetString community = new OctetString("public");
AgentParameters param = new AgentParameters(community);
IpAddress agent = new SnmpSharpNet.IpAddress(ipaddress);
UdpTarget target = new UdpTarget((IPAddress)agent, 161, 2000, 1);
Pdu pdu = new Pdu(PduType.Get);
pdu.VbList.Add("1.3.6.1.2.1.1.1.0"); //sysDescr
pdu.VbList.Add("1.3.6.1.2.1.1.2.0"); //sysObjectID
pdu.VbList.Add("1.3.6.1.2.1.1.3.0"); //sysUpTime
pdu.VbList.Add("1.3.6.1.2.1.1.4.0"); //sysContact
pdu.VbList.Add("1.3.6.1.2.1.1.5.0"); //sysName
SnmpV1Packet result = (SnmpV1Packet)target.Request(pdu, param);
目标机器响应上面的示例代码。根据我的 OID 查看器,我要查询的属性应该是1.3.6.1.2.1.25.3.3.1.2
,但是当我将其添加到 pdu 列表时,我收到此错误:result.Pdu.MaxRepetitions' threw an exception of type 'SnmpSharpNet.SnmpInvalidPduTypeException
为什么此 OID 返回错误?