我使用python-netsnmpagent模块。我已经使用了原始的netsnmp库示例,该示例位于以下链接
https://github.com/circonus-labs/net-snmp/blob/master/mibs/NET-SNMP-EXAMPLES-MIB.txt
此示例可以更新表格,它通过以下命令
起到魅力作用snmpwalk -v 2c -c public -mPATH/TO/MY-MIB/MY-NET-SNMP-EXAMPLES-MIB.txt localhost:5555 netSnmpIETFWGTable
NET-SNMP-EXAMPLES-MIB::nsIETFWGChair1."snmpv3" = STRING: "string1"
NET-SNMP-EXAMPLES-MIB::nsIETFWGChair2."snmpv3" = STRING: "string2"
但是当我使用python-netsnmpagent的示例时,它位于下面的链接
https://github.com/pief/python-netsnmpagent/blob/master/examples/run_simple_agent.sh
更新表格的条目显示在下面错误:
snmpset -v 2c -c simple -mPATH/TO/MY-MIB/MY-NET-SNMP-EXAMPLES-MIB.txt localhost:5555 MY-NET-SNMP-EXAMPLES-MIB::nsIETFWGChair1.\"snmpv3\" s "STRING"
Error in packet.
Reason: notWritable (That object does not support modification)
Failed object: MY-NET-SNMP-EXAMPLES-MIB::nsIETFWGChair1."snmpv3"
有没有人可以帮助我?
答案 0 :(得分:0)
您没有对表的写访问权限,因为您在创建表时未启用此访问权限。使用此修补程序启用此访问权限。
diff --git a/examples/simple_agent.py b/examples/simple_agent.py
index ba809ff..abbfa53 100755
--- a/examples/simple_agent.py
+++ b/examples/simple_agent.py
@@ -143,12 +143,13 @@ firstTable = agent.Table(
agent.DisplayString()
],
columns = [
- (2, agent.DisplayString("Unknown place")),
- (3, agent.Integer32(0))
+ (2, agent.DisplayString("Unknown place"), 1),
+ (3, agent.Integer32(0), 1)
],
counterobj = agent.Unsigned32(
oidstr = "SIMPLE-MIB::firstTableNumber"
- )
+ ),
+ extendable = True
)
# Add the first table row
好运