summaryrefslogtreecommitdiff
path: root/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/fetch-variables-over-ipv6.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/fetch-variables-over-ipv6.py')
-rw-r--r--examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/fetch-variables-over-ipv6.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/fetch-variables-over-ipv6.py b/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/fetch-variables-over-ipv6.py
index bd8d9ca2..dc9db8a5 100644
--- a/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/fetch-variables-over-ipv6.py
+++ b/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/fetch-variables-over-ipv6.py
@@ -15,15 +15,17 @@ Functionally similar to:
"""#
from pysnmp.hlapi.v1arch import *
-errorIndication, errorStatus, errorIndex, varBinds = next(
- getCmd(SnmpDispatcher(),
- CommunityData('public'),
- Udp6TransportTarget(('::1', 161)),
- ('1.3.6.1.2.1.1.1.0', None),
- ('1.3.6.1.2.1.1.2.0', None),
- ('1.3.6.1.2.1.1.3.0', None))
+iterator = getCmd(
+ SnmpDispatcher(),
+ CommunityData('public'),
+ Udp6TransportTarget(('::1', 161)),
+ ('1.3.6.1.2.1.1.1.0', None),
+ ('1.3.6.1.2.1.1.2.0', None),
+ ('1.3.6.1.2.1.1.3.0', None)
)
+errorIndication, errorStatus, errorIndex, varBinds = next(iterator)
+
if errorIndication:
print(errorIndication)