0

Similar the question I asked before in enter link description here, I also need a Log pcap for MAP_OPEN_REQ and MAP_OPEN_DELIMITER_REQ messages.

As I found pcap files containing MAP/TCAP/SCCP protocols enter link description here and enter link description here, but there is no log Pcap for MAP_OPEN_REQ there.

How can I get that?

2 Answers2

1

You won't find MAP-OPEN and MAP-DELIMITER in the pcaps because they are not sent over the wire.

These are common services/primitives used between the MAP service-user and the MAP service-provider. See 3GPP 29.002 - "7 General on MAP services" and "7.5 General rules for mapping of services onto TC".

Vasil Velichkov
  • 1,236
  • 11
  • 17
  • Thanks for your responseI am going to implement a VLR for a 3G network. So, according to your response, it seems that it is enough to send "SEND AUTHENTICATION INFO REQUEST" message to HLR for retrieving Authentication vector for a user (and I do not need to run any additional procedure or send the MAP_OPEN_REQ message). It is worth noing that I have established an M3UA/SCTP connection to HLR. – ahmadi morteza ali Sep 30 '18 at 13:45
0

The inbound roamer IMSI is sent as a parameter in the MAP send authentication info request message from the VPLMN MSC/VLR to the HPLMN HLR as component portion of TCAP dialogue. Here TCAP is MAP provider to transfer MAP service user data to destination MAP service user which is the HLR. In order to send mentioned MAP operation and receive its response, you need to implement whole SS7 layers; TCAP, SCCP and M3UA. You can not send only MAP message without adding other SS7 layers to route your message to target HLR entity. I would propose using Sigtran Softstack solutions to address all issues at once.

Kemal Atik
  • 307
  • 3
  • 12