This protocol is used as signalling in trunks between telephone exchanges to establish and release calls.
ISUP is standardized by [ITU-T](/ITU-T) in Q.761 to Q.769. There are several national variants as well.
[BICC](/BICC)(Bearer Independent Call Control), defined by Q.1901 and annexes, is an extension of ISUP.
## History
ISUP supercedes TUP (Telephony User Part) as the standard for call control between telephone exchanges. Its first deployments date back to the early 80's, It is still used by most exchanges. BICC, ISUP's successor and extension should replace this protocol as Telephone Operators migrate from TDM links ([E1](/E1)/[T1](/T1)) to Packet Based systems (mainly [IP](/IP) and [ATM](/ATM)).
## Protocol dependencies
-[MTP3](/MTP3): Typically, ISUP uses [MTP3](/MTP3) as its transport protocol. The service indicator ISUP uses is 5.
## Example traffic
```
1 0.000000 10.28.6.42 -> 10.28.6.44 ISUP (ITU) IAM (CIC 213)
.00. .... = Pass on not possible indicator: Release call (0x00)
1... .... = Extension indicator: last octet
End of optional parameters (0)
```
## Wireshark
The ISUP dissector is fully functional
## Preference Settings
The only preference is "Show CIC in info column" a Boolean used to show the CIC (channel ID) to which the message is referred.
## Example capture file
-[SampleCaptures/isup.cap](uploads/__moin_import__/attachments/SampleCaptures/isup.cap) a single call's signalling sequence using ISUP/MTP3/M3UA/SCTP/IP ( Note that this trace is a M3UA draft 6 capture. You must set your M3UA preferences to Draft 6 by selecting Edit -\>Preferences -\> Protocols -\>M3UA -\> Draft 6 )
## Display Filter
A complete list of ISUP display filter fields can be found in the [display filter reference](http://www.wireshark.org/docs/dfref/i/isup)
Show only the ISUP traffic:
```
isup
```
## Capture Filter
You cannot directly filter ISUP packets while capturing. However, in case ISUP runs over MTP3/M3UA/SCTP/IP you could filter SCTP traffic using
```
ip proto 0x84
```
or, with newer versions of libpcap/WinPcap,
```
ip proto sctp
```
.
## External links
-<http://www.itu.int> ITU - International Telecommunication Union
## Discussion
---
Imported from https://wiki.wireshark.org/Protocols/isup on 2020-08-11 23:20:28 UTC