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

Options: Monogoto Edge IP
Responses
curl -L \
  --url 'https://api.monogoto.io/api/v1/edge/{edgeIp}/imsiipmapping' \
  --header 'Authorization: Bearer JWT'
{
  "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?