- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ENABLING SNMP ON HPUX 11.31
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
Forums
Discussions
Discussions
Discussions
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
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
05-12-2009 08:26 AM
05-12-2009 08:26 AM
I am trying to config SNMP on our HP-UX 11.31 machines.
We'll monitor the systems with Spectrum Software.
I prepare the "/etc/SnmpAgent.d/snmpd.conf" file like this:
get-community-name: D#123--@30
set-community-name: D#123--@30
contact: Unidad de Servidores.
contact: MAPFRE - Venezuela
location: Casa Matriz - La Urbina # enter location of agent
#max-trap-dest: # enter max no. of trap-dest entries to be maintained.
trap-dest: 1.2.3.4
trap-dest: 5.6.7.8
What else do I have to change?.
Thank you!.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2009 10:13 PM
05-12-2009 10:13 PM
Re: ENABLING SNMP ON HPUX 11.31
just update the /etc/snmmp.conf (or the equivalent link to etc/SnmpAgent.d/snmpd.conf - you already did that) with your settings, enable Snmp-Daemon in the rc-file and start the SnmpMaster Agent.
# vi /etc/rc.config.d/SnmpMaster
SNMP_MASTER_START=1 # Start the master SNMP agent.
export SNMP_MASTER_START
# /sbin/init.d/SnmpMaster start
Good Luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2009 06:16 AM
05-13-2009 06:16 AM
Re: ENABLING SNMP ON HPUX 11.31
Those changes are already done... but the traps are not going any were.
I also check these files:
/etc/SnmpAgent.d/snmpd.conf
/etc/snmpd.conf
/usr/newconfig/etc/SnmpAgent.d/snmpd.conf
No success...
Any other idea?.
Thank you!.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2009 06:36 AM
05-13-2009 06:36 AM
SolutionAs # is used for comments, this might be one problem. Try without the # in your community string.
Did you configure the ip-adress of your spectrum server as trap-destination?
see changes below:
get-community-name: D123--@30
set-community-name: D123--@30
contact: Unidad de Servidores.
contact: MAPFRE - Venezuela
location: Casa Matriz - La Urbina # enter location of agent
#max-trap-dest: # enter max no. of trap-dest entries to be maintained.
trap-dest:
After doing the changes, don't forget to restart SnmpMaster
# /sbin/init.d/SnmpMaster stop && /sbin/init.d/SnmpMaster start
Good Luck !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2009 11:51 AM
05-13-2009 11:51 AM
Re: ENABLING SNMP ON HPUX 11.31
You where completly right, as simple as that. The problem was the simbol "#".
Thank you again!.
Have a nice day!.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2009 11:52 AM
05-13-2009 11:52 AM
Re: ENABLING SNMP ON HPUX 11.31
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2009 11:08 PM
05-13-2009 11:08 PM
Re: ENABLING SNMP ON HPUX 11.31
Thank you.