Denylist examples

Table 1. Denylist examples
- 192.168.1.*
- 192.168.2.1
- 192.168.2.6...192.168.3.90
- 192.168.4.1/20
- 192.168.5.1 tcp 80
- 192.168.5.2 tcp 80 100-110
- 192.168.5.3 udp 11 22 2000-30000

A wildcard in the IP in position 2, 3 or 4 is equivalent to a subnet ending in /8, /16 or /24. The last lines block only packets from a specific host/port (or set of ports).

- 192.168.2.*
- 192.168.2.1

These entries are not disjoint, but the Guardian is able to fix automatically the conflict.

- 192.168.3.2 tcp 80
- 192.168.3.1/24 tcp 100

A logical error: 192.168.3.2 is an ambiguous match.

- 192.168.3.1 tcp 100
- 192.168.3.2 tcp 80
- 192.168.3.3...192.168.3.255 tcp 100

As the entries do not intersect, this is the right way to fix the error above.

- 192.168.3.3 tcp 80
- 192.168.3.3 udp 100

These lines are in conflict: an ip can be associated with at most one port filter.