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
Path parameters
edgeIpstring · enumRequired

The IP address of the edge

Possible values:
Responses
200
Successful Response
application/json
get
GET /api/v1/edge/{edgeIp}/imsiipmapping HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
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?