From 4f30a9c2f767f1eabc8629f9d931cc21960b84a4 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Tue, 16 Dec 2025 14:21:13 +0100 Subject: [PATCH] osmo-smdpp: ignore EID check in EUM cert Change-Id: Ia5baf42878f0e83b0d24350c5b265a8aadbe1a34 --- osmo-smdpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osmo-smdpp.py b/osmo-smdpp.py index d1d6fd75..a72df032 100755 --- a/osmo-smdpp.py +++ b/osmo-smdpp.py @@ -618,7 +618,7 @@ class SmDppHttpServer: # Verify EID is within permitted range of EUM certificate if not validate_eid_range(ss.eid, eum_cert): - raise ApiError('8.1.4', '6.1', 'EID is not within the permitted range of the EUM certificate') + logger.info('The EID is not within the permitted range of the EUM certificate, but lets ignore it!') # Verify that the serverChallenge attached to the ongoing RSP session matches the # serverChallenge returned by the eUICC. Otherwise, the SM-DP+ SHALL return a status code "eUICC -