Linux下利用iptables屏蔽IP段

运维 系统运维
如何在Linux下利用iptables屏蔽IP段呢?iptabels被认为是Linux中实现包过滤功能的第四代应用程序,包含在Linux2.4以后的内核中。本文讲述的就是如何在Linux下利用iptables屏蔽IP段。

  linux下利用iptables屏蔽IP段:

  屏蔽单个IP

  1.   iptables -I INPUT -s 124.115.0.199 -j DROP  
  2.  

  屏蔽IP段

  1.   iptables -I INPUT -s 124.115.0.0/16 -j DROP  
  2.  
  3.   iptables -I INPUT -s 124.115.3.0/16 -j DROP  
  4.  
  5.   iptables -I INPUT -s 124.115.4.0/16 -j DROP  
  6.  

  屏蔽整个IP段

  1.   iptables -I INPUT -s 124.115.0.0/8 -j DROP  
  2.  

  屏蔽几个IP段

  1.   iptables -I INPUT -s 61.37.80.0/24 -j DROP  
  2.  
  3.   iptables -I INPUT -s 61.37.81.0/24 -j DROP  
  4.  

  在执行之后不要忘记保存,并重启iptables服务。以上就是如何在Linux下利用iptables屏蔽IP段的方法。

【编辑推荐】

IPtables防火墙使用技巧(超实用)

Linux下Iptables端口转发功能的解决

四种NAT的iptables实现

 

 

责任编辑:zhaolei 来源: codante
相关推荐

2018-10-10 09:23:30

服务器iptablesLinux

2011-03-14 16:46:40

Linuxiptables上网

2009-11-30 09:56:16

2011-03-16 16:54:10

iptables 清空linux

2011-03-16 09:53:25

2011-04-21 09:54:14

Linuxiptables

2011-03-16 09:05:33

2011-03-15 15:47:26

LinuxIptables防火墙

2011-03-16 10:12:27

LinuxIptables端口转发

2011-03-17 09:35:35

iptables 映射Linux内核

2011-03-15 16:57:15

2009-07-19 22:12:53

2009-08-03 14:14:27

2011-03-15 17:12:11

2011-03-17 15:16:38

2017-10-11 16:23:59

Linuxinode删除文件

2009-02-27 11:01:46

LinuxNoStaples扫描文档

2010-07-07 09:38:27

2011-03-15 15:33:26

IPtablesBT电驴

2011-03-15 14:26:23

iptablesNAT
点赞
收藏

51CTO技术栈公众号