summaryrefslogtreecommitdiff
path: root/MIBS/gemds/MDS-SERVICE-GPS-MIB
blob: 40df7a18981419e46388bf1f15350dcea623b080 (plain)
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
MDS-SERVICE-GPS-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY,
    OBJECT-TYPE,
    Unsigned32
        FROM SNMPv2-SMI
    DisplayString,
    TruthValue
        FROM SNMPv2-TC
    MODULE-COMPLIANCE,
    OBJECT-GROUP
        FROM SNMPv2-CONF
    mdsServices
        FROM MDS-ORBIT-SMI-MIB;

mdsGpsMIB MODULE-IDENTITY
    LAST-UPDATED "201805160000Z" -- May 16, 2018
    ORGANIZATION 
        "GE MDS LLC
        http://www.gemds.com"
    CONTACT-INFO
        "T 1-800-474-0694 (Toll Free in North America)
         T 585-242-9600
         F 585-242-9620

         175 Science Parkway
         Rochester, New York 14620
         USA"
    DESCRIPTION
        "The MIB module to describe the system."
    REVISION      "201805160000Z"
    DESCRIPTION
        "Updated conformance statments based on smilint."
    REVISION      "201606060000Z"
    DESCRIPTION
        "Add Satellite status table."
    REVISION      "201501290000Z"
    DESCRIPTION
        "Initial version."
    ::= { mdsServices 12 }

mGpsMIBObjects OBJECT IDENTIFIER
    ::= { mdsGpsMIB 1 }

mGpsConfig OBJECT IDENTIFIER
    ::= { mGpsMIBObjects 1 }

mGpsStatus OBJECT IDENTIFIER
    ::= { mGpsMIBObjects 2 }

-- Textual Conventions

-- Gps Status Objects
mGpsStatusFixMode OBJECT-TYPE
    SYNTAX      INTEGER {nofix(0),a2dfix(1), a3dfix(2)}
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Fix mode"
    DEFVAL { nofix }
    ::= { mGpsStatus 1 }

mGpsStatusTime OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "UTC Time"
    ::= { mGpsStatus 2 }

mGpsStatusLatitude OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Latitude"
    ::= { mGpsStatus 3 }

mGpsStatusLongitude OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Longitude"
    ::= { mGpsStatus 4 }

mGpsStatusAltitude OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Altitude (ft)"
    ::= { mGpsStatus 5 }

mGpsStatusSpeed OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Speed (mph)"
    ::= { mGpsStatus 6 }

mGpsStatusHeading OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "True Heading (degree)"
    ::= { mGpsStatus 7 }

mGpsStatusSatellitesVisible OBJECT-TYPE
    SYNTAX      Unsigned32 (0 .. 255)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of satellites currently visible"
    ::= { mGpsStatus 8 }

mGpsStatusSatellitesUsed OBJECT-TYPE
    SYNTAX      Unsigned32 (0 .. 255)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The number of satellites being used for GPS fix."
    ::= { mGpsStatus 9 }

mGpsSatellitesTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF MGpsSatellitesEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
      "The list of all visible satellites, and their status"
    ::= { mGpsStatus 10 }

mGpsSatellitesEntry OBJECT-TYPE
    SYNTAX      MGpsSatellitesEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
      "Each entry contains information about a visible satellite"
    INDEX   { mGpsSatellitesPrn }
    ::= { mGpsSatellitesTable 1 }

MGpsSatellitesEntry ::=
    SEQUENCE {
        mGpsSatellitesPrn Unsigned32,
        mGpsSatellitesUsed TruthValue,
        mGpsSatellitesElevation Unsigned32,
        mGpsSatellitesAzimuth Unsigned32,
        mGpsSatellitesSnr Unsigned32
    }

mGpsSatellitesPrn OBJECT-TYPE
    SYNTAX      Unsigned32 (0 .. 65535)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "PRN (pseudorandom noise code) of satellite."
    ::= { mGpsSatellitesEntry 1 }

mGpsSatellitesUsed OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "True if this satellite is used in current GPS fix."
    ::= { mGpsSatellitesEntry 2 }

mGpsSatellitesElevation OBJECT-TYPE
    SYNTAX      Unsigned32 (0 .. 65535)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Elevation of satellite."
    ::= { mGpsSatellitesEntry 3 }

mGpsSatellitesAzimuth OBJECT-TYPE
    SYNTAX      Unsigned32 (0 .. 65535)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Azimuth of satellite."
    ::= { mGpsSatellitesEntry 4 }

mGpsSatellitesSnr OBJECT-TYPE
    SYNTAX      Unsigned32 (0 .. 65535)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Signal-to-Noise radio of satellite."
    ::= { mGpsSatellitesEntry 5 }

-- Gps Sources Objects
mGpsSourcesTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF MGpsSourcesEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
      "This table contains gps data sources in the system."
    ::= { mGpsMIBObjects 3 }

mGpsSourcesEntry OBJECT-TYPE
    SYNTAX      MGpsSourcesEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
      "Each entry contains information about the gps data source."
    INDEX   { mGpsSourceName }
    ::= { mGpsSourcesTable 1 }

MGpsSourcesEntry ::=
    SEQUENCE {
        mGpsSourceName DisplayString,
        mGpsSourceDevice OCTET STRING
    }

mGpsSourceName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "GPS data source name."
    ::= { mGpsSourcesEntry 1 }

mGpsSourceDevice OBJECT-TYPE
    SYNTAX      OCTET STRING
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "GPS data source device."
    ::= { mGpsSourcesEntry 2 }

-- conformance information
mdsGpsMIBConformance   OBJECT IDENTIFIER ::= { mdsGpsMIB 3 }
mdsGpsMIBCompliances OBJECT IDENTIFIER ::= { mdsGpsMIBConformance 1 }
mdsGpsMIBGroups      OBJECT IDENTIFIER ::= { mdsGpsMIBConformance 2 }

-- compliance statements
mGpsCompliance MODULE-COMPLIANCE
    STATUS  current
    DESCRIPTION
            "The compliance statement for SNMP entities that 
            implement the MDS-GPS-MIB."
    MODULE  -- this module
        MANDATORY-GROUPS {
            mGpsStatusGroup,
            mGpsSourcesGroup
        }
    ::= { mdsGpsMIBCompliances 1 }

-- units of conformance
mGpsStatusGroup OBJECT-GROUP
    OBJECTS {
        mGpsStatusFixMode,
        mGpsStatusTime,
        mGpsStatusLatitude,
        mGpsStatusLongitude,
        mGpsStatusAltitude,
        mGpsStatusSpeed,
        mGpsStatusHeading,
        mGpsStatusSatellitesVisible,
        mGpsStatusSatellitesUsed,
        mGpsSatellitesUsed ,
        mGpsSatellitesElevation ,
        mGpsSatellitesAzimuth ,
        mGpsSatellitesSnr
    }
    STATUS  current
    DESCRIPTION
        "A collection of objects providing information about
        orbit GPS data status."
    ::= { mdsGpsMIBGroups 1 }

mGpsSourcesGroup OBJECT-GROUP
    OBJECTS {
        mGpsSourceDevice
    }
    STATUS  current
    DESCRIPTION
        "A collection of objects providing information about
        orbit GPS data sources."
    ::= { mdsGpsMIBGroups 2 }

END