Replies: 5 comments 8 replies
-
Oracle documentation gives the same three statuses. So I would suggest that the API mandatorily returns one of these statuses and, if that status is Should that additional information also be an enumerated type, or would a free text string be required? A free text string is more flexible, but also less useful, for an API, so I'd prefer to avoid that. |
Beta Was this translation helpful? Give feedback.
-
The API proposal says that fraud markers should indicate if the device is: |
Beta Was this translation helpful? Give feedback.
-
If we take into account the categories "allowed," "prohibited," and "tracked," which I believe, should include all potential scenarios then we can outline additional secondary status options as follows: Allowed
Prohibited
Tracked
|
Beta Was this translation helpful? Give feedback.
-
So not only do the GSMA have a device registry, they also have an Device Check API with which to query it. That seems awfully like an "IMEI Fraud" API to me - are CAMARA just re-inventing the wheel here? I uploaded a GSMA presentation on the service here. For reference, the different status categories they appear to register are: Block List (i.e. prohibited)
General List (i.e. tracked)
I don't have the specific implementation details, however. |
Beta Was this translation helpful? Give feedback.
-
Discussion:
The IMEI Fraud API indicates whether a mobile device has been reported lost or stolen. This information is accessible to mobile operators via a lookup to the Equipment Identity Register (EIR) database. The question is what values are available to IMEI Fraud API on fulfilling an API call. for which I provide the following information
The EIR procedure is defined in 3GPP TS 29.272 , section 6.2 'ME Identity Check Procedures', with further information on the expected responses in 3GPP TS 22.016 , section 4:
Three registers are defined, known as "allowed lists", "tracked lists" and "prohibited lists". The use of such lists is at the operators' discretion.
The allowed list is composed of all number series of equipment identities that are permitted for use.
The prohibited list contains all equipment identities that belong to equipment that need to be barred.
Besides the prohibited and allowed list, administrations have the possibility to use a tracked list. Equipment on the tracked list are not barred (unless on the prohibited list or not on the allowed list), but are tracked by the network (for evaluation or other purposes).
Hence supported values for the CAMARA IMEI Fraud API should be based on (or directly reflect) one of
allowed
|prohibited
|tracked
Informational note : the internal network lookup from MME to EIR over DIAMETER is defined in 3GPP TS 23.401
6.2.1.3 Detailed behaviour of the EIR
When receiving an ME Identity Check request, the EIR shall check whether the mobile equipment is known.
The EIR shall identify the mobile equipment based on the first 14 digits of the IMEI AVP; if a 15th digit is received in the IMEI AVP, this digit shall be ignored by the EIR.
Based on operator policies, the EIR may also use the Software-Version AVP, in addition to the first 14 digits of the IMEI AVP, to check the equipment identity against prohibited and tracking lists (see 3GPP TS 22.016 [13]).
If the mobile equipment identity is not known, a result code of
DIAMETER_ERROR_ EQUIPMENT_UNKNOWN
is returned.If it is known, the EIR shall return
DIAMETER_SUCCESS
with the equipment status.Beta Was this translation helpful? Give feedback.
All reactions