Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux系統常見問題解答 >> Linux iptables 封ip, Linux iptables 屏蔽ip

Linux iptables 封ip, Linux iptables 屏蔽ip

日期:2017/1/20 17:41:45      編輯:Linux系統常見問題解答

iptables 博大精深,知道基本語法其他 需要什麼就去查資料好了 這裡做一下筆記

這裡列幾條Linux 屏蔽ip的命令,如下:
 

屏蔽單個IP的命令

iptables -I INPUT -s 192.168.9.198 -j DROP

封整個段即從192.0.0.1到192.255.255.254的命令
iptables -I INPUT -s 192.0.0.0/8 -j DROP

#封某個段 從192.168.8.1到192.168.8.254的命令
 

iptables -I INPUT -s 192.168.8.0/24 -j DROP

Copyright © Windows教程網 All Rights Reserved