User-Profile-Image
hankin
  • 5
  • centos7
  • docker
  • mysql
  • PostgreSQL
  • git/gitlab
  • ELK
  • python
    • python-Tornado
    • python-django
  • redis
  • nginx
  • kvm
  • proxmox
  • mongo
  • kubernetes
  • prometheus
  • GlusterFs
  • nfs
  • freeswitch
  • httpd
  • shell脚本
  • linux
  • fastdfs
  • nextcloud
  • openssl
  • openvpn
  • rabbitmq
  • sqlite
  • svn
  • java
  • ubuntu
  • vue2
  • wordpress
  • php
  • IOT物联网
  • 项目
  • 故障处理
  • 树莓派
  • 博客存档
  • 未分类
  • 杂项
  • #1742(无标题)
  • 新视野
  • 分类
    • 项目
    • 树莓派
    • 杂项
    • 未分类
    • 新视野
    • 故障处理
    • 博客存档
    • 交换机
    • wordpress
    • vue2
    • ubuntu
    • svn
    • sqlite
    • shell脚本
    • redis
    • rabbitmq
    • python-django
    • python
    • proxmox
    • prometheus
    • PostgreSQL
    • php
    • openvpn
    • openssl
    • nginx
    • nfs
    • nextcloud
    • mysql
    • mongo
    • linux
    • kvm
    • kubernetes
    • java
    • IOT物联网
    • httpd
    • GlusterFs
    • git/gitlab
    • freeswitch
    • fastdfs
    • ELK
    • docker
    • centos7
  • 页面
    • #1742(无标题)
  • 友链
      请到[后台->主题设置->友情链接]中设置。
Help?

Please contact us on our email for need any support

Support
    首页   ›   centos7   ›   正文
centos7

firewalld 使用ipset 拒绝国外ip

2022-12-06 10:52:43
1152  0 0

firewalld 使用ipset 拒绝国外ip

获取中国ip列表
方法1第三方:
    wget https://www.isres.com/china_ip_list.txt
    wget https://github.com/17mon/china_ip_list/blob/master/china_ip_list.txt
方法2apnic官方:
http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest
可添加有需要的内网段
echo 192.168.0.0/16 >>  china_ip_list.txt
echo 10.10.0.0/16 >>  china_ip_list.txt
新建、删除集合
firewall-cmd --permanent --new-ipset=china --type=hash:net
  #–option=family=inet6指定该ipset使用IPV6地址

firewall-cmd --permanent --delete-ipset=xx
添加ip,从文件中
firewall-cmd --permanent --ipset=china --add-entries-from-file=china_ip_list.txt
手动添加删除ip
firewall-cmd --permanent --ipset=[ipset_name] --add-entry=[xx.xx.xx.xx]
firewall-cmd --permanent --ipset=[ipset_name] --remove-entry=[xx.xx.xx.xx]
设置富规则,允许国内ip访问所有端口、协议
firewall-cmd --permanent --add-rich-rule 'rule family="ipv4" source ipset="china" accept'
设置富规则,允许国内ip访问指定端口、tcp
firewall-cmd --permanent --add-rich-rule 'rule family="ipv4" source ipset="china" port protocol="tcp" port="18022" accept'
重载才会生效
firewall-cmd --reload
查看ipset名字
firewall-cmd --get-ipsets
查看指定ipset信息
firewall-cmd --info-ipset=china
#ip在一行输出

firewall-cmd --permanent --ipset=china --get-entries
#一行一个ip,方便查看
其他
iptables存在丢失问题,firewalld正常

查看ipset集合的文件位置
firewall-cmd --permanent --path-ipset=sshblock
    #/etc/firewalld/ipsets/...

判断一个ip是否在集合中
如果集合是ip段,判断ip结果异常
firewall-cmd --permanent --ipset=china --query-entry
评论 (0)

点击这里取消回复。

欢迎您 游客  

Copyright © 2025 网站备案号 : 蜀ICP备2022017747号
smarty_hankin 主题. Designed by hankin
主页
页面
  • #1742(无标题)
博主
tang.show
tang.show 管理员
linux、centos、docker 、k8s、mysql等技术相关的总结文档
215 文章 2 评论 203221 浏览
测试
测试