0

Is it possible to return Object name instead of OID using gosnmp

For eg:

Instead of

    ".1.3.6.1.2.1.25.2.3.1.1.1": {
        "type": "2",
        "val": "1"
    },

How can i get:

    "hrStorageIndex": {
        "type": "2",
        "val": "1"
    },
4

1 回答 1

0

答案很简单——使用MIB。GoSNMP 不支持 MIB,但您可以使用https://github.com/soniah/gosnmp/issues/57中的想法

于 2016-11-27T16:30:25.560 回答