Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TM3.2 Alarm Notification Console 1

Status
Not open for further replies.

Dphone

IS-IT--Management
Jun 6, 2003
220
US
I have TM3.2, CS-1000MG v5.5 trying to get Alarm notification to work. Been studying the books to try and figure this out. I see the alarms in TM System Alarms & the web alarms. I config my device. I set up email. But when I start the Alarm Notification. I see nothing in the Network event(top) pane. The Console(Bottom) pane just has the compiling file stuff and Beginning execution in the Alarm Notification window. No errors. No emails. Any help appreciated.
 
Jephph,

Would you be willing to share your example scripts again? I am trying to setup Alarm Management and would love to have a working example.

Thanks,

John
 
// ***************************************************************************************
//
// Alarm Notification Scripts
//
// ***************************************************************************************

notification file tm_file {
// change filename for site specific value
filename:="d:\teleweb\tm.txt";
}

script con_it
{
rule check
{
if ( $commonMIBSeverity = 1 or $commonMIBSeverity = 2 or $commonMIBSeverity = 3 or $commonMIBSeverity = 4)
{
send( con,
"(",
$CurrentPCTime,
") | ",
$commonMIBComponentAddress,
" | ",
$commonMIBErrCode,
" | ",
$commonMIBAlarmData,
" | ( ",
$commonMIBSeverity,
" ",
$commonMIBAlarmType,
" ",
$commonMIBProbableCause,
" )"
);
}
}
}

script log_it
{
rule check
{
if ( $CurrentTrapDevice = "COMMON_MIB_DEVICE")
{
send( tm_file,
$CurrentPCTime,
";",
$commonMIBErrCode,
";",
$commonMIBAlarmData,
";",
$commonMIBSeverity,
";",
$commonMIBAlarmType,
";",
$commonMIBProbableCause,
";",
$commonMIBComponentAddress,
";",
$commonMIBComponentID,
";",
$commonMIBSeqNumber,
";",
$commonMIBDateAndTime,
";"
);
}
}
}
 
Thanks, I got it working on a 3.0 system. I am getting ready to set it up for a 5.5 too. When I am done I might post an FAQ for both.


John
 
When you work on your FAQ, can you find out if the Alarm Notification Console can work without being logged on ...

This is my biggest problem with the Console.
 
Hi Jephph,

Can you please post the files once again in the FTP for me to download

Thanks for your help

regards
Chandru
 
Alarm Notification Console or TM Login problem
In my previous post, I commented that the Alarm Notification Console only works when one is logged in.

Actually, it is more a general TM problem ...

I am helping our Tele team with non-tlf issues (alarms traps qos and interface to cisco people).
- so I am a learner when regarding TM.

But it seems to me, there is no auto login for TM so if the machine restarts, one has to login to TM.

So I have deceided to make a local accout for TM (to allways have it running) and use mstsc /console and login to start the TM as a local TM user (and start schedule and Notification Console)
Unless someone knows different ...

Owen Brotherwood, Denmark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top