summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-VPN-PEER-MIB
diff options
context:
space:
mode:
authorDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
committerDavid Leutgeb <david.leutgeb@mannundmouse.com>2023-12-05 12:25:34 +0100
commit98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch)
tree9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/comware/HH3C-VPN-PEER-MIB
downloadmibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz
mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/comware/HH3C-VPN-PEER-MIB')
-rw-r--r--MIBS/comware/HH3C-VPN-PEER-MIB131
1 files changed, 131 insertions, 0 deletions
diff --git a/MIBS/comware/HH3C-VPN-PEER-MIB b/MIBS/comware/HH3C-VPN-PEER-MIB
new file mode 100644
index 0000000..232b6bd
--- /dev/null
+++ b/MIBS/comware/HH3C-VPN-PEER-MIB
@@ -0,0 +1,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