Ubuntu

如何在 ubuntu 上向 iptables 添加規則以在本地 ip 上啟用 redis 而不是外部

  • August 20, 2015

我按照各種腳本設置了 2 台 linode 機器。兩者都有一個外部和本地 IP。在一個我已經安裝了redis,我想通過本地ip連接到這台機器。

我應該專門添加哪些規則以允許從我的其他 linode 訪問埠 6379(redis),而不是從 Internet 的其餘部分訪問?

我的 /etc/iptables.firewall.rules 到目前為止:

----
*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 --icmp-type echo-request -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

在規則之前的某處包含此-A INPUT -j DROP規則:

-A INPUT -s 123.45.67.8 -p tcp -m state --state NEW --dport 6379 -j ACCEPT

更改123.45.67.8為您希望允許訪問的伺服器的 IP 地址。

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