T.R | Title | User | Personal Name | Date | Lines |
---|
5622.1 | VITALINK MIB - see Vitalink. | CUJO::HILL | Dan Hill-Net.Mgt.-Customer Resident | Wed Sep 29 1993 00:21 | 11 |
| Patrick,
The best thing would be to call Vitalink and ask for the latest MIB,
but be sure you have the latest SNMP agent, too.
The SNMP MIB definition file is VITALINK_MIBDEF.TXT . This is the
convention used by DECmcc (*_MIBDEF.TXT) development groups.
You may be able to get a pointer to the latest MIB file on the Internet
if you call Vitalink.
-Dan
|
5622.2 | Enterprise specific | EVTAI1::RENOUVEL | | Wed Sep 29 1993 05:14 | 10 |
|
Hye,
Just one more thing ,where could I find the exact definition of
the Enterprise specific .(SNMP)
Thanks a lot.
Patrick
|
5622.3 | More SNMP info | CUJO::HILL | Dan Hill-Net.Mgt.-Customer Resident | Thu Sep 30 1993 01:40 | 17 |
| Patrick,
I'm not sure I really understand what you're asking, but I'll take a
shot.
If you are looking for the Enterprise-specific portions of the Simple
Network Management Protocol, try reading "The Simple Book" by Marshall
Rose. Enterprise-specific portions of the MIB tree are discussed.
Basically, enterprise-specific is anything you want it to be, as long
as your company or your "enterprise" uses a unique (and hopefully
registered) portion of the MIB tree that follows the ASN.1 syntax
properly.
Hope this helps.
-Dan
|
5622.4 | Just one more thing | EVTAI1::RENOUVEL | | Thu Sep 30 1993 05:44 | 10 |
|
Thanks Dan,
In fact what I would like is to see something else than Enterprise
specific word appears in my notify request window.
Could I make the messages of the translan clearly visible.
Thanks for your help.
Patrick.
|
5622.5 | Set up your own trap name | CUJO::HILL | Dan Hill-Net.Mgt.-Customer Resident | Mon Oct 04 1993 01:09 | 13 |
| Patrick,
You can do this by changing the name of the variable in the MIB, or by
setting up your own enterprise-specific trap variable name which will
be displayed in the notification window. Use descriptive variable
names.
You don't have much else you can do in terms of text that can be
displayed in the notification window. You are very limited as to what
you can do here.
-dan
|
5622.6 | Pardon ..? | EVTAI1::RENOUVEL | | Tue Nov 02 1993 07:10 | 11 |
|
Hye Dan,
Could you explain me a little bit more ,how to do this.
I'm very interested by.
Thanks.
Patrick.
|
5622.7 | Quick and dirty HP enterprise SNMP trap setup | CUJO::HILL | Dan Hill-Net.Mgt.-Customer Resident | Wed Nov 03 1993 21:58 | 62 |
| The following is a quick and dirty look at setting up an HP MIB to use the
HP MIB variable "fileSystemName" as a mechanism of shipping your own
enterprise-specific trap. Note that you can assign this variable name any
value of the datatype defined for fileSystemName at the top of the MIB. You
are simply going to use the variable for a quick trap transmission.
(The top part of the MIB goes here.)
.
.
.
(At the bottom, just before the END statement, include the following:)
hpVendorTrap1 TRAP-TYPE
ENTERPRISE hp
VARIABLES { fileSystemName }
::=1
hpVendorTrap2 TRAP-TYPE
ENTERPRISE hp
VARIABLES { fileSystemName }
::=2
hpVendorTrap3 TRAP-TYPE
ENTERPRISE hp
VARIABLES { fileSystemName }
::=3
END
---------------------
That's it for the MIB. Now compile it and load the dictionary via the
MCC_TCPIP_MTU.COM MIB translation utility. Your new MIB trap objects will
be in the dictionary for MCC to use.
You must also set up a notify request via Notification Services. Bring up the
notification window in the Iconic Map and select "Notify Requests..." &
"Create..." . Use Mouse button 3 to display choices for each field. You
will see your new trap objects in the events field choices.
The notify requests may look something like these when completed:
Notify Domain .MyDomain Entity List = (snmp * hp *), -
Event = (hpVendorTrap1, hpVendorTrap2)
Notify Domain .MyDomain Entity List = (snmp * hp *), -
Event = (hpVendorTrap2)
Notify Domain .MyDomain Entity List = (snmp * hp *), -
Event = (Any Configuration Event)
To test that you are getting your traps, use the forms command line thusly:
MCC> getevent snmp * hp * any configuration event, for duration 00:10
Once you've executed this command, MCC will display all traps received for up
to 10 minutes, that is, any trap that is generated by an HP SNMP agent.
If you want to see all traps generated by any agent, don't include the "hp *".
-Dan
|