用iptables和DNAT包设置TOS

时间:2018-06-16 06:29:15

标签: iptables nat

我的表格中有这个规则

  

iptable -t nat -A PREROUTING -s 5.0.0.1 -m statistic --mode nth   --every 2 --packet 0 -j TOS --set-tos 0x10

     

iptable -t nat -A PREROUTING -s 5.0.0.1 -m statistic --mode nth   --every 2 --packet 1 -j TOS --set-tos 0x08

我设置2个tcp值,然后DNAT它们

  

iptables -t nat -A PREROUTING -m tos --tos 0x10 -j DNAT --to 10.0.0.2

     

iptables -t nat -A PREROUTING -m tos --tos 0x08 -j DNAT --to 10.0.0.3

但我的所有包含0x10和0x08的数据包只发送到10.0.0.3! 问题是什么? TNX。

0 个答案:

没有答案