summaryrefslogtreecommitdiff
path: root/examples/hlapi/asyncore/agent/ntforg/multiple-informs-at-once.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hlapi/asyncore/agent/ntforg/multiple-informs-at-once.py')
-rw-r--r--examples/hlapi/asyncore/agent/ntforg/multiple-informs-at-once.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/hlapi/asyncore/agent/ntforg/multiple-informs-at-once.py b/examples/hlapi/asyncore/agent/ntforg/multiple-informs-at-once.py
index c0ae96b0..05cad09b 100644
--- a/examples/hlapi/asyncore/agent/ntforg/multiple-informs-at-once.py
+++ b/examples/hlapi/asyncore/agent/ntforg/multiple-informs-at-once.py
@@ -20,11 +20,11 @@ from pysnmp.hlapi.asyncore import *
targets = (
# 1-st target (SNMPv2c over IPv4/UDP)
( CommunityData('public'),
- UdpTransportTarget(('localhost', 162)),
+ UdpTransportTarget(('demo.snmplabs.com', 162)),
ContextData() ),
# 2-nd target (SNMPv3 over IPv4/UDP)
( UsmUserData('usr-md5-des', 'authkey1', 'privkey1'),
- UdpTransportTarget(('localhost', 162)),
+ UdpTransportTarget(('demo.snmplabs.com', 162)),
ContextData() ),
)