For the complete documentation index, see llms.txt. This page is also available as Markdown.

Post IMSI IP Mapping

Create IMSI IP Mapping Configuration

post

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 · enumRequired

The IP address of the edge

Possible values:
Body
Responses
200

OK

text/plain
stringOptional
post/v1/edge/{edgeIp}/imsiipmapping
POST /api/v1/edge/{edgeIp}/imsiipmapping HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 272

{
  "imsi-ip-mapping": [
    {
      "imsi": "315010726282648",
      "rat": "4G",
      "apn-ip-mapping": [
        {
          "apn": "data.mono",
          "ip": "192.168.101.100"
        }
      ]
    },
    {
      "imsi": "315010006700037",
      "rat": "5G",
      "apn-ip-mapping": [
        {
          "apn": "data.mono",
          "ip": "192.168.102.100"
        },
        {
          "apn": "default.data.mono",
          "ip": "192.168.103.100"
        }
      ]
    }
  ]
}
IMSI-IP Mapping in 4G Core got inserted successfully. IMSI-IP Mapping in 5G Core got inserted successfully

Last updated

Was this helpful?