LOGBOOK

HELP

Quiz Entry - updated: 2026.07.14

How does URL Filtering with a custom URL category work, and what does the asterisk * wildcard do?

Build a list of patterns (*.meteo.ch, meteo.ch); FW matches the requested URL's hostname against the list; matching Security Rule action (Deny) fires.

Wildcard semantics on Palo Alto:

Pattern Matches
meteo.ch exactly meteo.ch
*.meteo.ch any subdomain: m.meteo.ch, api.meteo.ch, but NOT meteo.ch itself
*meteo* substring match — also catches srf.ch/meteo paths? No — wildcard applies to host, not path

Pitfalls: URL category matches the hostname, not the URL path. So www.srf.ch/meteo is not caught by a meteo category — its host is srf.ch. To filter by path you need URL Filtering profiles with full URL match or a content-aware feature.

Real-world example:

  • meteo.ch yes blocked (exact)
  • m.meteo.ch yes blocked (if *.meteo.ch is in list)
  • meteo.com no different domain
  • www.srf.ch/meteo no host is srf.ch
  • wetter.ch no different domain (and HTTP/3 makes it worse — see QUIC card)

Tip: "URL category = hostname filter, not URL filter." A common pitfall.

Go deeper:

From Quiz: INTROL / Firewall Advanced Lab (Lab 6) | Updated: Jul 14, 2026