summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-SPLAT-DHCP-MIB
blob: 470f3e95f5c9e0af9a9549266243f7857119d3d8 (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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
-- ==================================================================
-- Copyright (C) 2002 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: DHCP MIB
-- Reference:
-- Version: V1.0
-- History:
--(1) Created by Zhang Shilin, 2001.6.29
--(2) Revised by Qi Zhenglin, 2002.01.08
-- ==================================================================

-- ==================================================================
--
-- Varibles and types be imported
--
-- ==================================================================

HH3C-LswDHCP-MIB DEFINITIONS ::= BEGIN

IMPORTS

    RowStatus, MacAddress
        FROM SNMPv2-TC

    MODULE-IDENTITY,OBJECT-TYPE, IpAddress
        FROM SNMPv2-SMI

    hh3clswCommon
        FROM HH3C-OID-MIB;

-- ==================================================================
--
-- ======================= definition begin =========================
--
-- ==================================================================
hh3cLswDhcpMib MODULE-IDENTITY
            LAST-UPDATED "200106290000Z"
            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
            ""
            REVISION "200106290000Z"
            DESCRIPTION
            ""
            ::= { hh3clswCommon  8 }

    hh3cLswDhcpMibObject OBJECT IDENTIFIER ::= {  hh3cLswDhcpMib 1  }

    hh3cDhcpGroupTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF Hh3cDhcpGroupEntry
        MAX-ACCESS not-accessible
        STATUS   current
        DESCRIPTION "A table containing the information of dhcp group "
        ::= { hh3cLswDhcpMibObject 1 }


     hh3cDhcpGroupEntry OBJECT-TYPE
        SYNTAX  Hh3cDhcpGroupEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION "A table entry containing the information of dhcp group "
        INDEX   { hh3cDhcpGroupID }
        ::= { hh3cDhcpGroupTable 1 }

    Hh3cDhcpGroupEntry    ::=
    SEQUENCE {
        hh3cDhcpGroupID           INTEGER ,
        hh3cIpDhcpServerAddress1  IpAddress ,
        hh3cIpDhcpServerAddress2  IpAddress ,
        hh3cDhcpRowStatus         RowStatus
        }

    hh3cDhcpGroupID OBJECT-TYPE
        SYNTAX  INTEGER  (0..19)
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION " DHCP group identifier "
        ::= { hh3cDhcpGroupEntry 1 }

    hh3cIpDhcpServerAddress1 OBJECT-TYPE
        SYNTAX  IpAddress
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION " The first IP address of DHCP server group "
        ::= { hh3cDhcpGroupEntry 2 }

    hh3cIpDhcpServerAddress2 OBJECT-TYPE
        SYNTAX  IpAddress
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION " The second IP address of DHCP server group "
        ::= { hh3cDhcpGroupEntry 3 }

    hh3cDhcpRowStatus OBJECT-TYPE
        SYNTAX  RowStatus
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION " Operation status of this table entry     "
        ::= { hh3cDhcpGroupEntry 4 }

    hh3cDhcpSecurityTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF Hh3cDhcpSecurityEntry
        MAX-ACCESS not-accessible
        STATUS   current
        DESCRIPTION "A table containing the information of dhcp security "
        ::= { hh3cLswDhcpMibObject 2 }


     hh3cDhcpSecurityEntry OBJECT-TYPE
        SYNTAX  Hh3cDhcpSecurityEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION "A table containing the information of dhcp security "
        INDEX   { hh3cDhcpClientIpAddress }
        ::= { hh3cDhcpSecurityTable 1 }

    Hh3cDhcpSecurityEntry    ::=
    SEQUENCE {
        hh3cDhcpClientIpAddress   IpAddress ,
        hh3cDhcpClientMacAddress  MacAddress,
        hh3cDhcpClientProperty    INTEGER ,
        hh3cDhcpClientRowStatus   RowStatus
        }

    hh3cDhcpClientIpAddress OBJECT-TYPE
        SYNTAX  IpAddress
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION " DHCP client's net ip address "
        ::= { hh3cDhcpSecurityEntry 1 }

    hh3cDhcpClientMacAddress OBJECT-TYPE
        SYNTAX  MacAddress
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION " DHCP client's mac address     "
        ::= { hh3cDhcpSecurityEntry 2 }

    hh3cDhcpClientProperty OBJECT-TYPE
        SYNTAX  INTEGER
        {
            static(1),
            dynamic(2)
        }
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION " Property of client address     "
        ::= { hh3cDhcpSecurityEntry 3 }

    hh3cDhcpClientRowStatus OBJECT-TYPE
        SYNTAX  RowStatus
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION " status of this table's entry.     "
        ::= { hh3cDhcpSecurityEntry 4 }


    hh3cDhcpToL3IfTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF Hh3cDhcpToL3IfEntry
        MAX-ACCESS not-accessible
        STATUS   current
        DESCRIPTION "A table configuring dhcp for layer 3 interface"
        ::= { hh3cLswDhcpMibObject 3 }


    hh3cDhcpToL3IfEntry OBJECT-TYPE
        SYNTAX  Hh3cDhcpToL3IfEntry
        MAX-ACCESS not-accessible
        STATUS current
        DESCRIPTION "A table configuring dhcp for layer 3 interface "
        INDEX   { hh3cDhcpToL3VlanIfIndex }
        ::= { hh3cDhcpToL3IfTable 1 }

    Hh3cDhcpToL3IfEntry    ::=
    SEQUENCE {
        hh3cDhcpToL3VlanIfIndex  INTEGER ,
        hh3cDhcpToL3GroupId      INTEGER,
        hh3cDhcpToL3AddressCheck INTEGER ,
        hh3cDhcpToL3RowStatus    RowStatus
        }

    hh3cDhcpToL3VlanIfIndex OBJECT-TYPE
        SYNTAX  INTEGER
        MAX-ACCESS read-only
        STATUS current
        DESCRIPTION " vlan virtual interface index "
        ::= { hh3cDhcpToL3IfEntry 1 }

    hh3cDhcpToL3GroupId OBJECT-TYPE
        SYNTAX  INTEGER  (0..19)
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION " DHCP group id for this vlan virtual interface"
        ::= { hh3cDhcpToL3IfEntry 2 }

    hh3cDhcpToL3AddressCheck OBJECT-TYPE
        SYNTAX  INTEGER
        {
            enabled(1),
            disabled(2)
        }
        MAX-ACCESS read-write
        STATUS current
        DESCRIPTION " If dhcp security check enabled for this vlan virtual interface "
        ::= { hh3cDhcpToL3IfEntry 3 }

    hh3cDhcpToL3RowStatus OBJECT-TYPE
        SYNTAX  RowStatus
        MAX-ACCESS read-create
        STATUS current
        DESCRIPTION " status of this table's entry.     "
        ::= { hh3cDhcpToL3IfEntry 4 }
END