summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-GOLD-MIB
blob: 9d7cb4125c5315fef0a00553884de6983523eeb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
-- =================================================================
-- Copyright (c) 2004-2021 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: GOLD MIB
-- Version: V1.0
-- History:
--   V1.0 Created by meishenhe
--        Initial version 2021-03-13
-- =================================================================
HH3C-GOLD-MIB DEFINITIONS ::= BEGIN

IMPORTS
        hh3cCommon
    FROM HH3C-OID-MIB
        Integer32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
    FROM SNMPv2-SMI;

hh3cGold MODULE-IDENTITY
    LAST-UPDATED "202103131502Z"
    ORGANIZATION
        "New H3C Technologies Co., Ltd."
    CONTACT-INFO
        "Platform Team New H3C Technologies Co., Ltd.
         Hai-Dian District Beijing P.R. China
         Http://www.h3c.com
         Zip:100085"
    DESCRIPTION
        "This MIB is used to manage GOLD(Generic OnLine Diagnostics) detection.
         This MIB is applicable to products that support GOLD."
    REVISION "202103131502Z"
    DESCRIPTION
        "The initial revision of this MIB module."
    ::= { hh3cCommon 203 }

hh3cGoldTrap OBJECT IDENTIFIER ::= { hh3cGold 1 }

hh3cGoldTrapOjbects OBJECT IDENTIFIER ::= { hh3cGoldTrap 0 }

-- All trap definitions should be placed under this object.
hh3cGoldLipcLinkFail NOTIFICATION-TYPE
    OBJECTS
        {
            hh3cGoldLipcLinkSourceChassisID,
            hh3cGoldLipcLinkSourceSlotID,
            hh3cGoldLipcLinkSourceCpuID,
            hh3cGoldLipcLinkDestChassisID,
            hh3cGoldLipcLinkDestSlotID,
            hh3cGoldLipcLinkDestCpuID
        }
    STATUS      current
    DESCRIPTION
        "the hh3cGoldLipcLinkFail trap indicates that the GOLD function
        changed to the fail state."
    ::= { hh3cGoldTrapOjbects 1 }

hh3cGoldLipcLinkRecover NOTIFICATION-TYPE
    OBJECTS
        {
            hh3cGoldLipcLinkSourceChassisID,
            hh3cGoldLipcLinkSourceSlotID,
            hh3cGoldLipcLinkSourceCpuID,
            hh3cGoldLipcLinkDestChassisID,
            hh3cGoldLipcLinkDestSlotID,
            hh3cGoldLipcLinkDestCpuID
        }
    STATUS      current
    DESCRIPTION
        "the hh3cGoldLipcLinkRecover trap indicates that the GOLD function
        changed to the recover state."
    ::= { hh3cGoldTrapOjbects 2 }

hh3cGoldTrapObjectDefinitions OBJECT IDENTIFIER ::= { hh3cGoldTrap 1 }
-- All objects used for TRAP only are defined here.

hh3cGoldLipcLinkSourceChassisID OBJECT-TYPE
    SYNTAX         Integer32(0..65535)
    MAX-ACCESS     accessible-for-notify
    STATUS         current
    DESCRIPTION
        "The source chassis id of lipc node."
    ::= { hh3cGoldTrapObjectDefinitions 1 }

hh3cGoldLipcLinkSourceSlotID OBJECT-TYPE
    SYNTAX         Integer32(0..65535)
    MAX-ACCESS     accessible-for-notify
    STATUS         current
    DESCRIPTION
        "The source slot id of lipc node."
    ::= { hh3cGoldTrapObjectDefinitions 2 }

hh3cGoldLipcLinkSourceCpuID OBJECT-TYPE
    SYNTAX         Integer32(0..65535)
    MAX-ACCESS     accessible-for-notify
    STATUS         current
    DESCRIPTION
        "The source cpu id of lipc node."
    ::= { hh3cGoldTrapObjectDefinitions 3 }

hh3cGoldLipcLinkDestChassisID OBJECT-TYPE
    SYNTAX         Integer32(0..65535)
    MAX-ACCESS     accessible-for-notify
    STATUS         current
    DESCRIPTION
        "The destination chassis id of lipc node."
    ::= { hh3cGoldTrapObjectDefinitions 4 }

hh3cGoldLipcLinkDestSlotID OBJECT-TYPE
    SYNTAX         Integer32(0..65535)
    MAX-ACCESS     accessible-for-notify
    STATUS         current
    DESCRIPTION
        "The destination slot id of lipc node."
    ::= { hh3cGoldTrapObjectDefinitions 5 }

hh3cGoldLipcLinkDestCpuID OBJECT-TYPE
    SYNTAX         Integer32(0..65535)
    MAX-ACCESS     accessible-for-notify
    STATUS         current
    DESCRIPTION
        "The destination cpu id of lipc node."
    ::= { hh3cGoldTrapObjectDefinitions 6 }

END