• Redis通过防火墙配置开放局域网连接,禁用外网连接


    前提
    Redis开放了所有IP访问,但是服务运行中,不太方便重启redis服务,此时可以通过防火墙策略保证安全
    bind 0.0.0.0
    
    • 1
    添加防火墙策略
    添加规则允许本地127.0.0.1和局域网的172.19.161.14连接Redis(根据自己的局域网IP更改)
    iptables -A INPUT -s 127.0.0.1 -p tcp --dport 6379 -j ACCEPT
    iptables -A INPUT -s 172.19.161.14 -p tcp --dport 6379 -j ACCEPT
    
    • 1
    • 2
    禁用其他ip连接当前机器的6379接口,问题解决
    iptables -A INPUT -p TCP --dport 6379 -j REJECT
    
    • 1

    延伸学习
    查看防火墙规则
    [root@izuf6barrnre7hruzsy99hz brain]# iptables -nL --line-number
    Chain INPUT (policy ACCEPT)
    num  target     prot opt source               destination
    1    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:8080
    2    ACCEPT     tcp  --  172.19.161.14        0.0.0.0/0            tcp dpt:6379
    3    ACCEPT     tcp  --  127.0.0.1            0.0.0.0/0            tcp dpt:6379
    4    REJECT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:6379 reject-with icmp-port-unreachable
    
    Chain FORWARD (policy ACCEPT)
    num  target     prot opt source               destination
    
    Chain OUTPUT (policy ACCEPT)
    num  target     prot opt source               destination
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    删除防火墙规则
    [root@izuf6barrnre7hruzsy99hz brain]# iptables -nL --line-number
    Chain INPUT (policy ACCEPT)
    num  target     prot opt source               destination
    1    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:8080
    2    ACCEPT     tcp  --  172.19.161.14        0.0.0.0/0            tcp dpt:6379
    3    ACCEPT     tcp  --  127.0.0.1            0.0.0.0/0            tcp dpt:6379
    4    REJECT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:6379 reject-with icmp-port-unreachable
    ···
    [root@izuf6barrnre7hruzsy99hz brain]# iptables -D INPUT 2
    1    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:8080
    2    ACCEPT     tcp  --  127.0.0.1            0.0.0.0/0            tcp dpt:6379
    3    REJECT     tcp  --  0.0.0.0/0            0.0.0.0/0            tcp dpt:6379 reject-with icmp-port-unreachable
    ···
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
  • 相关阅读:
    Docker部署青龙面板
    5. Makefile项目管理
    阈值同态加密在隐私计算中的应用:解读
    改进 hibernate-validator,新一代校验框架 validator 使用介绍 v0.4
    shell脚本的文本处理工具
    专栏 | 解析“全闪对象存储”(三)
    基于元数据的数据治理分析功能说明
    Leetcode 78. 子集
    Tableau数据连接与加载(数据提取)
    理解傅里叶变换
  • 原文地址:https://blog.csdn.net/aiguoba/article/details/127886980