carriers-sip
One-way audio
One-way audio is when one person on a call can be heard but cannot hear the other, almost always a problem with how the audio stream is routed.
One-way audio is exactly what it sounds like: one person on the call can be heard, but cannot hear the other side. The call connects, both parties think it worked, and then one of them is talking into silence. It is one of the most common and most confusing voice problems, because the signaling looks completely healthy — the trouble is entirely in the media path.
To understand it, separate two things. The SIP (Session Initiation Protocol) signaling sets up the call, and a separate stream carries the actual voice using the Real-time Transport Protocol, or RTP. One-way audio means the RTP packets are flowing in one direction but not the other. The most frequent cause is a firewall or router that maps internal addresses, a situation handled by NAT traversal. If that is misconfigured, audio leaves your network but the return stream gets dropped at the edge.
To diagnose, first take a SIP trace to confirm the signaling really did succeed, then look at where the RTP is supposed to go. Check that the public address advertised in the call matches the address that can actually receive packets. Mismatched Codec settings can also cause silence, and heavy Packet loss can make one direction sound like it cut out entirely.
The practical fix is usually about addresses and ports. Make sure your server knows its real public IP, that the RTP port range is open both ways in the firewall, and that any NAT settings reflect your actual network. Get those right and one-way audio almost always disappears, because the return voice stream finally has a path home.
Related terms
Codec
The method that compresses and decompresses voice audio for a VoIP call, trading off between sound quality and how much network bandwidth each call uses.
NAT traversal
NAT traversal is the set of tricks that lets a phone behind a home or office router send and receive VoIP audio across the wider internet.
Packet loss
Packet loss happens when voice data packets fail to reach their destination, leaving gaps that sound like clipped words or robotic, broken audio.
RTP
Real-time Transport Protocol, the stream of small packets that carries the actual voice audio of a VoIP call between the two endpoints.
SIP (Session Initiation Protocol)
The standard signaling protocol that sets up, manages, and ends internet phone calls — how VICIdial talks to phones and carriers.
SIP trace
A SIP trace is a captured log of the signaling messages exchanged during a call, used to see exactly where and why a call failed.