On 30 May 2016 at 20:27, Laura Garcia Liebana <[email protected]> wrote:
> Add translation for multiport to nftables, which it's supported natively.
>
> Examples:
>
> $ sudo iptables-translate -t filter -A INPUT -p tcp -m multiport --dports
> 80,81 -j ACCEPT
> nft add rule ip filter INPUT ip protocol tcp tcp dport 80,81 counter accept
>
> $ sudo iptables-translate -t filter -A INPUT -p tcp -m multiport --dports
> 80:88 -j ACCEPT
> nft add rule ip filter INPUT ip protocol tcp tcp dport 80-88 counter accept
>
> $ sudo iptables-translate -t filter -A INPUT -p tcp -m multiport ! --dports
> 80:88 -j ACCEPT
> nft add rule ip filter INPUT ip protocol tcp tcp dport != 80-88 counter accept
>
These examples use invalid syntax, you should use:
tcp dport {80,81}
tcp dport {80-81}
regards
--
Arturo Borrero González
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html