Linux

在 iptables 規則中在 –tcp-flags 中使用 ALL 的實用程序

  • April 14, 2016

--tcp-flags我想知道以下兩條規則有什麼區別:

-p tcp --tcp-flags SYN,FIN,RST SYN,FIN,RST
-p tcp --tcp-flags ALL SYN,FIN,RST

第一個命題的意思是:SYN 和 FIN 和 RST 標誌是否為 1?無論其他標誌的值如何。

第二個命題的意思是:SYN 為 1,ACK 為 0,FIN 為 1,RST 為 1,URG 為 0,PSH 為 0?

引用自:https://serverfault.com/questions/769562