當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

構(gòu)建高安全電子商務(wù)網(wǎng)站之Linux服務(wù)器iptables規(guī)則列表全攻略

作者:  來源:  發(fā)布時間:2012-2-1 8:35:26  點擊:
iptables -A FORWARD -j REJECT

4、屏蔽IP

#如果只是想屏蔽IP的話“3、開放指定的端口”可以直接跳過。

#屏蔽單個IP的命令是

iptables -I INPUT -s 123.45.6.7 -j DROP

#封整個段即從123.0.0.1到123.255.255.254的命令

iptables -I INPUT -s 123.0.0.0/8 -j DROP

#封IP段即從123.45.0.1到123.45.255.254的命令

iptables -I INPUT -s 124.45.0.0/16 -j DROP

#封IP段即從123.45.6.1到123.45.6.254的命令是

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

4、查看已添加的iptables規(guī)則

iptables -L -n

v:顯示詳細信息,包括每條規(guī)則的匹配包數(shù)量和匹配字節(jié)數(shù)

x:在 v 的基礎(chǔ)上,禁止自動單位換算(K、M) vps偵探

n:只顯示IP地址和端口號,不將ip解析為域名

5、刪除已添加的iptables規(guī)則

將所有iptables以序號標記顯示,執(zhí)行:

iptables -L -n --line-numbers

比如要刪除INPUT里序號為8的規(guī)則,執(zhí)行:

iptables -D INPUT 8

6、iptables的開機啟動及規(guī)則保存

CentOS上可能會存在安裝好iptables后,iptables并不開機自啟動,可以執(zhí)行一下:

chkconfig --level 345 iptables on

將其加入開機啟動。

CentOS上可以執(zhí)行:service iptables save保存規(guī)則。

另外更需要注意的是Debian/Ubuntu上iptables是不會保存規(guī)則的。

需要按如下步驟進行,讓網(wǎng)卡關(guān)閉是保存iptables規(guī)則,啟動時加載iptables規(guī)則:

創(chuàng)建/etc/network/if-post-down.d/iptables 文件,添加如下內(nèi)容:

#!/bin/bash

iptables-save > /etc/iptables.rules

執(zhí)行:chmod +x /etc/network/if-post-down.d/iptables 添加執(zhí)行權(quán)限。

創(chuàng)建/etc/network/if-pre-up.d/iptables 文件,添加如下內(nèi)容:

#!/bin/bash

iptables-restore < /etc/iptables.rules

執(zhí)行:chmod +x /etc/network/if-pre-up.d/iptables 添加執(zhí)行權(quán)限。

總結(jié):

iptables 應(yīng)用無處不在,是提高系統(tǒng)安全性的重要防火墻軟件。在Linux系統(tǒng)上應(yīng)用非常廣泛。只要是實際生產(chǎn)中的服務(wù)器都是必不可少iptables規(guī)則。當(dāng)然構(gòu)建高安全電子商務(wù)網(wǎng)站少不了iptables防火墻。

文章評論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z