summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-GRE-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-GRE-MIB
downloadmibs-main.tar.gz
mibs-main.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/comware/HH3C-GRE-MIB')
-rw-r--r--MIBS/comware/HH3C-GRE-MIB108
1 files changed, 108 insertions, 0 deletions
diff --git a/MIBS/comware/HH3C-GRE-MIB b/MIBS/comware/HH3C-GRE-MIB
new file mode 100644
index 0000000..78ad9a8
--- /dev/null
+++ b/MIBS/comware/HH3C-GRE-MIB
@@ -0,0 +1,108 @@
+-- =================================================================
+-- Copyright (C) 2005 New H3C Tech. Co., Ltd. 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
+-- =================================================================
+HH3C-GRE-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ hh3cCommon
+ FROM HH3C-OID-MIB
+ Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
+ FROM SNMPv2-SMI
+ ifIndex
+ FROM IF-MIB;
+
+hh3cGre MODULE-IDENTITY
+ LAST-UPDATED
+ "200506040000Z" -- June 4, 2005 at 00:00 GMT
+ 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
+ "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.
+ "
+ ::= { hh3cCommon 54 }
+
+ hh3cGreObjects OBJECT IDENTIFIER ::= { hh3cGre 1 }
+
+ hh3cGreTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF Hh3cGreEntry
+ 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.
+ "
+ ::= { hh3cGreObjects 1 }
+
+ hh3cGreEntry OBJECT-TYPE
+ SYNTAX Hh3cGreEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "The entry of hh3cGreTable
+ "
+ INDEX { ifIndex }
+ ::= { hh3cGreTable 1 }
+
+ Hh3cGreEntry ::= SEQUENCE {
+ hh3cGreKeyValue
+ Unsigned32,
+ hh3cGreKey
+ INTEGER,
+ hh3cGreChecksum
+ INTEGER
+ }
+ hh3cGreKeyValue OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "The value of GRE key
+ "
+ ::= { hh3cGreEntry 1 }
+
+ hh3cGreKey OBJECT-TYPE
+ SYNTAX INTEGER{
+ enable(1),
+ disable(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "The enable flag of GRE key
+ "
+ ::= { hh3cGreEntry 2 }
+
+ hh3cGreChecksum OBJECT-TYPE
+ SYNTAX INTEGER{
+ enable(1),
+ disable(2)
+ }
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "The enable flag of GRE Checksum
+ "
+ ::= { hh3cGreEntry 3 }
+
+END