Get IMSI IP Mapping

Get IMSI IP Mapping Configuration

get

Returns the IMSI IP Mapping from the Edge, which associates IMSI with static UE IP addresses. The corresponding UE IP address will be assigned to the IMSI after a successful attach.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
edgeIpstring · enumRequired

The IP address of the edge

Possible values:
Responses
get
/v1/edge/{edgeIp}/imsiipmapping
GET /api/v1/edge/{edgeIp}/imsiipmapping HTTP/1.1
Host: https:/.monogoto.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Successful Response

{
  "imsi-ip-mapping": [
    {
      "imsi": "315010726282648",
      "ip": "192.168.100.100",
      "rat": "4G"
    },
    {
      "imsi": "315010006700037",
      "ip": "192.168.101.200",
      "rat": "5G"
    }
  ]
}

Last updated

Was this helpful?