March 28, 2026 MOBITELSMS Engineering 12 min read

Every time you make a phone call, send an SMS, or roam onto a foreign mobile network, an invisible signaling network carries the control messages that make it happen. This network is SS7, Signaling System No. 7, a set of protocols that has been the backbone of global telecommunications since the early 1980s. Despite the rise of IP-based alternatives, SS7 still carries the majority of the world's telephony signaling, and understanding it is essential for anyone working in telecom infrastructure.

What SS7 Does (and What It Does Not Do)

SS7 is a signaling protocol, not a voice transport protocol. It does not carry the actual audio of a phone call. Instead, it carries the control messages that set up, manage, and tear down calls. Think of it as the nervous system of the telephone network: the voice itself travels over separate circuits (TDM) or IP paths (VoIP), but the decisions about where to route calls, how to authenticate mobile subscribers, and how to deliver SMS messages are all made through SS7 signaling.

Before SS7, telephone signaling was "in-band," meaning the control tones traveled on the same circuit as the voice. This created security problems (phone phreaks could whistle tones to manipulate the network) and limited the types of services that could be offered. SS7 moved signaling to a completely separate network, enabling features like caller ID, call forwarding, toll-free numbers, local number portability, and eventually mobile telephony.

The SS7 Protocol Stack

SS7 is organized into layers, similar in concept to the OSI model but predating it. Each layer provides specific functionality:

MTP (Message Transfer Part) -- Layers 1-3

MTP provides reliable transport of signaling messages between network nodes. It has three sub-layers:

SCCP (Signaling Connection Control Part)

SCCP sits above MTP3 and provides two critical capabilities that MTP3 lacks: Global Title (GT) addressing and connection-oriented signaling.

While MTP3 routes based on point codes, many applications need to address messages using phone numbers or other identifiers. SCCP translates these "Global Titles" (essentially E.164 phone numbers or IMSI-based addresses) into point codes through a process called Global Title Translation (GTT). This is analogous to DNS in the IP world: the application says "deliver this to IMSI 310260..." and SCCP figures out which point code handles that subscriber.

Global Title Translation Example:
  Application says: "Send to GT +1-212-555-1234"
  SCCP translates: GT +1-212-555 → Point Code 1-234-5 (NYC MSC)
  MTP3 routes: Message → Point Code 1-234-5

TCAP (Transaction Capabilities Application Part)

TCAP provides a transaction framework for request-response operations. It allows an application to send a query and receive a response, managing the association between requests and responses through transaction IDs. TCAP is used by higher-layer protocols like MAP and CAP that need dialogue-based communication rather than simple one-shot messages.

ISUP (ISDN User Part)

ISUP is the protocol responsible for setting up and tearing down voice calls on the PSTN. When you dial a phone number, ISUP messages flow between the switches involved in the call:

  1. IAM (Initial Address Message): Sent from the originating switch to the next switch in the path. Contains the called number, calling number, call type, and circuit identification code (CIC) identifying which voice circuit to use.
  2. ACM (Address Complete Message): Sent back when the destination switch has identified the called party and is ringing the phone. This triggers the ringback tone for the caller.
  3. ANM (Answer Message): Sent when the called party picks up. This is the billing trigger -- the call timer starts when ANM is received.
  4. REL (Release Message): Sent when either party hangs up, with a cause code indicating why the call ended.
  5. RLC (Release Complete): Confirms that the circuit has been released and is available for reuse.
Voice Call Setup (ISUP):

Caller's Switch ----IAM----> Transit Switch ----IAM----> Called Switch
               <---ACM-----                 <---ACM-----  (ringing)
               <---ANM-----                 <---ANM-----  (answered)
                    ... voice call in progress ...
               ----REL---->                  ----REL---->  (hangup)
               <---RLC-----                 <---RLC-----  (circuit free)

MAP (Mobile Application Part)

MAP is the protocol that makes mobile telephony possible. It carries all the signaling between mobile network elements -- HLR, VLR, MSC, SMSC -- that enables subscriber mobility, authentication, and SMS delivery. Key MAP operations include:

SMS delivery is one of the most common MAP operations. When you send an SMS, your phone transmits it to the MSC, which forwards it to the SMSC (Short Message Service Center) using MAP_MO_FORWARD_SM. The SMSC then queries the HLR to find the recipient's current MSC/VLR, and delivers the message using MAP_MT_FORWARD_SM. If the recipient is unreachable, the HLR sets a "message waiting" flag and notifies the SMSC when the subscriber becomes available. For a deeper dive into how roaming ties into this, see our guide on how mobile roaming works.

Signaling Points: SSP, STP, SCP

Every node in the SS7 network is classified as one of three types:

Point Codes and Addressing

Every signaling point has a unique point code, which is its address in the SS7 network. Point code formats differ by region:

Point codes are analogous to IP addresses in the internet. MTP3 routing tables at each node specify which outgoing link to use for each destination point code, similar to IP routing tables. The key difference is that SS7 networks are much smaller than the internet (thousands of nodes, not billions) and are privately managed, so routing is relatively static.

SIGTRAN: SS7 over IP

As the telecommunications industry migrated to IP infrastructure, carrying SS7 signaling over traditional TDM links became increasingly impractical. SIGTRAN (Signaling Transport) is a set of IETF protocols that transport SS7 signaling messages over IP networks using SCTP (Stream Control Transmission Protocol) as the transport layer.

SIGTRAN defines several adaptation layers, each corresponding to a different level of the SS7 stack:

Traditional SS7:        SIGTRAN:
  MAP / CAP              MAP / CAP
  TCAP                   TCAP
  SCCP                   SCCP
  MTP3                   M3UA
  MTP2                   SCTP
  MTP1 (E1/T1)          IP

SCTP was chosen over TCP for its multi-homing and multi-streaming capabilities. An SCTP association can span multiple IP addresses on each endpoint, providing automatic failover if one path fails. This matches the reliability expectations of telecom signaling, where five-nines availability (99.999%) is the standard.

MOBITELSMS provides a full SS7/SIGTRAN gateway implementation supporting M3UA, SCCP, TCAP, MAP, and ISUP, enabling IP-based applications to interwork with traditional SS7 networks for services like SMS termination, HLR lookup, and number portability queries.

SS7 Security Concerns

SS7 was designed in an era when the signaling network was a closed system accessible only to trusted telephone companies. There was no concept of authentication or encryption at the protocol level, because physical access to the signaling network was considered sufficient security. This assumption no longer holds.

The migration to SIGTRAN and the growth of the GRX/IPX interconnect network has expanded the number of entities with access to SS7 signaling. Security researchers have demonstrated several attack categories:

Mitigation Approaches

The industry has developed several defenses:

SS7 in the Modern Telecom Landscape

Despite being over 40 years old, SS7 is not going away. It remains essential for several reasons:

The trajectory is clear: new deployments use Diameter and HTTP/2-based protocols, but SS7 will coexist for at least another decade as legacy networks are gradually retired. For telecom engineers, understanding SS7 remains a fundamental skill, and for platform providers, supporting SS7 interconnection is a practical necessity.

MOBITELSMS supports the full SS7/SIGTRAN protocol stack through our SS7 gateway platform, providing MAP, ISUP, and CAMEL connectivity for operators transitioning between legacy and next-generation networks.