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...")
(No difference)

Revision as of 18:53, 13 July 2016

Limitation

There is currently no connection tracking available for bridge filtering.

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