Cenots7 iptables规则查看导出导入
查看规则
sudo iptables -L -n -v --line-numbers
sudo iptables -L -n -v --line-numbers | head -n 10删除第1条
iptables -D INPUT 1保存规则
sudo service iptables save前置条件
sudo yum install iptables-services
sudo systemctl stop firewalld
sudo systemctl disable firewalld
sudo systemctl enable iptables
sudo systemctl start iptables持久化 ipset
# 保存 ipset 配置
sudo ipset save > /etc/ipset.conf
# 启用开机恢复
echo "ipset restore < /etc/ipset.conf" | sudo tee -a /etc/rc.local
# 确保 rc.local 可执行
sudo chmod +x /etc/rc.local导出规则配置
sudo iptables-save > /root/iptables-backup-$(date +%F).rules导入规则配置
sudo iptables-restore < /root/iptables-backup-2025-11-29.rules去掉注释行
sed -i 's/#.*//' /root/iptables-backup-2025-11-29.rules 版权申明
本文系作者 @技术狂人张大胆 原创发布在AP135 乐享生活网站点。未经许可,禁止转载。
评论