有问题。我需要在lua中使用snmpset,所以我使用了luasnmp模块。
当我尝试时,我收到一条错误消息,上面写着:“snmp: bad type (2) prim=0 in index 1”
但是通过 bash 使用 net-snmp snmpset 就可以了。
有没有人对此有任何经验(或建议/我们应该在哪里看)?谢谢
这是脚本:
local snmp = require "snmp"
hub1, err = snmp.open{
peer = "1.1.1.1",
community = "private",
}
assert(hub1, err)
vbIn = {
{oid = ".1.3.6.1.4.1.9.9.16.1.1.1.16.333", type = NUMBER, value = 6 },
}
vbOut, err = assert(hub1:set(vbIn))