1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
--
-- Juniper Mobile Gateway Shared Memory IP pool objects 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-DHCP-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter64, Integer32, Unsigned32,
NOTIFICATION-TYPE, MODULE-IDENTITY, OBJECT-TYPE, IpAddress
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString, TruthValue
FROM SNMPv2-TC
InetAddressType, InetAddress, InetAddressPrefixLength
FROM INET-ADDRESS-MIB
jnxMobileGatewayMibRoot
FROM JUNIPER-SMI;
jnxMbgDhcpMib MODULE-IDENTITY
LAST-UPDATED "201103301200Z" -- Mar 30, 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
DHCP Services"
REVISION "201103301200Z" -- Mar 30, 2011, 12:00:00
DESCRIPTION "Initial version"
::= { jnxMobileGatewayMibRoot 8 }
jnxMbgDhcpNotifications OBJECT IDENTIFIER ::=
{ jnxMbgDhcpMib 0 }
jnxMbgDhcpObjects OBJECT IDENTIFIER ::=
{ jnxMbgDhcpMib 1 }
jnxMbgDhcpNotificationVars OBJECT IDENTIFIER ::=
{ jnxMbgDhcpObjects 1 }
--
-- Objects used in Notifications
--
jnxMbgDhcpServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP address of the dhcp server."
::= { jnxMbgDhcpNotificationVars 1 }
jnxMbgDhcpLogicalSystemName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The name which identifies the logical-system
on the mobile-gateway"
::= { jnxMbgDhcpNotificationVars 2 }
jnxMbgDhcpRoutingInstanceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The name which identifies the routing instance
on the mobile-gateway."
::= { jnxMbgDhcpNotificationVars 3 }
jnxMbgDhcpProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The configured dhcp profile name"
::= { jnxMbgDhcpNotificationVars 4 }
jnxMbgDhcpPoolName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The configured dhcp pool name with in a dhcp profile"
::= { jnxMbgDhcpNotificationVars 5 }
jnxMbgDhcpReachability OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"True - The server is reachable
False - The server is unreachable."
::= { jnxMbgDhcpNotificationVars 6 }
--
-- Notifications
--
jnxMbgDhcpServerReachability NOTIFICATION-TYPE
OBJECTS { jnxMbgDhcpServerIP,
jnxMbgDhcpLogicalSystemName,
jnxMbgDhcpRoutingInstanceName,
jnxMbgDhcpProfileName,
jnxMbgDhcpReachability }
STATUS current
DESCRIPTION
"This notification is used to notify if the given
dhcp server is reachable/unreachable."
::= { jnxMbgDhcpNotifications 1 }
jnxMbgDhcpAddrPoolExhaust NOTIFICATION-TYPE
OBJECTS { jnxMbgDhcpServerIP,
jnxMbgDhcpLogicalSystemName,
jnxMbgDhcpRoutingInstanceName,
jnxMbgDhcpProfileName,
jnxMbgDhcpPoolName }
STATUS current
DESCRIPTION
"This notification signifies that the addresses
from a given address pool have exhusted."
::= { jnxMbgDhcpNotifications 2 }
END
|