summaryrefslogtreecommitdiff
path: root/MIBS/junos/JUNIPER-MOBILE-GATEWAYS
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/junos/JUNIPER-MOBILE-GATEWAYS
downloadmibs-main.tar.gz
mibs-main.zip
Initial commitHEADmain
Diffstat (limited to 'MIBS/junos/JUNIPER-MOBILE-GATEWAYS')
-rw-r--r--MIBS/junos/JUNIPER-MOBILE-GATEWAYS101
1 files changed, 101 insertions, 0 deletions
diff --git a/MIBS/junos/JUNIPER-MOBILE-GATEWAYS b/MIBS/junos/JUNIPER-MOBILE-GATEWAYS
new file mode 100644
index 0000000..e4740d2
--- /dev/null
+++ b/MIBS/junos/JUNIPER-MOBILE-GATEWAYS
@@ -0,0 +1,101 @@
+--
+-- Juniper Mobile Gateways objects MIB.
+--
+-- Copyright (c) 2011-2013, Juniper Networks, Inc.
+-- All rights reserved.
+--
+-- The contents of this document are subject to change without notice.
+--
+
+JUNIPER-MOBILE-GATEWAYS DEFINITIONS ::= BEGIN
+
+IMPORTS
+ Counter64, IpAddress, Integer32, Counter32, Unsigned32,
+ NOTIFICATION-TYPE, MODULE-IDENTITY,OBJECT-TYPE
+ FROM SNMPv2-SMI
+
+ TEXTUAL-CONVENTION, DisplayString, RowStatus, TruthValue
+ FROM SNMPv2-TC
+
+ Ipv6AddressPrefix, Ipv6AddressIfIdentifier, Ipv6Address
+ FROM IPV6-TC
+
+ InetAddressType, InetAddress, InetPortNumber, InetAddressPrefixLength
+ FROM INET-ADDRESS-MIB
+
+ EnabledStatus
+ FROM JUNIPER-MIMSTP-MIB
+
+ jnxMobileGatewayMibRoot
+ FROM JUNIPER-SMI;
+
+--
+-- This will be used as a root for MIBs common for both PGW and SGW.
+--
+
+jnxMobileGateways MODULE-IDENTITY
+ LAST-UPDATED "201101031200Z" -- Jan 03, 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 Gateways"
+ REVISION "201101031200Z" -- Jan 03, 2011, 12:00:00
+ DESCRIPTION "Initial version"
+
+ ::= { jnxMobileGatewayMibRoot 4 }
+
+jnxMbgGwIndexTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF JnxMbgGwIndexEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Each entry corresponds to a mobile gateway "
+ ::= { jnxMobileGateways 1 }
+
+jnxMbgGwIndexEntry OBJECT-TYPE
+ SYNTAX JnxMbgGwIndexEntry
+ MAX-ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "A specification of the mobile gateway"
+ INDEX { jnxMbgGwIndex }
+
+ ::= { jnxMbgGwIndexTable 1}
+
+JnxMbgGwIndexEntry ::= SEQUENCE {
+ jnxMbgGwIndex Unsigned32,
+ jnxMbgGwName DisplayString,
+ jnxMbgGwType DisplayString
+}
+
+jnxMbgGwIndex OBJECT-TYPE
+ SYNTAX Unsigned32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Gateway Index."
+ ::= { jnxMbgGwIndexEntry 1 }
+
+jnxMbgGwName OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Gateway Name."
+ ::= { jnxMbgGwIndexEntry 2 }
+
+jnxMbgGwType OBJECT-TYPE
+ SYNTAX DisplayString
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "Gateway type: PGW/SGW."
+ ::= { jnxMbgGwIndexEntry 3 }
+
+
+END