-
-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
asking for help, what's the right way to query multiple remote host without the trouble I meet #315
Comments
This is weird. Can you share the code snippet that exhibits this behavior? Generally, this example might do the job upon some adjustment. |
`def cbFun(snmpEngine, sendRequestHandle, errorIndication, snmpEngine = SnmpEngine() hosts = ['node-a','node-b','node-c','node-d'] for host in hosts: snmpEngine.transportDispatcher.runDispatcher()` ================================================================= when modify the auth_pass of node-d, I can also get the sysUptime then I remove other items in hosts,only node-d left.as: root@125 =================================================================== def cbFun(snmpEngine, sendRequestHandle, errorIndication, targets = (
) snmpEngine = SnmpEngine() Submit initial GETNEXT requests and wait for responsesfor authData, transportTarget, varBinds in targets: snmpEngine.transportDispatcher.runDispatcher() ===================RESULT========================================== |
Can You help me for this problem, or what's the correct way to reach the thing that I want to do. |
4.I have tryed the multiple snmp engine demo,but it's not ok.
The text was updated successfully, but these errors were encountered: