#!/bin/sh

# set global env setting
. /opt/jilroy/checkit//bin/env


if [ "$1" = "" ]
then
	echo	"Usage:snmptrap strIpAddr,nPort, strCommunity, strEnterprise, nGeneric, nSpecific, strOID ,stringValue "
else
	# send trap
	$RUN_JAVA com.rj.common.snmp.TrapSender $1 $2 $3 $4 $5 $6 $7 $8
 
fi
