其中OCTET STRING为0或多个8 bit字节,每个字节值在0~255之间;DisplayString为0或多个8bit字节,但是每个字节必须是ASCII码,在MIB-II中,所有该类型的变量不能超过255个字符(0个字符是可以的)。 除了字符范围不一样之外,DisplayString和OCTET STRING这两种类型并没有什么差别,在net-snmp中,它们都是用的ASN_OCTET_...
public SnmpOctetString()Constructs an empty SnmpOctetString object, whose toString() method should return "" just after construction. SnmpOctetStringpublic SnmpOctetString(String data)Constructs an SnmpOctetString object from passed data, whose toString() method should return a String equals to passed...
[SNMP 可用於需求一節中指定的作業系統。 它在後續版本中可能會變更或無法使用。 請改用 Windows 遠端系統管理,這是 WS-Man 的 Microsoft 實作。 AsnOctetString結構包含八位數量,通常是位元組。 此結構由多個 SNMP 函式使用。 WinSNMP API函式不會使用此結構。
Fayson的github:https://github.com/fayson/cdhproject 提示:代码块部分可以左右滑动查看噢 1.文档编写...
不是有自动 解析命名命名空间的吗 点 OctertString右键 解析命名空间 自动就给你添加了吧
An example for a complete SNMPv2c SET request to set sysName:SNMP4J -c private -v 2c -p SET udp:localhost/161 \"1.3.6.1.2.1.1.5.0={s}SNMP4J\"如果该设备需要的就是hex的数据,就可以直接按照上面进行原样发送,如果是需要转变后的字符串,你就需要自己先转换,然后再用上面的...
下列数据类型中,SNMPv2支持而SNMPv1不支持的是_。A.OCTET STRINGB.OBJECT descriptorC.Unsigned32D.Gauge32
SNMP对象的定义是用___.对应数据类型仅用到ASN.1的一个子集,包括___(INTEGER、 OCTET STRING 、NULL 、OBJECT IDENTIFIER、SEQUENCE OF),前4种是简单类型,最后一种是构造类型。P46 相关知识点: 试题来源: 解析 ASN.1 5种通用类型 反馈 收藏
1. libsnmp should load MIBs (this is default for some set of mibs, but not always, depends on distro etc). 2. an OID (in MIB file) which is used for INDEX should have "SYNTAX OCTET STRING" Such OIDs more often can be met in trees where MAC addresses being used. ...
funcprintValue(pdugosnmp.SnmpPDU)error{fmt.Printf("%s = ",pdu.Name)switchpdu.Type{casegosnmp.OctetString:b:=pdu.Value.([]byte)fmt.Printf("STRING: %v\n",net.HardwareAddr(b))casegosnmp.IPAddress:b:=pdu.Valuefmt.Printf("IpAddress: %v\n",b)default:fmt.Printf("TYPE %d: %d\n",pdu...