- Building Telephony Systems with OpenSIPS(Second Edition)
- Flavio E. Goncalves Bogdan-Andrei Iancu
- 501字
- 2021-08-20 10:43:10
Understanding the SIP architecture
SIP has borrowed many concepts from the HTTP protocol. It is a text-based protocol and uses the same Digest mechanism for authentication. You will also notice similar error messages such as 404 (Not found) and 301 (Redirect). As a protocol developed by the IETF, it uses an addressing scheme similar to Simple Mail Transfer Protocol (SMTP). The SIP address is just like an e-mail address. Another interesting feature used in SIP proxies are aliases; you can have multiple SIP addresses for a single subscriber such as the following:
johndoe@sipA.com
+554845678901@sipA.com
45678901@sipA.com
In the SIP architecture, there are user agents and servers. SIP uses a peer-to-peer distributed model with a signaling server. The signaling server only handles the SIP signaling, while the user agent clients and servers handle signaling and media. This is depicted in the following figure:

In the traditional SIP model, a user agent, usually a SIP phone, will start communicating with its SIP proxy, seen here as the outgoing proxy (or its home proxy) to send the call using a message known as INVITE.
The outgoing proxy will see that the call is directed to an outside domain. According to RFC 3263, it will seek the DNS server for the address of the target domain and resolve the IP address. Then, the outgoing proxy will forward the call to the SIP proxy responsible for DomainB.
The incoming proxy will query its location table for the IP address of agentB if its address was inserted in the location table by a previous registration process. It will forward the call to agentB.
After receiving the SIP message, agentB will have all the information required to establish an RTP session (usually audio) with agentA sending a 200 OK response. Once agentA receives the response from agentB, a two-way media can be established. A BYE request message can terminate the session.
Here, you can see the main components of the SIP architecture. The entire SIP signaling flows through the SIP proxy server. On the other hand, the media is transported by the RTP protocol and flows directly from one endpoint to another. Some of the components will be briefly explained in the sequence.

In the preceding image, you can see the following components:
- UAC (User Agent Client): A client or terminal that starts the SIP signaling
- UAS (User Agent Server): A server that responds to the SIP signaling coming from a UAC
- UA (User Agent): A logical entity that can act as both UAC or UAS, such as a SIP endpoint (IP phones, ATAs, softphones, and so on)
- Proxy Server: Receives requests from a UA and transfers to another SIP proxy if this specific terminal is not under its domain
- Redirect Server: Receives requests and responds to the caller with a message containing data about the destination (302, Moved Temporarily)
- Registrar Server: Provides the callee's contact addresses to the proxy and redirect servers
The proxy, redirect, and registrar servers are usually available physically in the same computer and software.
- iOS Game Programming Cookbook
- ExtGWT Rich Internet Application Cookbook
- Deploying Node.js
- 國際大學(xué)生程序設(shè)計競賽中山大學(xué)內(nèi)部選拔真題解(二)
- Ceph Cookbook
- 青少年美育趣味課堂:XMind思維導(dǎo)圖制作
- Interactive Applications Using Matplotlib
- Apache Mahout Clustering Designs
- Learning OpenStack Networking(Neutron)(Second Edition)
- 深度學(xué)習(xí):Java語言實現(xiàn)
- Visual Basic程序設(shè)計上機實驗教程
- 微服務(wù)從小白到專家:Spring Cloud和Kubernetes實戰(zhàn)
- Getting Started with Python and Raspberry Pi
- RESTful Web Clients:基于超媒體的可復(fù)用客戶端
- Learning TypeScript