Difference between revisions of "Bridge filtering"

From nftables wiki
Jump to navigation Jump to search
(Created page with "== Limitation == There is currently no connection tracking available for bridge filtering. == Examples == Filter on TCP destination port: <source lang="bash"> nft add rule...")
 
Line 1: Line 1:
== Limitation ==
There is currently no connection tracking available for bridge filtering.
== Examples ==
== Examples ==



Revision as of 23:12, 26 November 2020

Examples

Filter on TCP destination port:

nft add rule bridge filter forward ether type ip tcp dport 22 accept

Accept arp packet:

nft add rule bridge filter forward ether type arp accept