summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-PVST-MIB
blob: 6493251aa342a0beb5dd9d2728f5615628dc319b (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
-- ===================================================================
-- Copyright (c) 2004-2014 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Per-VLAN spanning tree (PVST) MIB
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2014-05-27 Created by wangmingjun.
-- ===================================================================
-- ===================================================================
--
-- Imported variables and types
--
-- ===================================================================

HH3C-PVST-MIB DEFINITIONS ::= BEGIN

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

hh3cPvst MODULE-IDENTITY
    LAST-UPDATED "201405270000Z"
    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 defines objects for managing Per-VLAN spanning tree (PVST)."
    REVISION "201405270000Z"
    DESCRIPTION
        "The initial version of this MIB file."
    ::= { hh3cCommon  131 }

-- =========================
-- Subtrees in the PVST MIB
-- =========================

hh3cPvstObjects
    OBJECT IDENTIFIER ::= { hh3cPvst 1 }

hh3cPvstNotifications
    OBJECT IDENTIFIER ::= { hh3cPvst 2 }

--  ==================================================================
--  PVST objects table
--  ==================================================================

--  ===============================
--  PVST VLAN table
--  ===============================

hh3cPvstVlanConfigTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cPvstVlanConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "PVST VLAN configuration table."
    ::= { hh3cPvstObjects 1 }

hh3cPvstVlanConfigEntry OBJECT-TYPE
    SYNTAX      Hh3cPvstVlanConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "PVST VLAN configuration table entry."
    INDEX {
              hh3cPvstVlanID
          }
    ::= { hh3cPvstVlanConfigTable 1 }

Hh3cPvstVlanConfigEntry ::=
    SEQUENCE
    {
        hh3cPvstVlanID      Integer32
    }

hh3cPvstVlanID OBJECT-TYPE
    SYNTAX      Integer32(1..4094)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The index of the VLAN configuration table."
    ::= { hh3cPvstVlanConfigEntry 1 }

--  ===============================
--  PVST VLAN port table
--  ===============================

hh3cPvstVlanPortConfigTable OBJECT-TYPE
    SYNTAX SEQUENCE OF Hh3cPvstVlanPortConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "PVST VLAN port configuration table."
        ::= { hh3cPvstObjects 2 }

hh3cPvstVlanPortConfigEntry OBJECT-TYPE
    SYNTAX      Hh3cPvstVlanPortConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "PVST VLAN port configuration table entry."
    INDEX {
              hh3cPvstPortVlanID,
              hh3cPvstPortIndex
          }
    ::= { hh3cPvstVlanPortConfigTable 1 }

Hh3cPvstVlanPortConfigEntry ::=
    SEQUENCE
    {
        hh3cPvstPortVlanID     Integer32,
        hh3cPvstPortIndex      Integer32
    }

hh3cPvstPortVlanID       OBJECT-TYPE
    SYNTAX      Integer32(1..4094)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The index of the VLAN."
    ::={ hh3cPvstVlanPortConfigEntry 1 }

hh3cPvstPortIndex OBJECT-TYPE
    SYNTAX      Integer32(1..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The index of the bridge port."
    ::={ hh3cPvstVlanPortConfigEntry 2 }

--  ==================================================================
--  PVST notification table
--  ==================================================================

hh3cPvstEvents
    OBJECT IDENTIFIER ::= { hh3cPvstNotifications 0 }

hh3cPvstVlanPortDetectedTc NOTIFICATION-TYPE
    OBJECTS  { hh3cPvstPortVlanID , hh3cPvstPortIndex }
    STATUS   current
    DESCRIPTION
        "The SNMP trap is generated when a port detects
         a topology change in a VLAN."
    ::= { hh3cPvstEvents 1 }

hh3cPvstVlanPortRcvdTc NOTIFICATION-TYPE
    OBJECTS  { hh3cPvstPortVlanID , hh3cPvstPortIndex }
    STATUS   current
    DESCRIPTION
        "The SNMP trap is generated when a port receives
         a topology change in a VLAN."
    ::= { hh3cPvstEvents 2 }

END