-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathA3COM-HUAWEI-GRE-MIB
109 lines (100 loc) · 2.86 KB
/
A3COM-HUAWEI-GRE-MIB
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
-- =================================================================
-- Copyright (C) 2005 by HUAWEI 3COM TECHNOLOGIES. All rights reserved.
--
-- Description: Generic Routing Encapsulation configuration MIB
-- Reference: IF-MIB
-- Version: V1.0
-- History:
-- V1.0 created by Sun Ludong
-- 2005-06-04 Initial version
-- =================================================================
A3COM-HUAWEI-GRE-MIB DEFINITIONS ::= BEGIN
IMPORTS
h3cCommon
FROM A3COM-HUAWEI-OID-MIB
Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
ifIndex
FROM IF-MIB;
h3cGre MODULE-IDENTITY
LAST-UPDATED
"200506040000Z" -- June 4, 2005 at 00:00 GMT
ORGANIZATION
"Huawei 3Com Technologies Co., Ltd.
"
CONTACT-INFO
"Platform Team Huawei 3Com Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.huawei-3com.com
Zip:100085
"
DESCRIPTION
"This MIB contains objects to Manage configuration and
Monitor running state for GRE.
"
REVISION
"200506040000Z" -- June 4, 2005 at 00:00 GMT
DESCRIPTION
"The initial revision of this MIB module.
"
::= { h3cCommon 54 }
h3cGreObjects OBJECT IDENTIFIER ::= { h3cGre 1 }
h3cGreTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cGreEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Generic Routing Encapsulation(GRE) configuration.
It contains configuration of GRE Key, and enable flags of Key
and Checksum. The detail of Key and Checksum is described in
RFC2784 and RFC2890.
"
::= { h3cGreObjects 1 }
h3cGreEntry OBJECT-TYPE
SYNTAX H3cGreEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of h3cGreTable
"
INDEX { ifIndex }
::= { h3cGreTable 1 }
H3cGreEntry ::= SEQUENCE {
h3cGreKeyValue
Unsigned32,
h3cGreKey
INTEGER,
h3cGreChecksum
INTEGER
}
h3cGreKeyValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of GRE key
"
::= { h3cGreEntry 1 }
h3cGreKey OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The enable flag of GRE key
"
::= { h3cGreEntry 2 }
h3cGreChecksum OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The enable flag of GRE Checksum
"
::= { h3cGreEntry 3 }
END