Patch IMSI IP Mapping
Create a new IMSI IP Mapping. Provide the UE IP address corresponding to the IMSI. This IP will be utilized as the UE IP after attach.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
edgeIpstring · enumRequiredPossible values:
The IP address of the edge
Body
Responses
200
OK
text/plain
ResponsestringExample:
IMSI-IP Mapping in 4G Core got inserted successfully. IMSI-IP Mapping in 5G Core got inserted successfullypatch
/v1/edge/{edgeIp}/imsiipmappingPATCH /api/v1/edge/{edgeIp}/imsiipmapping HTTP/1.1
Host: https:/.monogoto.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 143
{
"imsi-ip-mapping": [
{
"imsi": "315010726282648",
"ip": "192.168.100.100",
"rat": "4G"
},
{
"imsi": "315010006700037",
"ip": "192.168.101.200",
"rat": "5G"
}
]
}200
OK
IMSI-IP Mapping in 4G Core got inserted successfully. IMSI-IP Mapping in 5G Core got inserted successfullyLast updated
Was this helpful?