Iptables学习

Posted by 大雁小鱼的博客 on October 21, 2018

iptables学习

命令

iptables [-t table] {-A|-D} chain rule-specification

table主要有 filter(默认,也是就是没有使用-t参数时默认的) net mangle raw

-A就是添加的意思 -D就是删除的意思

chain主要有INPUT OUTPUT

target主要有DROP ACCEPT

rule-specificatijon主要有
-s 源地址
-d 目的地址

-j target 匹配的话就执行这个动作

例子

iptables -t filter -A INPUT -s 192.168.0.1/24 -j DROP