Eric, On Wed, 03 Feb 2010 17:38:34 -0600 Eric Rostetter <[email protected]> wrote:
<snip> > > In /var/log/messages, I can see that OMSA is trying to talk to snmpd, > ala: > > Feb 3 14:01:53 filer2 snmpd: snmpd startup succeeded > Feb 3 14:01:53 filer2 snmpd[24188]: NET-SNMP version 5.4.1 > Feb 3 14:01:54 filer2 snmpd[24188]: [smux_accept] accepted fd 9 > from 127.0.0.1:60802 > Feb 3 14:01:54 filer2 snmpd[24188]: accepted smux peer: oid > SNMPv2-SMI::enterprises.674.10892.1, descr Systems Management SNMP > MIB Plug-in Manager > > But when I remotely snmpwalk it, it returns no values. It is > connecting, again via /var/log/messages: > > Feb 3 14:02:48 filer2 snmpd[24188]: Connection from UDP: > [172.16.111.73]:56624 > Feb 3 14:02:48 filer2 snmpd[24188]: Received SNMP packet(s) from > UDP: [172.16.111.73]:56624 > Feb 3 14:02:48 filer2 snmpd[24188]: Connection from UDP: > [172.16.111.73]:56624 I'd start by figuring out how exactly "Access Control" is configured in your snmpd.conf file. Find out what security names you have configured, what access those security names have and if you are using snmpwalk -v 2c -c "public" to walk the tree what does "public" community maps into. Sample from our configuration we are using here (taken from snmpd.conf) com2sec readonly default our_community group MyROGroup v1 readonly group MyROGroup v2c readonly group MyROGroup usm readonly view all included .1 80 access MyROGroup "" any noauth exact all none none this will map community "our_community" (to get rid of default "public") to security name "readonly", then map that security name into group "MyROGroup", define view called "all" which includes full SNMP tree and then give read-only access to group MyROGroup to view "all". You haven't specified what exactly you are snmpwalk-ing remotely. The OMSA branch or full system? Hope this is helpful Misha. -- Vanush "Misha" Paturyan Senior Technical Officer Computer Science Department NUI Maynooth _______________________________________________ Linux-PowerEdge mailing list [email protected] https://lists.us.dell.com/mailman/listinfo/linux-poweredge Please read the FAQ at http://lists.us.dell.com/faq
