Gargi Sharma <gs051095@xxxxxxxxx> wrote: > Add translation for TOS to nftables. > > Examples: > > $ iptables-translate -t mangle -A PREROUTING -p TCP --dport 22 -j TOS --set-tos 0x10 > nft add rule ip mangle PREROUTING tcp dport 22 counter --set-tos 0x10/0xff > > $ iptables-translate -A PREROUTING -t mangle -p tcp --sport ftp-data -j TOS --set-tos 0x02/0x10 > nft add rule ip mangle PREROUTING tcp sport 20 counter --set-tos 0x02/0x10 You did not test this :-/ nft add rule ip mangle PREROUTING tcp sport 20 counter --set-tos 0x02/0x10 nft: unrecognized option '--set-tos' besides, there is no TOS support in nftables. Please look at xt_DSCP.c and the xlate function there. You could rewrite -j TOS iptables rules to their corresponding dscp eqivalent in some cases at least. -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html