diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/transition/TN-CONFIG-MIB | |
| download | mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip | |
Diffstat (limited to 'MIBS/transition/TN-CONFIG-MIB')
| -rw-r--r-- | MIBS/transition/TN-CONFIG-MIB | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/MIBS/transition/TN-CONFIG-MIB b/MIBS/transition/TN-CONFIG-MIB new file mode 100644 index 0000000..3e52097 --- /dev/null +++ b/MIBS/transition/TN-CONFIG-MIB @@ -0,0 +1,70 @@ +-- ***************************************************************** +-- TN-CONFIG-MIB.my : TN Configuration MIB +-- +-- Copyright (c) 2014 by Transition Networks, Inc. +-- All rights reserved. +-- +-- ************************************************************************************************* +-- + +TN-CONFIG-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + NOTIFICATION-TYPE, + OBJECT-TYPE + FROM SNMPv2-SMI + SnmpAdminString + FROM SNMP-FRAMEWORK-MIB + tnProducts + FROM TRANSITION-SMI; + +-- +-- main body +-- +tnConfigMIB MODULE-IDENTITY + LAST-UPDATED "201402080000Z" + ORGANIZATION "Transition Networks, Inc." + CONTACT-INFO + "Transition Networks + Technical Support + 10900 Red Circle Drive + Minnetonka, MN 55343 USA + Tel: +1-800-526-9267 + E-mail: techsupport@transition.com + " + DESCRIPTION + "The MIB module for general device configuration." + REVISION "201402080000Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { tnProducts 11 } + +tnConfigNotifications OBJECT IDENTIFIER ::= { tnConfigMIB 0 } +tnConfigObjects OBJECT IDENTIFIER ::= { tnConfigMIB 1 } + +tnConfigModuleName OBJECT-TYPE + SYNTAX SnmpAdminString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The configuration module name on the device." + ::= { tnConfigObjects 1 } + + +-- ****************************************************************** +-- NOTIFICATIONS (TRAPS) +-- These notifications will be sent to the management entity +-- ****************************************************************** + +tnConfigChangeNotification NOTIFICATION-TYPE + OBJECTS { + tnConfigModuleName + } + STATUS current + DESCRIPTION + "A tnConfigChangeNotification trap is sent when the device configuration is changed. + The module name for the configuration is indicated by the included value of + configModuleName." + ::= { tnConfigNotifications 1 } +END |