first commit

This commit is contained in:
smart
2025-12-05 21:28:39 +08:00
commit e0bc2069e0
419 changed files with 202895 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
GDC-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, enterprises
FROM SNMPv2-SMI
TruthValue, DisplayString
FROM SNMPv2-TC;
gdc MODULE-IDENTITY
LAST-UPDATED "200707171800Z"
ORGANIZATION
"GDC Technology Ltd"
CONTACT-INFO
" GDC Support
Email: support@gdc-tech.com"
DESCRIPTION
"The MIB module for all information related to GDC products"
::= { enterprises 28713 }
gdcObjectGroups OBJECT IDENTIFIER ::= { gdc 2 }
gdcNotifications OBJECT IDENTIFIER ::= { gdc 3 }
notificationElements OBJECT IDENTIFIER ::= { gdcNotifications 1 }
eventType OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The severity of the notification"
::= { notificationElements 1 }
eventDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The description of the notification"
::= { notificationElements 2 }
eventReference OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The OID entry related to the notification"
::= { notificationElements 3 }
notificationElementsGroup OBJECT-GROUP
OBJECTS { eventType, eventDescription, eventReference }
STATUS current
DESCRIPTION
"The collection of objects that provide information sent along with a notification message"
::= { gdcNotifications 2 }
END