我经常看到人们STEAL
在iptables规则中设定目标。可以通过在debian上安装xtables-addons-common
和获得这个目标xtables-addons-dkms
。我很好奇为什么人们会喜欢STEAL
它DROP
,所以我查看了手册,但是只有以下信息:
STEAL
Like the DROP target, but does not throw an error like DROP when used
in the OUTPUT chain.
有人知道什么错误吗?例如,我们可以采用以下两个规则:
-A OUTPUT --protocol tcp --match multiport ! --dports 80,443 --match set --match-set bt_level1 dst --jump STEAL
和:
-A OUTPUT --protocol tcp --match multiport ! --dports 80,443 --match set --match-set bt_level1 dst --jump DROP
它们之间有什么区别?
iptables
,他们编写了相应的内核模块。该代码不在外部,因为它是不受信任的一方。这是因为代码是实验性的。