- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- How to enable SNMP Sets on ESX agents
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-09-2009 07:15 AM
тАО01-09-2009 07:15 AM
How to enable SNMP Sets on ESX agents
In the Windows environment, I know you need to go into the agent settings in Control Panel and check the Enable SNMP Sets box.
Where is the equivilent in the Linux agents? We dug around in the Agent install and config scripts and didnt find anything.
We are running ESX 3.5 Update 2 with HP Agents 8.0.0a
-Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-10-2009 04:07 AM
тАО01-10-2009 04:07 AM
Re: How to enable SNMP Sets on ESX agents
You can find me from Twitter @JKytsi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-29-2009 01:08 PM
тАО01-29-2009 01:08 PM
Re: How to enable SNMP Sets on ESX agents
Turns out we had this in the snmpd.conf file for local host;
rocommunity snmpcomst 127.0.0.1
rwcommunity snmpconst 127.0.0.1
once we commented out the rocommunity line it started working, like this;
#rocommunity snmpcomst 127.0.0.1
rwcommunity snmpconst 127.0.0.1
This brings up another question though, we also have both lines for the SIM server, even though the snmp community string is the same, like this;
rocommunity snmpcomst cim1.domain.com
rwcommunity snmpcomst cim1.domain.com
Even though it seems to be working ok, do we need both a rw and ro line for the SIM server if we use the same snmp community string? I would think not, but I've seen examples that are setup like this...
-Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-29-2009 01:38 PM
тАО01-29-2009 01:38 PM
Re: How to enable SNMP Sets on ESX agents
rwcommunity [STRINGA] 127.0.0.1
rocommunity [STRINGB] [IP_ADDRESS_OR_DNS_NAME_OF_HP_SIM_CMS]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-13-2009 07:08 AM
тАО03-13-2009 07:08 AM
Re: How to enable SNMP Sets on ESX agents
In our case, we allow read-only access from anywhere, and that was causing a problem.
For example, instead of:
rocommunity SNMPSTRING
rwcommunity SNMPSTRING 127.0.0.1
Change it to this:
rwcommunity SNMPSTRING 127.0.0.1
rocommunity SNMPSTRING
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-22-2009 08:13 AM
тАО06-22-2009 08:13 AM
Re: How to enable SNMP Sets on ESX agents
echo "rwcommunity community 127.0.0.1" >>/etc/snmp/snmpd.conf && echo "rwcommunity community 192.168.1.2" >>/etc/snmp/snmpd.conf && echo "dlmod cmaX /usr/lib/libcmaX.so" >>/etc/snmp/snmpd.conf && /etc/init.d/snmpd restart
The commands above should be all in one line (although it may be wrapped here).
I'm now working to find a similar command string for ESX 4.x (vSphere).
dcc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2009 04:57 AM
тАО06-23-2009 04:57 AM
Re: How to enable SNMP Sets on ESX agents
echo "rwcommunity community 127.0.0.1" >>/etc/snmp/snmpd.conf && echo "rwcommunity community 192.168.1.2" >>/etc/snmp/snmpd.conf && echo "dlmod cmaX /usr/lib64/libcmaX64.so" >>/etc/snmp/snmpd.conf && /etc/init.d/snmpd restart
The commands above should be all in one line (although it may be wrapped here).
The ESX 4.x service console is based on a x64 kernel, instead the of the x86 kernel that 3.x was based on. As a result, the path and architecture of libcmaX has changed.
Be sure to adjust the rwcommunity IPs/hostnames to suit your own network.
dcc