A dropped tunnel fails open
When a VPN connection breaks, the operating system quietly routes traffic through the normal interface. Apps keep working and nothing warns you. A kill switch turns fail-open into fail-closed: no tunnel, no traffic.
Guides
A kill switch blocks all internet traffic the moment a VPN tunnel drops, so apps cannot silently fall back to your regular connection. Without it, even a two-second disconnect exposes your real IP address. Even while the tunnel is up, DNS requests, WebRTC in the browser, and IPv6 traffic can leak around it. Each leak has a simple test and a fix.
When a VPN connection breaks, the operating system quietly routes traffic through the normal interface. Apps keep working and nothing warns you. A kill switch turns fail-open into fail-closed: no tunnel, no traffic.
DNS queries can go to your ISP resolver outside the tunnel, WebRTC can hand websites your addresses, and IPv6 can bypass an IPv4-only tunnel — all while the VPN icon says connected.
You do not have to trust settings screens. A leak test shows which addresses and resolvers websites actually see, and breaking the tunnel on purpose shows whether the kill switch holds.
The connection fails open. A VPN adds routes that steer traffic into a virtual network interface. When the tunnel process dies or times out, those routes disappear, while the default route through Wi-Fi or Ethernet remains — so the system keeps delivering packets, now directly through your ISP. Apps reconnect their sockets within seconds, sending traffic from your real IP, with no error dialog anywhere.
Drops are routine. Switching from Wi-Fi to mobile data, a laptop waking from sleep, a flaky hotel network, or a VPN server restart all break the tunnel for a moment. What that moment costs depends on whether anything is allowed to leave your device while the tunnel is down.
A kill switch is a set of firewall rules, not magic. The strict version allows only two kinds of outbound traffic: packets entering the tunnel interface, and the VPN client's own encrypted packets to the server. If the tunnel goes down, application traffic simply has nowhere to go until it returns.
This changes the failure mode rather than preventing failures. With a kill switch, a drop becomes a paused connection you notice; without one, it becomes traffic on your real address that you do not notice. Networks are imperfect and the tunnel will still break — fail-closed makes those moments harmless.
The difference is what happens when the app itself dies. An in-app kill switch is code inside the VPN client that watches the tunnel and blocks traffic when it drops. It only works while the client runs: if the client crashes or is killed by a battery optimizer, its protection dies with it — at exactly the moment the tunnel disappears.
A system-level kill switch installs rules in the operating system's own firewall, which inspects every outbound packet regardless of which apps are running. Android has this built in: always-on VPN plus blocking connections without VPN makes the OS itself refuse traffic outside the tunnel, even before the app starts after a reboot. The blunt way to tell the two apart: force-kill the VPN app while browsing — if pages still load, the switch lives in the app.
A DNS leak means your name lookups go to the resolver your local network assigned — usually your ISP's — even though the traffic itself rides the tunnel. Websites see the VPN address, but the resolver receives the name of every site you open, which amounts to a browsing log. Windows is the classic offender: with several active interfaces it can query all of them in parallel and use whichever answers first.
The fix has two parts, and a good client does both: point the system at the resolver inside the tunnel, and block DNS on every other interface so a stray query has nowhere to go. Then verify: run a leak test and check the resolvers it lists — if any belong to your ISP, lookups are leaking.
WebRTC is the browser technology behind video calls, and any website can invoke it with a few lines of JavaScript. To set up direct connections it collects every address that might reach your machine: local addresses and, by asking a STUN server, your public one. A page can read those candidates without your involvement.
With a full-device tunnel the STUN request rides inside the tunnel, so it discovers the VPN's address. The dangerous setups are partial: a browser-only proxy or split tunneling that leaves the browser outside — there WebRTC's UDP packets go out directly and reveal your real IP.
Test it rather than reasoning about it: our free checker at /webrtc-leak-test/ shows which addresses your browser reveals right now. If the real one appears, move to a full-device tunnel or disable WebRTC in browser settings.
Many VPN configurations carry IPv4 only. If your ISP also provides IPv6 — most mobile networks do — the system keeps a working IPv6 route outside the tunnel, and modern systems prefer IPv6 when a site offers both. The result is selective exposure: sites without IPv6 see the VPN address, sites with it see your real one, and an IPv4-only test reports everything as fine.
There are two clean fixes. The better one is a VPN that handles IPv6 properly — tunneling it alongside IPv4 or installing a blocking route so IPv6 packets are dropped, not sent directly. The blunt fallback is disabling IPv6 on the device or router. Either way, verify: the leak test should show no IPv6 address that is not the VPN's.
Run the checks in the conditions you actually use — home Wi-Fi, phone on mobile data, a café network — because leaks depend on each network's DNS setup and IPv6 availability. The routine takes about five minutes:
Putting the VPN tunnel on your router protects every device on the network at once — including TVs, consoles, and smart speakers that cannot install apps. The trade-offs are real: throughput is limited by the router's CPU, the whole house exits through one country, and troubleshooting gets harder. This guide explains the setups and how to decide.
On the road, a VPN encrypts your traffic on hotel and airport Wi-Fi, keeps your accounts looking like they connect from a familiar country, and reaches services that behave differently abroad. It is not a cure-all: streaming platforms detect server addresses, and local rules vary by country. The one rule that matters most — set everything up and test it before you leave.
A VPN (virtual private network) builds an encrypted tunnel between your device and a remote server, and your traffic exits to the internet from that server. Your internet provider stops seeing which sites you visit, and websites see the server's IP address instead of yours. It is a privacy tool, not an invisibility cloak.