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
131
132
133
134
135
136
137
138
139
140
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
|