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/junos/JUNIPER-MOBILE-GATEWAY-RMPS-MIB | |
| download | mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip | |
Diffstat (limited to 'MIBS/junos/JUNIPER-MOBILE-GATEWAY-RMPS-MIB')
| -rw-r--r-- | MIBS/junos/JUNIPER-MOBILE-GATEWAY-RMPS-MIB | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/MIBS/junos/JUNIPER-MOBILE-GATEWAY-RMPS-MIB b/MIBS/junos/JUNIPER-MOBILE-GATEWAY-RMPS-MIB new file mode 100644 index 0000000..3e9e1a9 --- /dev/null +++ b/MIBS/junos/JUNIPER-MOBILE-GATEWAY-RMPS-MIB @@ -0,0 +1,141 @@ +-- +-- Juniper Mobile Gateway Resource Manager MIB. +-- +-- Copyright (c) 2010-2013, Juniper Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + +JUNIPER-MOBILE-GATEWAY-RMPS-MIB DEFINITIONS ::= BEGIN + +IMPORTS + Counter64, Integer32, + NOTIFICATION-TYPE, MODULE-IDENTITY, OBJECT-TYPE + FROM SNMPv2-SMI + + TEXTUAL-CONVENTION, DisplayString + FROM SNMPv2-TC + + InetAddressType, InetAddress, InetPortNumber + FROM INET-ADDRESS-MIB + + jnxMbgGwName FROM JUNIPER-MOBILE-GATEWAYS + + jnxMobileGatewayMibRoot + FROM JUNIPER-SMI; + +jnxMbgRMPSMib MODULE-IDENTITY + LAST-UPDATED "201103231200Z" -- March 23, 2011, 12:00:00 UTC + ORGANIZATION "Juniper Networks, Inc." + CONTACT-INFO + "Juniper Technical Assistance Center + Juniper Networks, Inc. + 1133 Innovation Way + Sunnyvale, CA 94089 + E-mail: support@juniper.net" + DESCRIPTION + "This module defines objects pertaining to Mobile-Edge Resource Manager" + REVISION "201103231200Z" -- March 23, 2011, 12:00:00 + DESCRIPTION "Initial version" + + ::= { jnxMobileGatewayMibRoot 7 } + +jnxMbgRMPSNotifications OBJECT IDENTIFIER ::= + { jnxMbgRMPSMib 0 } +jnxMbgRMPSObjects OBJECT IDENTIFIER ::= + { jnxMbgRMPSMib 1 } + +jnxMbgRMPSNotificationVars OBJECT IDENTIFIER ::= + { jnxMbgRMPSObjects 5 } + +-- +-- Objects used in Notifications +-- + +jnxMbgRMPSClientIdentifier OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This identifies the Resource Manager client, in the form + ms-a/b/c or pfe-a/b/c, where <a> is the fpc slot, <b> is pic slot, + and <c> is the port." + ::= { jnxMbgRMPSNotificationVars 1 } + +jnxMbgRMPSClientStatus OBJECT-TYPE + SYNTAX INTEGER { + inService(0), + outOfService(1) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This specifies the status of a client registered with the Resource + Manager server." + ::= { jnxMbgRMPSNotificationVars 2 } + +jnxMbgRMPSServiceStatus OBJECT-TYPE + SYNTAX INTEGER { + up(0), + down(1) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This specifies the status of the Resource Manager server." + ::= { jnxMbgRMPSNotificationVars 3 } + +jnxMbgRMPSClientRedundancyRole OBJECT-TYPE + SYNTAX INTEGER { + invalid(0), + primary(1), + secondary(2), + standalone(3) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "This specifies the redundancy role of the Resource Manager client" + ::= { jnxMbgRMPSNotificationVars 4 } + +-- +-- Notifications +-- + +jnxMbgRMPSServiceStatusChange NOTIFICATION-TYPE + OBJECTS { jnxMbgRMPSServiceStatus } + STATUS current + DESCRIPTION + "This notification signifies that status of the Resource Manager + service changed." + ::= { jnxMbgRMPSNotifications 1 } + +jnxMbgRMPSClientStatusChange NOTIFICATION-TYPE + OBJECTS { jnxMbgRMPSClientIdentifier, jnxMbgRMPSClientStatus } + STATUS deprecated + DESCRIPTION + "This notification signifies that status of a Resource Manager + client changed." + ::= { jnxMbgRMPSNotifications 2 } + +jnxMbgRMPSClientInfo NOTIFICATION-TYPE + OBJECTS { jnxMbgRMPSClientIdentifier, jnxMbgRMPSClientStatus, + jnxMbgRMPSClientRedundancyRole } + STATUS deprecated + DESCRIPTION + "This notification signifies a change in status or redundancy role + of the specified Resource Manager client." + ::= { jnxMbgRMPSNotifications 3 } + +jnxMbgRMPSClientStateChange NOTIFICATION-TYPE + OBJECTS { jnxMbgGwName, + jnxMbgRMPSClientIdentifier, jnxMbgRMPSClientRedundancyRole, + jnxMbgRMPSClientStatus } + STATUS current + DESCRIPTION + "This notification signifies a change in status or redundancy role + of the specified Resource Manager client." + ::= { jnxMbgRMPSNotifications 4 } + +END |