snmpset -v1 -c public 10.10.1.1 1.3.6.1.2.1.43.5.1.1.3.1 i 6 这个写出python脚本
时间: 2023-08-28 13:06:19 浏览: 189
net-snmp-5.6.2.1.zip_net-snmp-5.6.2.1
以下是一个可以实现该命令的 Python 脚本:
```python
from pysnmp.hlapi import *
errorIndication, errorStatus, errorIndex, varBinds = next(
setCmd(SnmpEngine(),
CommunityData('public'),
UdpTransportTarget(('10.10.1.1', 161)),
ContextData(),
ObjectType(ObjectIdentity('1.3.6.1.2.1.43.5.1.1.3.1'), Integer(6)))
)
if errorIndication:
print(errorIndication)
else:
print('Success.')
```
注意,使用该脚本需要安装 PySNMP 库,可以使用以下命令进行安装:
```
pip install pysnmp
```
阅读全文