Screened Subnet (DMZ) Firewall - what it is, why it helps, and how to set it up safely

Screened Subnet Firewall

What it is

A screened subnet (also called a DMZ) is a simple layout with three areas: the internet, a small “buffer” network for public stuff (DMZ), and your private home/office network (LAN). People on the internet can only reach the DMZ (like your website or mail gateway). Your private network stays hidden behind the firewall, and DMZ machines can’t freely reach into it.

Why it matters

If a public server gets hacked, the damage is contained in the DMZ instead of spilling into your private devices. It keeps risky traffic at arm’s length and makes problems easier to spot and fix.

How it works 

  • Three zones: Internet → Firewall → DMZ → Firewall → Private network.

  • Publish safely: put public-facing services in the DMZ.

  • Tight rules: only the ports you need are opened; direct internet → private network is blocked.

  • Limited reach-back: DMZ can talk to the private network only on specific, logged ports (if needed).

  • Outbound control: traffic leaving the DMZ/private network is filtered and monitored.

Red flags

  • Any rule that lets the internet talk straight to your private network.

  • DMZ servers using admin accounts that can control your private devices.

  • “Side doors” that bypass the firewall (a second, forgotten internet connection).

  • Over-broad rules like “allow everything out from everywhere.”

Do it right

  • Start with “block by default,” then allow only what’s required.

  • Keep origins private; use a reverse proxy/WAF in the DMZ if you host sites.

  • Use a VPN or jump host for admin access - never open raw RDP/SSH to the internet.

  • Log and alert on rule changes and denied traffic; keep DMZ systems lean and updated.

    Glossary (A–Z)

    All A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
      • Related Articles

      • Firewall

        What it is A firewall is a gatekeeper for your network - it filters traffic so only approved connections get through. Firewalls can be hardware (built into routers or dedicated appliances) or software (on your computer or server). For a deeper look ...
      • Security Software

        What it is Security software is a set of apps and services that protect your devices and data from hackers, malware, and mistakes. It covers tools like antivirus/anti-malware, firewalls, VPNs, email and web filters, intrusion detection/prevention, ...
      • DNS Firewall

        Why it matters Most attacks start with a click or a background connection. Stopping bad domains at the DNS layer cuts off malware downloads, phishing pages, and command-and-control beacons without slowing users or changing their workflow. How it ...
      • Personal Firewall

        What it is A personal firewall is a security app on your computer or phone that watches and controls network traffic. It blocks unexpected connections, alerts you to suspicious apps, and helps keep hackers out on home and public Wi-Fi. Why it matters ...
      • Data Execution Prevention

        What it is Data Execution Prevention (DEP) is a Windows safety net that stops code from running in places it shouldn’t—like the stack or heap. If malware tries to execute from those memory areas, Windows blocks it and shuts the app down instead of ...