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
|
-- =================================================================
-- Copyright (C) 2003 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description: HUAWEI-SMAP-MIB, this mib will maintain the SMAP
-- mib oid for all datacomm product.
-- Reference:
-- Version: V1.0
-- History:
-- yangyinzhu,2003-03-18, initial version.
-- chenruining,2003-03-20, adjust to the SRS review.
-- =================================================================
HUAWEI-SMAP-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-GROUP
FROM SNMPv2-CONF
Integer32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC
hwDatacomm
FROM HUAWEI-MIB;
hwSMAP MODULE-IDENTITY
LAST-UPDATED "200303201150Z" -- March 20, 2003 at 11:50 GMT
ORGANIZATION
"
HAUWEI MIB Standard community
"
CONTACT-INFO
"
R&D BeiJing, Huawei Technologies co.,Ltd.
Huawei Bld.,NO.3 Xinxi Rd.,
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
Zip:100085
Http://www.huawei.com
E-mail:support@huawei.com
"
DESCRIPTION
"
V1.00
The SMAP mib is for all datacomm product.
"
::= { hwDatacomm 14 }
--
-- Node definitions
--
-- 1.3.6.1.4.1.2011.5.25.14.1
hwSmapMibObjects OBJECT IDENTIFIER ::= { hwSMAP 1 }
-- 1.3.6.1.4.1.2011.5.25.14.1.1
hwSmapTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwSmapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The Port-Application Map table.
"
::= { hwSmapMibObjects 1 }
-- 1.3.6.1.4.1.2011.5.25.14.1.1.1
hwSmapEntry OBJECT-TYPE
SYNTAX HwSmapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The Port-Application Map table struct.
"
INDEX { hwSmapUserPort, hwSmapAcl }
::= { hwSmapTable 1 }
HwSmapEntry ::=
SEQUENCE {
hwSmapUserPort
Integer32,
hwSmapAcl
Integer32,
hwSmapAppSysPort
Integer32,
hwSmapStatus
RowStatus
}
-- 1.3.6.1.4.1.2011.5.25.14.1.1.1.1
hwSmapUserPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The new port defined by user.
This item is index."
::= { hwSmapEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.14.1.1.1.2
hwSmapAcl OBJECT-TYPE
SYNTAX Integer32 (0|2000..2999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The SMAP function is used for which data flow.
0 means thie item is used for all data flow.
This item is index.
"
::= { hwSmapEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.14.1.1.1.3
hwSmapAppSysPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The application port defined by rfc.
Now only support:
ftp 21
smtp 25
http 80
rtsp 554
h323 1720
"
::= { hwSmapEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.14.1.1.1.4
hwSmapStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Only support CreateAndGo and Destroy.
"
::= { hwSmapEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.14.2
hwSmapMibConformance OBJECT IDENTIFIER ::= { hwSMAP 2 }
-- 1.3.6.1.4.1.2011.5.25.14.2.1
hwSmapMibGroup OBJECT IDENTIFIER ::= { hwSmapMibConformance 1 }
-- 1.3.6.1.4.1.2011.5.25.14.2.1.1
hwSmapGroup OBJECT-GROUP
OBJECTS {
hwSmapUserPort,
hwSmapAcl,
hwSmapAppSysPort,
hwSmapStatus }
STATUS current
DESCRIPTION
"
The SMAP table member.
"
::= { hwSmapMibGroup 1 }
END
|