Hey,
i am currently trying to get an value of an OID from the Intel Modular Server MIB.
1.3.6.1.4.1.343.2.19.1.2.10.207.1.1.23.1
Its an OID from the table
.1.3.6.1.4.1.343.2.19.1.2.10.207.1
Its an BITS datatype, but no matter what i do, i always get an timeout for this value.
Messenger.Get failes, an Walk on this table fails completely, all because of an timeout exception (no matter how high).
All other OIDs in this table works fine.. :(
I am currently skipping this OID , but sadly __its an important health value__ , so i am asking for your help.
I am using the latest .NET 3.5 supported Version..
heres an image from my used snmp browser
http://s7.directupload.net/images/131121/fq4c44o9.png
Comments: This agent is not standard compliant, and it uses 0x03 to encode BITS. Thus, the end of the agent response message "0x03 0x01 0x30" cannot be parsed by #SNMP library. The proper encoding should be "0x04 0x01 0x30". If you cannot modify the agent, you will have to modify #SNMP accordingly, such as modifying DataFactory.cs. I don't have time to show you how but it should be easy to do so on your own. For #SNMP, the goal is to support only standard compliant scenarios. I will close this issue as by design.
i am currently trying to get an value of an OID from the Intel Modular Server MIB.
1.3.6.1.4.1.343.2.19.1.2.10.207.1.1.23.1
Its an OID from the table
.1.3.6.1.4.1.343.2.19.1.2.10.207.1
Its an BITS datatype, but no matter what i do, i always get an timeout for this value.
Messenger.Get failes, an Walk on this table fails completely, all because of an timeout exception (no matter how high).
All other OIDs in this table works fine.. :(
I am currently skipping this OID , but sadly __its an important health value__ , so i am asking for your help.
I am using the latest .NET 3.5 supported Version..
heres an image from my used snmp browser
http://s7.directupload.net/images/131121/fq4c44o9.png
Comments: This agent is not standard compliant, and it uses 0x03 to encode BITS. Thus, the end of the agent response message "0x03 0x01 0x30" cannot be parsed by #SNMP library. The proper encoding should be "0x04 0x01 0x30". If you cannot modify the agent, you will have to modify #SNMP accordingly, such as modifying DataFactory.cs. I don't have time to show you how but it should be easy to do so on your own. For #SNMP, the goal is to support only standard compliant scenarios. I will close this issue as by design.