summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-FC-NAME-SERVER-MIB
blob: 2e7228dae0c3d8af25b2ab31dc8d78e7f19f05c4 (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
-- =====================================================================
-- Copyright (c) 2004-2014 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:
--      This MIB module is intended for the management of Fibre Channel (FC)
--      Name Server.
-- Reference:
-- Version: V1.0
-- History:
--   V1.0 Initial version
--        created by qiaoxinghua 2014-03-03
-- =====================================================================
HH3C-FC-NAME-SERVER-MIB DEFINITIONS ::= BEGIN

IMPORTS
    hh3cSan, hh3cVsanIndex
        FROM HH3C-VSAN-MIB
    Hh3cFcNameId
        FROM HH3C-FC-TC-MIB
    OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
        FROM SNMPv2-SMI
    TruthValue
        FROM SNMPv2-TC;

hh3cFcNameServer MODULE-IDENTITY
    LAST-UPDATED "201403031018Z"    -- March 03, 2014 at 10:18 GMT
    ORGANIZATION
        "New H3C Tech. Co., Ltd."
    CONTACT-INFO
        "Platform Team New H3C Tech. Co., Ltd.
         Hai-Dian District Beijing P.R. China
         http://www.h3c.com
         Zip:100085"
    DESCRIPTION
        "This MIB module is intended for the management of Fibre Channel (FC)
         Name Server."
    REVISION "201403031018Z"
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { hh3cSan 10 }

-- Node definitions
hh3cFcNameServerMibObjects OBJECT IDENTIFIER ::= { hh3cFcNameServer 1 }

-- FC Name Server Notifications
hh3cFcNsNotification OBJECT IDENTIFIER ::= { hh3cFcNameServerMibObjects 1 }

hh3cFcNsNotificationPrefix   OBJECT IDENTIFIER ::= { hh3cFcNsNotification 0 }
hh3cFcNsNotificationSwitch   OBJECT IDENTIFIER ::= { hh3cFcNsNotification 1 }
hh3cFcNsObjsForNotification  OBJECT IDENTIFIER ::= { hh3cFcNsNotification 2 }

hh3cFcNsPortLoginNotify NOTIFICATION-TYPE
    OBJECTS    { hh3cVsanIndex,
                 hh3cFcNsLocalSwitchWWN,
                 hh3cFcNsFloginPortWWN }
    STATUS     current
    DESCRIPTION
    "This notification will be generated when an entry is added to the
     Name Server database by Nx_Port locally logging in."
    ::= { hh3cFcNsNotificationPrefix 1 }

hh3cFcNsPortLogoutNotify NOTIFICATION-TYPE
    OBJECTS    { hh3cVsanIndex,
                 hh3cFcNsLocalSwitchWWN,
                 hh3cFcNsFloginPortWWN }
    STATUS     current
    DESCRIPTION
    "This notification will be generated when an entry is deleted from
     the Name Server database by Nx_Port locally logging out."
    ::= { hh3cFcNsNotificationPrefix 2 }

hh3cFcNsPortLoginNotifyEnable OBJECT-TYPE
    SYNTAX     TruthValue
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
    "This object is used to determine whether hh3cFcNsPortLoginNotify
     will be generated for Nx_Port locally logging in."
    ::= { hh3cFcNsNotificationSwitch 1 }

hh3cFcNsPortLogoutNotifyEnable OBJECT-TYPE
    SYNTAX     TruthValue
    MAX-ACCESS read-write
    STATUS     current
    DESCRIPTION
    "This object is used to determine whether hh3cFcNsPortLogoutNotify
     will be generated for Nx_Port locally logging out."
    ::= { hh3cFcNsNotificationSwitch 2 }

hh3cFcNsLocalSwitchWWN OBJECT-TYPE
    SYNTAX     Hh3cFcNameId
    MAX-ACCESS accessible-for-notify
    STATUS     current
    DESCRIPTION
        "The world wide name of the local switch."
    ::= { hh3cFcNsObjsForNotification 1 }

hh3cFcNsFloginPortWWN OBJECT-TYPE
    SYNTAX     Hh3cFcNameId
    MAX-ACCESS accessible-for-notify
    STATUS     current
    DESCRIPTION
        "The world wide name of the local logged-in Nx_Port."
    ::= { hh3cFcNsObjsForNotification 2 }

END