You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm try to get "1.3.6.1.4.1.14988.1.1.11.1.1.6" OID by walking. It's neighbors of network device. Hardware is RouterBoard (Mikrotik).
If I use linux snmpwalk with: "snmpwalk -v2c -c public 192.168.10.20 1.3.6.1.4.1.14988.1.1.11.1.1.6" - i'm got neighbors with STRING-type results, but one returned as Hex-STRING (TP-Link device).
But with SnmpSharpNet (by your's and original) results returned NULL.
Code is simple:
var client = new SimpleSnmp("192.168.10.20", "public");
client.Retry = 5;
client.Timeout = 1000;
var snmpResult = client.Walk(SnmpVersion.Ver2, "1.3.6.1.4.1.14988.1.1.11.1.1.6");
The text was updated successfully, but these errors were encountered:
Hello!
I'm try to get "1.3.6.1.4.1.14988.1.1.11.1.1.6" OID by walking. It's neighbors of network device. Hardware is RouterBoard (Mikrotik).
If I use linux snmpwalk with: "snmpwalk -v2c -c public 192.168.10.20 1.3.6.1.4.1.14988.1.1.11.1.1.6" - i'm got neighbors with STRING-type results, but one returned as Hex-STRING (TP-Link device).
But with SnmpSharpNet (by your's and original) results returned NULL.
Code is simple:
The text was updated successfully, but these errors were encountered: