仅允许来自localhost的Redis连接?

时间:2016-10-18 17:52:33

标签: redis firewall iptables

我在我的网络服务器(Debian / Nginx / Gunicorn)上运行Redis进行会话存储,并有理由相信我的Redis服务器被黑客入侵。这绝对是可能的,因为如果我在不同的机器上运行命令“redis-cli -h(HOST IP)”对抗Web服务器,我可以进入控制台并运行命令。我有两个问题。首先,如果我向我的iptables文件添加一个新的部分,如下所示,我是否会正确阻止从除Web服务器本身以外的所有机器访问我的Redis服务器? Redis正在默认端口6379上运行。

*filter

-A INPUT -i lo -j ACCEPT
-A INPUT ! -i lo -s 127.0.0.0/8 -j REJECT

# Allow pings, SSH, and web access
-A INPUT -p icmp -m state --state NEW --icmp-type 8 -j ACCEPT
-A INPUT -p tcp --dport 22 -m state --state NEW -j ACCEPT
-A INPUT -p tcp --dport 80 -m state --state NEW -j ACCEPT
-A INPUT -p tcp --dport 443 -m state --state NEW -j ACCEPT

# NEW SECTION...
# IS THIS CORRECT?
-A INPUT -p tcp --dport 6379 -j DROP
-A INPUT -p tcp -s 127.0.0.1 --dport 6379 -m state --state NEW -j ACCEPT
# END NEW SECTION

-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -j REJECT
-A FORWARD -j REJECT

COMMIT

其次,如果以上是正确的,我仍然可以在我的iptables的IPv6版本中使用127.0.0.1,还是需要使用“:: 1”?

感谢。

1 个答案:

答案 0 :(得分:5)

您应该可以通过Redis configuration file

执行此操作
# By default Redis listens for connections from all the network interfaces  
# available on the server. It is possible to listen to just one or multiple 
# interfaces using the "bind" configuration directive, followed by one or 
# more IP addresses. 
# 
# Examples: 
# 
# bind 192.168.1.100 10.0.0.1 
# bind 127.0.0.1