Skip to content

Commit 8d3ac6e

Browse files
defguard-communitygitbook-bot
authored andcommitted
GITBOOK-371: change request with no subject merged in GitBook
1 parent f4594f0 commit 8d3ac6e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

enterprise/all-enteprise-features/access-control-list.md

+13
Original file line numberDiff line numberDiff line change
@@ -252,3 +252,16 @@ As a shortcut, Defguard Gateway offers the `--masquerade` flag (or the `DEFGUARD
252252
{% hint style="warning" %}
253253
The `--masquerade` option applies masquerading between **all** interfaces on the gateway, which may be more permissive than necessary in some environments. While convenient, this broad behavior might not align with more restrictive or segmented network designs. For greater control and tighter security, we recommend that administrators configure masquerading manually between only the interfaces that require it.
254254
{% endhint %}
255+
256+
### Forward chain priority
257+
258+
Defguard creates a forward chain in its namespace to control which forwarded packets are being allowed or blocked. This may interfere with your other nftables rules and chains.
259+
260+
```
261+
chain FORWARD {
262+
type filter hook forward priority filter; policy deny;
263+
ct state established,related counter packets 119 bytes 13404 accept
264+
}
265+
```
266+
267+
By default this chain has the priority of `filter` (0). You can edit the priority by setting the `DEFGUARD_FW_PRIORITY` environment variable (or `fw_priority` config option) to chosen number, e.g. 1. The higher the priority, the later the chain runs in regard to your other forward chains. 

0 commit comments

Comments
 (0)