Advertisement

What Is a Firewall? How Your Devices Filter Traffic

A firewall is a bouncer for network traffic: it examines connections against a rule list and decides โ€” allow or block. You're almost certainly running two right now without thinking about them: one in your router, one in your operating system. Understanding what they actually do turns "mysterious network problem" into "oh, the firewall."

How firewalls decide

Rules evaluate packet properties: source and destination IP address, port, protocol, and โ€” critically โ€” connection state. Modern firewalls are stateful: they remember which connections you initiated and automatically allow the replies, while unsolicited inbound attempts match no known connection and get dropped. That asymmetry โ€” outbound free, inbound blocked-by-default โ€” is the core posture protecting every home network.

The firewalls you already have

Advertisement

What firewalls don't do

A firewall filters connections, not content or behaviour. It won't stop phishing, malware you download voluntarily, credential theft, or anything riding inside connections you initiated โ€” a malicious page arrives over the same allowed HTTPS as a legitimate one. That's why firewalls are one layer among several: updates, sane exposure (minimal forwards), strong authentication, and encryption each cover what the others miss.

Practical firewall hygiene

  1. Leave the defaults on โ€” don't disable a firewall to "fix" an app; add a specific rule instead.
  2. Audit exceptions occasionally โ€” programs you allowed years ago keep their permissions.
  3. Choose "Public" on untrusted networks โ€” the whole point of the profile system.
  4. When something can't connect, check firewalls at both ends before blaming the network โ€” a blocked inbound port on the destination looks identical to an outage. Ping and traceroute help locate which layer is dropping you.
๐ŸŒ Curious what your connection reveals right now? Check your IP address and location โ†’

Frequently asked questions

Do I need a third-party firewall?

For most people, no โ€” the router plus the built-in OS firewall cover the standard threat model well. Third-party value lies mainly in nicer outbound-control interfaces for power users.

Is NAT a firewall?

Functionally it blocks unsolicited inbound traffic, but it's an addressing mechanism, not a policy engine. Routers pair NAT with a real stateful firewall โ€” you benefit from both.

Advertisement