LTE IMSI filter

Hello,

Is it possible to filter IMSI last 8 digits?

You can use % as the wildcard.

So PCI: %66114574
or
PCI: 4283399%

Thank you, I tried both dont work…

Did you add PCI as a filter option?

I added below in Filters config. But can’t use your suggested “%”, only full IMSI input working.

Anything wrong?

  • label: “‘Serial number’”
    parameter: DeviceID.SerialNumber
    type: “‘string’”
  • label: “‘Product class’”
    parameter: DeviceID.ProductClass
    type: “‘string’”
  • label: “‘IMEI’”
    parameter: InternetGatewayDevice.DeviceInfo.IMEI
    type: “‘string’”
    filter:
    _value: true
    match: exact
  • label: “‘IMSI’”
    parameter: InternetGatewayDevice.DeviceInfo.IMSI
    type: “‘string’”
    filter:
    _value: true
    match: exact
  • label: “‘PCI’”
    parameter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.PCI
    type: “‘string’”
    filter:
    _value: true
    match: exact
  • label: “‘WAN IP’”
    parameter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.ExternalIPAddress
    type: “‘string’”
    filter:
    _value: true
    match: exact
  • label: “‘WAN IP2’”
    parameter: InternetGatewayDevice.WANDevice.2.WANConnectionDevice.1.WANIPConnection.1.ExternalIPAddress
    type: “‘string’”
    filter:
    _value: true
    match: exact
  • label: “‘WANIP MAC’”
    parameter: InternetGatewayDevice.WANDevice.1.WANConnectionDevice.1.WANIPConnection.1.MACAddress
    type: “‘string’”
    filter:
    _value: true
    match: exact
  • label: “‘Tag’”
    type: “‘tag’”

Her:

I have never used the “match: exact” option but it sounds like it would affect your partial filtering.
Can you remove it and retry?

removed match: exact, still empty result. any different match:?

I should have an LTE device that I can test with. Let me point it to my acs and get back to you.

This worked for me:

- label: "'IMSI'"
  parameter: InternetGatewayDevice.X_3GPPLTE_DeviceInfo.TerminalEquipment.IMSI
  type: "'string'"

Thank you, both PCI and IMSI working fine

Glad to hear it.