911625
# Sample configuration snippet for nftables service.
911625
# Meant to be included by main.nft, not for direct use.
911625
911625
# a common table for both IPv4 and IPv6
911625
table inet nftables_svc {
911625
911625
	# base-chain for traffic forwarded by this host
911625
	# re-uses 'allow' chain from main.nft
911625
	chain FORWARD {
911625
		type filter hook forward priority filter + 20
911625
		policy accept
911625
911625
		jump allow
911625
		reject with icmpx type host-unreachable
911625
	}
911625
}