LOGBOOK

HELP

1 / 30
Other keys: showSpace: good1-4: rate0: skip5: flag

Question

What is the perimeter in network security, and why does it need more than just a router?

Answer

The perimeter is the boundary between the internal corporate network (Intranet) and the external Internet (or ISP). A router alone forwards packets — it doesn't decide who is allowed through. Anything beyond minimal trust requires packet filters, firewalls, or ALGs.

The two-zone mental model:

   Internet (untrusted)
        │
   ━━━━━━━━━━━  ← perimeter (the line of defense)
        │
   Intranet (trusted, your network)

Why a router isn't enough:

Functionality Router Firewall
Forwards packets between networks yes yes
Stops packets based on policy no (in default config) yes
Tracks connection state no yes (stateful FWs)
Inspects application content no yes (NGFW/WAF)
Logs decisions Minimal yes

A router with no ACLs forwards everything it can route. The perimeter exists because routing ≠ security — connecting two networks doesn't decide what should be allowed between them.

Why "perimeter" is partially obsolete:

The classic perimeter model assumed: "inside = trusted, outside = hostile." Today with cloud services, remote workers, BYOD, and SaaS, that boundary is dissolving — hence Zero-Trust Architecture (where nothing is trusted by default, regardless of network position). The perimeter still exists as a defense layer; it's just no longer the only one.

Tip: Even Zero-Trust networks deploy firewalls — they just don't rely on them as the sole defense. Defense-in-depth is the lesson: layer perimeter FW + host FW + identity-based access + encryption.

Go deeper:

or press any other key

Question

What is a firewall, formally — and what three properties must it have?

Answer

A firewall is a system of hardware and/or software components, deployed between two or more networks, that enforces three core properties: all traffic must be authorized, unknown protocols are dropped, and the firewall itself must resist attack.

The three required properties:

Property Why it matters
All data traffic through the FW must be authorized → Firewall Rules The fundamental policy enforcement point
Protocols the FW doesn't understand are NOT forwarded (e.g., SPX/IPX, AppleTalk) Default-deny on the unknown — an attacker can't smuggle data via exotic protocols
The FW itself must be resistant to attacks If the FW is compromised, all rules are bypassed

The Wikipedia callout for context:

"A security system that protects a computer network or a single computer from unwanted network access."

Why "hardware and software":

A firewall isn't just "a box" or "a piece of software" — it's the combination:

  • Software defines the rules and inspects packets.
  • Hardware provides the network interfaces and processing power.
  • The OS underneath is hardened (often a stripped-down Linux/BSD).

Common physical forms:

Form Example
Dedicated hardware appliance Fortinet FortiGate, Palo Alto PA-series, Cisco ASA
Virtual appliance (VM) pfSense VM, Palo Alto VM-series
Software on a host iptables/nftables, Windows Defender Firewall
Cloud-managed service AWS Security Groups, Azure Firewall

Tip: When someone says "we have a firewall" — ask what kind. Many "firewalls" in SOHO routers are little more than NAT + a basic ACL. Real perimeter firewalls cost from CHF 1k for entry-level appliances up to 6 figures for enterprise stateful clusters.

Go deeper:

or press any other key