(SNMPTTCONVERT)
This file was last updated on: August 30th, 2004
Copyright 2002-2021 Alex Burger
alex_b@users.sourceforge.net
4/3/2002
This program is free software; you can redistribute it and/or
modify
it under the terms of the GNU General Public License as published
by
the Free Software Foundation; either version 2 of the License,
or
(at your option) any later version.
This program is distributed in the hope that it will be
useful,
but WITHOUT ANY WARRANTY; without even the implied warranty
of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public
License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
Some vendors provide a file that can be imported into HP Openview using a HP Openview utiltity. SNMPTTCONVERT is a simple Perl script which will convert one of these files into the format used by SNMPTT. The file can contain multiple traps.
For example, if the file ciscotrap.txt contained:
 rpsFailed {.1.3.6.1.4.1.437.1.1.3} 6 5 - "Status Events" 1  
 Trap received from enterprise $E with $# arguments: sysName=$1  
 SDESC  
 "A redundant power source is connected to the switch but a failure exists in  
 the power system."  
 EDESC
Executing snmpttconvert ciscotrap.txt would output:
 #  
 #  
 #  
 EVENT rpsFailed .1.3.6.1.4.1.437.1.1.3.0.5 "Status Events" Normal  
 FORMAT Trap received from enterprise $E with $# arguments: sysName=$1  
 #EXEC qpage -f TRAP notifygroup1 "Trap received from enterprise $E with $# arguments: sysName=$1"  
 SDESC  
 "A redundant power source is connected to the switch but a failure exists in  
 the power system."  
 EDESC
Note: The #EXEC line is added by default. This can be changed by editing the SNMPTTCONVERT script.