summaryrefslogtreecommitdiff
path: root/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2019-02-12 09:16:17 +0100
committerGitHub <noreply@github.com>2019-02-12 09:16:17 +0100
commitb9a7b9c955df98b1e5eec250f418c3df3b7d0199 (patch)
tree3364eb15031352859586e8eb6aa49759a23f9c72 /examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py
parentc5f7842c430ad3431bee793362ef11cff9f1e0de (diff)
downloadpysnmp-git-b9a7b9c955df98b1e5eec250f418c3df3b7d0199.tar.gz
Reformat example scripts for easier reading (#241)
Diffstat (limited to 'examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py')
-rw-r--r--examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py31
1 files changed, 20 insertions, 11 deletions
diff --git a/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py b/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py
index b5498003..39edb0cb 100644
--- a/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py
+++ b/examples/hlapi/v1arch/asyncore/sync/manager/cmdgen/set-multiple-scalar-values.py
@@ -21,19 +21,28 @@ Functionally similar to:
"""#
from pysnmp.hlapi.v1arch import *
-errorIndication, errorStatus, errorIndex, varBinds = next(
- setCmd(SnmpDispatcher(),
- CommunityData('public', mpModel=0),
- UdpTransportTarget(('demo.snmplabs.com', 161)),
- ObjectType(ObjectIdentity('SNMPv2-MIB', 'sysORID', 1),
- ObjectIdentifier('1.3.6.1.4.1.20408.1.1')),
- ObjectType(ObjectIdentity('1.3.6.1.2.1.1.9.1.2.1'),
- '1.3.6.1.4.1.20408.1.1'),
- ObjectType(ObjectIdentity('1.3.6.1.2.1.1.9.1.3.1'),
- OctetString('new system name')),
- lookupMib=True)
+iterator = setCmd(
+ SnmpDispatcher(),
+ CommunityData('public', mpModel=0),
+ UdpTransportTarget(('demo.snmplabs.com', 161)),
+ ObjectType(
+ ObjectIdentity('SNMPv2-MIB', 'sysORID', 1),
+ ObjectIdentifier('1.3.6.1.4.1.20408.1.1')
+ ),
+ ObjectType(
+ ObjectIdentity('1.3.6.1.2.1.1.9.1.2.1'),
+ '1.3.6.1.4.1.20408.1.1'
+ ),
+ ObjectType(
+ ObjectIdentity('1.3.6.1.2.1.1.9.1.3.1'),
+ OctetString('new system name')
+ ),
+ lookupMib=True
)
+
+errorIndication, errorStatus, errorIndex, varBinds = next(iterator)
+
if errorIndication:
print(errorIndication)