blob: 232b6bd76a78cec62fb16db46fcde92b1a492213 (
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
|
-- ==========================================================================
-- Copyright (c) 2004-2016 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The MIB contains the managed objects definitions for the Virtual
-- Private Network (VPN) peer on devices supporting this feature.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 2016-03-09 Initial version created by qujin
-- ==========================================================================
HH3C-VPN-PEER-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
OBJECT-TYPE, MODULE-IDENTITY, Counter64
FROM SNMPv2-SMI;
hh3cVpnPeer MODULE-IDENTITY
LAST-UPDATED "201603091600Z" -- 9th March, 2016 at 16:00 GMT
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip: 100085
"
DESCRIPTION
"This MIB provides information about VPN peers. This MIB is applicable to PE devices.
Some objects in this MIB may be used only for some specific products,
so users should refer to the related documents to acquire more
detailed information.
"
REVISION "201603091600Z"
DESCRIPTION
"The initial revision of this MIB module."
::= { hh3cCommon 165 }
-- =================================================================
-- Note that a scalar group should be defined firstly and all
-- scalar objects are placed under that group.
-- =================================================================
hh3cVpnPeerGroup OBJECT IDENTIFIER ::= { hh3cVpnPeer 1 }
-- =================================================================
-- The section below describes statistics of VPN peer on a device.
-- =================================================================
hh3cVpnPeerStat OBJECT IDENTIFIER ::= { hh3cVpnPeerGroup 1 }
-- =============================================================================
-- hh3cVpnPeerStatTable Definition
-- =============================================================================
hh3cVpnPeerStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cVpnPeerStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get statistic information
of a VPN peer on a device."
::= { hh3cVpnPeerStat 1 }
hh3cVpnPeerStatEntry OBJECT-TYPE
SYNTAX Hh3cVpnPeerStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
hh3cVpnPeerName
}
::= { hh3cVpnPeerStatTable 1 }
Hh3cVpnPeerStatEntry ::=
SEQUENCE {
hh3cVpnPeerName
OCTET STRING,
hh3cVpnPeerOutPassPkts
Counter64,
hh3cVpnPeerOutPassBytes
Counter64,
hh3cVpnPeerOutDropPkts
Counter64,
hh3cVpnPeerOutDropBytes
Counter64
}
hh3cVpnPeerName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique human-readable value for each VPN peer."
::= { hh3cVpnPeerStatEntry 1 }
hh3cVpnPeerOutPassPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted out of the VPN peer."
::= { hh3cVpnPeerStatEntry 2 }
hh3cVpnPeerOutPassBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes transmitted out of the VPN peer."
::= { hh3cVpnPeerStatEntry 3 }
hh3cVpnPeerOutDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of dropped packets transmitted out of the VPN peer."
::= { hh3cVpnPeerStatEntry 4 }
hh3cVpnPeerOutDropBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of dropped bytes transmitted out of the VPN peer."
::= { hh3cVpnPeerStatEntry 5 }
END
|