我正在使用以下代码:
import pysnmp
from pysnmp.entity.rfc3413.oneliner import cmdgen
errorIndication, errorStatus, errorIndex, \
varBindTable = cmdGen.nextCmd (
cmdgen.CommunityData(agent, community_string),
cmdgen.UdpTransportTarget ( (ip, port) ),
(str(oid))
)
其中 ip 是 IPv4地址。如何使用ipv6地址。我读过 pysnmp 也支持 ipv6。我不知道如何使用这里的地址。
谢谢。