Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

snmpd exception simpleOpen rejected (invalid host/network address)

Status
Not open for further replies.

freeves

Technical User
Feb 18, 2002
5
GB
In the /var/adm/SPlogs/Spdaemon.log file, these error messages are appearing:

1. EXCEPTIONS: simpleOpen rejected (invalid host/network address)

2. ftpd: failed dlopen: /usr/lib/libpag.a(shr.o): A file or directory in the path name does not exist.

Can anyone tell me what they mean & how I go about "fixing" them?
 
In answer to your questions

1) SMUX stand for "snmpd multiplexed" which is a way to have
multiple agents. snmpd is the primary and he needs an entry in snmpd.conf which tells him who his peers are and what MIB variable is the start of their tree. Each peer needs a matching entry in the snmpd.peers file. When the peer comes up he uses what is in the snmpd.peers file to open a session with snmpd. snmpd in turn verifies the connection with the entry in his snmpd.conf file. If what the peer uses trying to connect with doesn't match what is in the snmpd.conf file, the session request is rejected with a badIdentity error.

2) The error is because ftp cannot find the archive file in the user's LIBPATH.
 
So...
This is what is in the /etc/snmpd.conf:

logging file=/usr/tmp/snmpd.log enabled
logging size=0 level=0

community public
community private 127.0.0.1 255.255.255.255 readWrite
community system 127.0.0.1 255.255.255.255 readWrite 1.17.2

view 1.17.2 system enterprises view

trap public 127.0.0.1 1.2.3 fe # loopback

#snmpd maxpacket=1024 querytimeout=120 smuxtimeout=60
smux 0.0 "" 192.127.10.117
smux 1.3.6.1.4.1.2.3.1.2.1.2 gated_password # gated
smux 1.3.6.1.4.1.2.3.1.2.2.1.1.2 dpid_password #dpid

smux 1.3.6.1.4.1.2.6.117 sp_configd_pw # sp_configd

and this is what is in the snmpd.peers file:

"gated" 1.3.6.1.4.1.2.3.1.2.1.2 "gated_password"
"dpid2" 1.3.6.1.4.1.2.3.1.2.2.1.1.2 "dpid_password"
sp_configd 1.3.6.1.4.1.2.6.117 sp_configd_pw

Can you see anything wrong with this?
Many thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top