docs(xml): Make hitcount example ip(6)tables rules more less cluttered

This commit is contained in:
hygienic-books 2022-07-16 02:23:54 +02:00
parent 62f44939d8
commit c63351da59

View File

@ -286,10 +286,10 @@ A custom `[section]` has the following options. We're calling them locals most o
``` ```
UFS generates rules: UFS generates rules:
``` ```
target prot opt in out source destination target
DROP tcp -- * * 0.0.0.0/0 0.0.0.0/0 multiport dports 143,993,110,995,25,465,587 recent: UPDATE seconds: 60 hit_count: 120 name: anyone-may-access-mail-services side: source mask: 255.255.255.255 DROP ... multiport dports 143,993,110,995,25,465,587 recent: UPDATE seconds: 60 hit_count: 120 ...
tcp -- * * 0.0.0.0/0 0.0.0.0/0 multiport dports 143,993,110,995,25,465,587 recent: SET name: anyone-may-access-mail-services side: source mask: 255.255.255.255 ... multiport dports 143,993,110,995,25,465,587 recent: SET ...
ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW multiport dports 143,993,110,995,25,465,587 /* anyone-may-access-mail-services */ ACCEPT ... state NEW multiport dports 143,993,110,995,25,465,587 ...
``` ```
Where the first `DROP` target will drop packets that have exceeded their hit count; the second `recent: SET` simply marks all matching packets to be added into the hitcount bucket and the third on is the actual `ACCEPT` rule permitting access **_if_** a source's hitcount permits it. Where the first `DROP` target will drop packets that have exceeded their hit count; the second `recent: SET` simply marks all matching packets to be added into the hitcount bucket and the third on is the actual `ACCEPT` rule permitting access **_if_** a source's hitcount permits it.