Navigating WebRTC's Inner Realm

Aman Kanojiya
5 min readJun 28, 2023

“Exploring the Power of STUN, TURN, ICE Candidates, and SDP in Peer-to-Peer Communication”

Our previous blog posts explored WebRTC's ability to facilitate seamless real-time communication. Today, we venture even further into the intricacies of WebRTC, shedding light on crucial components such as STUN, TURN, ICE candidates, and SDP (Session Description Protocol), which helps us to deal with NAT and related systems. Join us as we unravel the magic behind these technologies and their indispensable roles in enabling peer-to-peer communication. This blog may be longer but will ultimately create the base knowledge.

Let's start with understanding STUN and TURN

STUN ( Session Traversal Utilities around NAT)

It is a protocol used in WebRTC to discover a device's public IP address and port hidden behind a NAT (Network Address Translation) router or firewall. NAT allows multiple devices on a private network to share a single public IP address, which helps conserve IP addresses. However, this introduces a challenge when establishing direct communication between devices.

STUN servers act as intermediaries between devices and help overcome this challenge. When a device wants to communicate with another apparatus, it sends a STUN request to a STUN server. The server responds with the device's public IP address and port as seen from the outside network. This information allows devices to determine how to establish a direct peer-to-peer connection, bypassing the NAT and enabling real-time communication.

Simplified Explanation: Imagine you are inside a house with multiple rooms, and each room has a person using a phone. When someone from one room wants to talk directly to someone in another room, they face a problem because each room has its extension number, and people from outside the house only know the main phone number. STUN servers act as messengers that help the callers discover their room numbers and connect directly, bypassing the main phone number.

TURN ( Traversal Using Relays around NAT )

It is a relay server used in WebRTC to facilitate communication between devices when direct peer-to-peer connections are impossible due to restrictive network configurations. Devices may sometimes be behind symmetric NATs or firewalls that prevent direct contact.

When direct communication fails, devices can utilize TURN servers as intermediaries. TURN servers relay media and data packets between devices as a bridge. When a device sends data to another device, it is first sent to the TURN server, which then forwards it to the intended recipient. This ensures that communication can still occur, although with the trade-off of potential increased latency due to the involvement of the TURN server.

Simplified Explanation: Think of TURN servers as a post office or a messenger that helps deliver messages between two people who cannot directly reach each other. Imagine two friends trying to communicate, but there is a big wall between them. The TURN server acts as a mediator, receiving messages from one friend and delivering them to the other. This way, they can still exchange letters through the server even if they can't communicate directly.

In WebRTC, devices use STUN servers to find their public "room numbers" (IP addresses and ports) when they are hidden behind a router or firewall. This enables them to establish direct communication without relying on intermediate servers. But TURN servers come into play if the device cannot establish a direct connection due to network restrictions. They act as intermediaries, relaying communication between devices hidden behind firewalls or restrictive NAT configurations. While this ensures communication, it may introduce some additional delay.

ICE ( Interactive Connectivity Establishment — ICE Candidate)

as in the previous flow, we learned that Alise and Bob collect the ways others can connect; each way is known as ICE Candidate or ICE candidates are network addresses and transport protocols collected and exchanged during the WebRTC signaling process. Local candidates represent the device's private IP address and port within the local network. In contrast, server-reflexive candidates are obtained through STUN servers and represent the public IP address and port. ICE candidate prioritization: Devices evaluate and prioritize ICE candidates based on IP address type, transport protocol, and network conditions to choose the most suitable candidate pair for establishing a direct connection.

All collected addresses are then sent to the remote peer via the SDP ( Session Description Protocol ) standardized format used by WebRTC for exchanging session-related information between peers. SDP allows devices to negotiate the parameters of a communication session, such as audio and video codecs, network addresses, and transport protocols. Peers exchange SDP messages containing session descriptions, including their capabilities, preferences, and requirements, to establish compatibility and agree on the communication parameters.

Alice:
v=0
o=- 2890844526 2890844526 IN IP4 192.168.0.101
s=-
t=0 0
a=group:BUNDLE audio video
m=audio 5004 RTP/SAVPF 111 103 104 9 0 8 106 105 13 126
c=IN IP4 192.168.0.101
a=rtpmap:111 opus/48000/2
a=rtpmap:103 ISAC/16000
a=rtpmap:104 ISAC/32000
a=rtpmap:9 G722/8000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=rtcp-mux
a=sendrecv
Bob:
v=0
o=- 2890844527 2890844527 IN IP4 192.168.0.102
s=-
t=0 0
a=group:BUNDLE audio video
m=audio 6004 RTP/SAVPF 111 103 104 9 0 8 106 105 13 126
c=IN IP4 192.168.0.102
a=rtpmap:111 opus/48000/2
a=rtpmap:103 ISAC/16000
a=rtpmap:104 ISAC/32000
a=rtpmap:9 G722/8000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=rtcp-mux
a=sendrecv

( Explanation is not added if you want can comment down )

Conclusion: STUN, TURN, ICE candidates, and SDP are fundamental components of WebRTC that enable seamless peer-to-peer communication.STUN assists in NAT traversal, TURN acts as a relay when direct connections are impossible, ICE candidates facilitate the optimal path selection, and SDP allows for negotiation and agreement on session parameters. Together, these technologies overcome the challenges posed by NAT, firewall restrictions, and compatibility issues, empowering WebRTC to deliver exceptional real-time communication experiences.

In the next blog, we will discuss the final flow and get started with the example, which you can test on your own to get a feel of how the whole architecture is designed.

Let’s keep the conversation going! Follow me on social media to ask questions and continue learning. You can also leave your comments and questions below. Together, we can dive deeper into the world of WebRTC and explore its endless possibilities.

Instagram || Twitter || Github

--

--

Aman Kanojiya
Aman Kanojiya

Written by Aman Kanojiya

IIT Dhanbad 24 | Fullstack Developer | DevOps | Designer | Learner | web3

Responses (1)