Voice over IP, or VoIP, is the technology that turns your voice into digital data packets and sends them over the internet instead of through traditional copper phone lines. Every call on WhatsApp, Zoom, Google Voice, or a business phone system running through the internet uses VoIP, whether or not the app advertises it by that name. The technology itself is decades old; what changed is that broadband got fast and cheap enough to make it the default way most calls happen now.
What separates a VoIP call that sounds like a landline from one that breaks up mid-sentence isn't the app you're using — it's specific, measurable network conditions: latency under roughly 150 milliseconds, jitter under 30 milliseconds, and packet loss under 1%. Miss those numbers and no amount of app-switching fixes it.
Most explanations of VoIP stop at "it's phone calls over the internet" and never reach the part that actually matters: why calls drop, why some networks block VoIP entirely without telling you, and what your own connection needs to look like for calls to sound clean.
This guide covers how VoIP actually moves your voice across a network, the real quality thresholds telecom engineers use, why NAT and firewalls cause most one-way-audio and dropped-call problems, and how to check whether your own network is ready before you commit to a VoIP-based phone system.
Almost every "my VoIP phones don't work" ticket I've ever looked into traces back to the same two things: nobody checked the actual network numbers before blaming the provider, and a firewall was quietly blocking the exact ports a SIP call needs. I've watched businesses replace a perfectly good phone system because nobody ran a port check first. The fix is almost always cheaper than the new contract.
What surprised newer engineers I've worked with most is that NAT — not the internet connection itself — causes the majority of one-way-audio complaints. SIP embeds IP addresses inside the actual message body, not just the packet header, so ordinary address translation can silently break a call before it even starts. I'll walk through exactly what to check, in the order that actually finds the problem.
Quick Answer: What Is Voice Over IP
VoIP converts your voice into data packets and sends them over the internet using protocols like SIP and RTP, instead of a traditional phone line. Good call quality needs under 150ms latency, under 30ms jitter, and under 1% packet loss. Check your own connection first with TrustMyIP's ping test.
What Is Voice Over IP? The Short Answer
Voice over IP is a set of technologies that convert analog voice into digital data, break that data into packets, and route those packets across an IP network — usually the internet — to reach the other caller, where the process reverses and turns the packets back into sound. This is fundamentally different from a traditional phone line, which holds open one dedicated physical circuit for the entire length of a call regardless of whether anyone is actually talking.
VoIP goes by several other names depending on context: IP telephony, internet telephony, broadband phone service. Voice over LTE (VoLTE) and Voice over New Radio (Vo5G) are cellular-specific variants of the same underlying idea, carrying calls over a mobile data network instead of the older circuit-switched cellular voice channel. If you've made a call on Skype, Microsoft Teams, Google Voice, or a modern office phone system, you've used VoIP.
Two things make VoIP fundamentally different to operate and troubleshoot compared to a landline: it depends entirely on your internet connection's real-time performance rather than a dedicated circuit, and it uses specific network ports and protocols that firewalls, routers, and NAT frequently interfere with. If you're unfamiliar with how devices find each other on a network in the first place, our explanation of how DNS resolves domain names to IPs covers the addressing fundamentals VoIP builds on. Both of the points above shape almost everything in the rest of this guide.
How VoIP Actually Works: From Your Voice to Data Packets
A VoIP call starts when a codec — short for coder-decoder — samples your voice and compresses it into digital data, then Session Initiation Protocol (SIP) handles setting up, managing, and tearing down the call itself, while Real-time Transport Protocol (RTP) carries the actual audio packets between the two endpoints. SIP is essentially the call's handshake and signaling layer; RTP is the pipe the voice data actually flows through once that handshake succeeds.
The codec you use directly determines both bandwidth use and audio quality. G.711 — the same encoding used across most of the traditional phone network — uses about 64 kbps of raw audio, roughly 85 kbps once you count packet headers, and delivers near-toll-quality sound with a Mean Opinion Score (MOS) around 4.2 on the industry's 1-to-5 quality scale. G.729 compresses that same audio down to just 8 kbps, useful on bandwidth-constrained links like satellite or cellular backhaul, at the cost of a slightly lower MOS around 3.9. Opus, the newer royalty-free codec mandatory for WebRTC and used by WhatsApp, Discord, and Zoom, adapts anywhere from 6 to well over 100 kbps and can exceed G.711's quality at higher bitrates.
| Codec | Bandwidth (with overhead) | MOS Quality Score | Best For |
|---|---|---|---|
| G.711 | ~85 kbps | ~4.2 | PSTN/SIP trunk default |
| G.729 | ~24–32 kbps | ~3.9 | Bandwidth-constrained links |
| G.722 | ~64 kbps | HD wideband | Internal IP-to-IP HD calls |
| Opus | 6–128 kbps (adaptive) | Up to ~4.5 | WebRTC, mobile apps, new deployments |
Once packets leave your device, they travel across the public internet like any other traffic — email, web pages, file downloads — with no special priority unless your network specifically configures Quality of Service (QoS) to give them one. That lack of built-in priority is exactly why VoIP is far more sensitive to network conditions than a web page loading a few hundred milliseconds slower than usual.
VoIP Call Quality: The Real Numbers That Determine Good vs Bad Calls
Call quality on VoIP comes down to three measurable network metrics: latency, jitter, and packet loss, each with thresholds defined by international telecom standards rather than guesswork. Per Cisco's official Quality of Service guidance for VoIP, the ITU-T G.114 recommendation sets one-way latency under 150 milliseconds as acceptable, 150 to 400 milliseconds as usable but degraded, and anything past 400 milliseconds as unacceptable for normal conversation.
| Metric | Excellent | Acceptable | Poor |
|---|---|---|---|
| One-way latency | Under 100 ms | 100–150 ms | Over 400 ms |
| Jitter | Under 20 ms | 20–30 ms | Over 50 ms |
| Packet loss | Under 0.5% | Under 1% | Over 5% |
| Bandwidth per call | ~85–100 kbps typical (codec-dependent, see table above) | ||
Jitter — the variation in delay between packets arriving, rather than the delay itself — matters because voice needs packets to arrive in a steady rhythm to sound natural. Most VoIP endpoints buffer incoming packets briefly to smooth out minor timing differences, but once jitter exceeds what that buffer can absorb, calls start sounding choppy or robotic even though every packet technically arrived. Packet loss is more binary: because voice runs over UDP rather than TCP, lost packets are never retransmitted, so anything above roughly 1% starts producing audible gaps.
These three numbers combine into a single industry metric called Mean Opinion Score (MOS), rated 1 to 5, where 4.0 and above sounds essentially like a landline and anything under 3.0 is noticeably degraded. Our guide to latency, bandwidth, and throughput breaks down how these metrics interact more broadly if you want the fundamentals behind the numbers above.
Why VoIP Calls Fail: NAT, Firewalls, and the Ports Nobody Checks
Most VoIP connection failures trace back to Network Address Translation (NAT) breaking SIP signaling, not a bad internet connection. SIP embeds IP addresses and port numbers directly inside the message payload — not just the outer packet headers — so when a router's NAT rewrites the header address but leaves the private address sitting inside the SIP and SDP body untouched, the remote end tries to send audio to an unreachable private IP, producing the classic symptom of one-way or no audio.
SIP signaling typically uses UDP or TCP port 5060 (5061 for encrypted SIP over TLS), while the actual voice data travels over RTP, usually across a range of UDP ports somewhere between 10,000 and 20,000 depending on the provider. Both need to reach your VoIP device for calls to work in both directions. For a full breakdown of this concept beyond VoIP specifically, our guide to how port forwarding works covers the underlying mechanics.
The SIP ALG Trap
Many consumer and small-business routers include a feature called SIP ALG (Application Layer Gateway), marketed as a fix for exactly this NAT problem. In practice, most ALG implementations rewrite SIP packets incorrectly and cause more dropped calls than they solve — the common professional recommendation is to disable SIP ALG entirely and let your VoIP provider's own NAT traversal (via STUN or a provider-side session border controller) handle it instead.
STUN (Session Traversal Utilities for NAT) works like a "what's my IP" service built for this exact problem: your VoIP device asks a STUN server what public IP address and port it appears to be using from the outside, then uses that information in its SIP messages instead of its private address. When STUN alone isn't enough — often the case behind double NAT or certain corporate firewalls — TURN relays media through a third-party server, and ICE automates choosing between direct connection, STUN, or TURN.
Carrier-grade NAT (CGNAT), increasingly common on mobile networks and some residential ISPs, adds another layer of address translation on top of your own router's NAT and is a frequent, often overlooked cause of VoIP instability. Understanding the difference between your public and private IP address is the first step to diagnosing whether NAT layers are the actual source of a call quality problem.
Test Whether Your Network Is Actually Ready for VoIP
Before blaming a VoIP provider for poor call quality, four quick checks rule out the network causes covered above. Each takes well under a minute to run and tells you exactly which of the four common culprits — latency, bandwidth, blocked ports, or packet fragmentation — actually applies to your connection, rather than leaving you guessing between your ISP, your router, and your VoIP provider's own network.
4-Step VoIP Network Readiness Check
1 Check Your Latency
Run a ping test to your VoIP provider or a general internet target. Anything consistently over 150ms one-way (roughly 300ms round trip) will feel laggy on calls, no matter how good your bandwidth is.
2 Confirm Available Bandwidth
Run a speed test during normal usage hours, not at 3 AM when nobody else is online. A single call needs under 100 kbps, but a busy household or office running multiple calls plus video streaming can saturate a slow connection fast.
3 Verify SIP and RTP Ports Are Open
Use a port scanner to confirm port 5060 (or 5061 for TLS) and your provider's RTP range aren't silently blocked by a firewall — this is the single most common cause of calls that connect but carry no audio.
4 Check for MTU-Related Fragmentation
An oversized MTU setting can force voice packets to fragment mid-transit, adding delay and occasional dropped audio. Running an MTU test rules this out — it's a less common cause than NAT or bandwidth, but worth eliminating on VPN-routed or tunnel-heavy connections.
If all four checks come back clean and calls still sound bad, the problem is more likely on your provider's network or the far end of the call — worth raising directly with their support team, armed with your own numbers instead of a vague "the calls sound bad" report.
Is VoIP Secure? Real Risks and How to Reduce Them
VoIP carries genuine security risks that a traditional landline never had, because calls travel across the same public internet as everything else rather than a dedicated, physically isolated phone circuit. Reported VoIP-related security incidents increased roughly 47% since 2024, driven largely by caller ID spoofing, call interception on unencrypted networks, and — increasingly in 2026 — AI-generated voice deepfakes used in vishing scams that impersonate executives or vendors convincingly enough to fool trained employees.
The core risks break down into three categories. Eavesdropping happens when an attacker intercepts unencrypted voice packets on a shared or compromised network; caller ID spoofing — a close relative of IP spoofing techniques covered elsewhere on this site — lets an attacker display a trusted number to manipulate a victim into revealing information; and toll fraud or SIP account brute-forcing targets weak or default credentials on internet-exposed SIP endpoints to make unauthorized calls at the account owner's expense.
Two protocols address most of this directly: SRTP (Secure Real-time Transport Protocol) encrypts the actual voice packets, and TLS (SIP over TLS) encrypts the signaling that sets up the call. Any VoIP provider or business phone system in 2026 that doesn't offer both as an option is worth reconsidering — strong SIP credentials, kept off public Wi-Fi for sensitive calls, and both encryption layers enabled cover the majority of realistic VoIP attack scenarios.
VoIP and 911: What the FCC Actually Requires
The FCC requires interconnected VoIP providers — services that can call and receive calls from the regular phone network — to supply Enhanced 911 (E911) as a standard, mandatory feature that customers cannot opt out of. Providers must obtain a subscriber's physical "Registered Location" before activating service and give an easy way to update it, since VoIP numbers aren't tied to a fixed address the way a traditional landline is.
That distinction matters in practice: unlike a landline, where 911 automatically knows your address from the wiring itself, a VoIP call only reaches the correct emergency dispatcher if your registered location is current. Moving a VoIP-connected device to a new address without updating that registration is one of the more serious, easy-to-miss risks of the technology — the call may still connect, but first responders could arrive at the wrong location entirely.
According to the FCC's official guidance on VoIP and 911 service, providers must also advise subscribers in plain language about any circumstances that could limit E911 service, such as a power or internet outage — a real limitation VoIP has that a copper landline traditionally didn't, since a landline typically stays powered by the phone company itself.
VoIP vs Traditional Phone vs Cellular Calling
VoIP, traditional landlines, and cellular voice calling solve the same basic problem — connecting two voices in real time — through three genuinely different underlying technologies, each with trade-offs that matter more in some situations than others. The right choice usually comes down to a handful of factors: how much you value cost savings and flexibility versus guaranteed uptime during a power outage, and whether your calls happen mostly from a fixed location or on the move.
| Factor | VoIP | Traditional Landline | Cellular (VoLTE) |
|---|---|---|---|
| Works during a power outage | No (needs power + internet) | Usually yes | Depends on tower/battery backup |
| Cost for long-distance | Low to free | Often expensive | Usually included |
| Location flexibility | Works anywhere with internet | Fixed to wiring | Tied to carrier coverage |
| Call quality dependency | Your internet connection | Dedicated circuit | Cell signal strength |
For most homes and businesses with a stable broadband connection, VoIP's cost and flexibility advantages outweigh the outage risk, especially paired with a mobile backup plan for true emergencies. Businesses evaluating a full switch should treat the four-step readiness check earlier in this guide as a prerequisite, not an afterthought — a phone system is one of the few pieces of infrastructure where "we'll troubleshoot it after go-live" is a genuinely expensive mistake.
Conclusion: VoIP Quality Is a Network Problem, Not a Mystery
Voice over IP is genuinely simple at its core — voice becomes data, data travels over the internet, data becomes voice again on the other end. What makes VoIP feel complicated is that its quality depends on network conditions most people never measure: latency, jitter, packet loss, and whether NAT or a firewall is quietly blocking the ports SIP and RTP need.
Every one of those factors is measurable in under a few minutes, and every threshold covered in this guide comes from established telecom standards rather than guesswork. Before switching providers, blaming your internet plan, or assuming a phone system is simply broken, run the four-step check: latency, bandwidth, ports, and MTU.
For the deeper mechanics of how DNS, IP addressing, and network fundamentals connect to everyday tools like VoIP, our guide to how DNS resolves domain names to IPs is a solid next read. Whatever you're troubleshooting, start with your own network's real numbers, not assumptions.
Check If Your Network Is VoIP-Ready
Test your latency, confirm your bandwidth, and verify your SIP ports aren't blocked before you blame your VoIP provider.