Ubuntu

使用 IPTables 保護數據庫伺服器

  • September 13, 2013

我的應用程序(WordPress)和數據庫(MySQL)在不同的伺服器上;它們連接在託管服務提供商提供的專用網路上,並且我已經採取了所有初步步驟(據我所知)以確保安全

通常,我使用這些 IPTables 規則:

*filter

#  Allow all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0
-A INPUT -i lo -j ACCEPT
-A INPUT -d 127.0.0.0/8 -j REJECT

#  Accept all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

#  Allow all outbound traffic - you can modify this to only allow certain traffic
-A OUTPUT -j ACCEPT

#  Allow HTTP and HTTPS connections from anywhere (the normal ports for websites and SSL).
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT

#  Allow SSH connections
#
#  The -dport number should be the same port number you set in sshd_config
#
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT

#  Allow ping
-A INPUT -p icmp -j ACCEPT

#  Log iptables denied calls
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7

#  Drop all other inbound - default deny unless explicitly allowed policy
-A INPUT -j DROP
-A FORWARD -j DROP

COMMIT

但是對於我的獨立(MySQL)數據庫伺服器,我發現規則需要一些更改。例如,我需要為 MySQL 開放 3306 埠,這很簡單:

-A INPUT -p tcp --dport 443 -j ACCEPT

除了,我不知道如何修改它,以便只有應用伺服器能夠連接到數據庫(即它支持遠端連接)。那麼,我該怎麼做呢?

所以你需要

-A INPUT -p tcp -s $INTERNAL_WEB_SERVER_IP --dport 3306 -j ACCEPT

僅允許您的 Web 伺服器與 mysql 通信。正如 dmourati 提到的,允許 ping 流量是個好主意。恕我直言,它幫助解決的問題比它提出的安全問題要多得多。

iptables -A INPUT -p icmp --icmp-type 8 -s 0/0 -d $SERVER_IP -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -p icmp --icmp-type 0 -s $SERVER_IP -d 0/0 -m state --state ESTABLISHED,RELATED -j ACCEPT

您提到的出站規則意味著您的數據庫伺服器可以進行任何傳出連接。本質上,來自您的數據庫伺服器的任何和所有流量都將被允許。

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