Oracle Linux 8:How To Migrate Existing Iptables rules to Nftables In OL8

本文介绍如何将Oracle Linux 8中现有的iptables规则迁移到nftables框架。nftables作为iptables的替代品,在Oracle Linux 8及更高版本中成为默认的网络包过滤框架,提供了更好的性能和便利性。文章详细描述了保存iptables规则、转换为nftables规则文件并加载到Oracle Linux 8系统的步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Oracle Linux 8:How To Migrate Existing Iptables rules to Nftables In OL8 (文档 ID 2570019.1)

APPLIES TO:

Linux OS - Version Oracle Linux 8.0 and later
Linux x86-64

GOAL

Oracle Linux 8, the default iptables network packet filtering framework been replaced with the nftables framework. As the designated successor to iptablesip6tablesarptables, and ebtables, the nftables framework includes packet classification facilities and several improvements, which provide added convenience and improved performance over the previously used packet-filtering tools.

How To Migrate Existing Iptables rules to Nftables In OL8

SOLUTION

 To Display the Existing rule on OL6 or Ol7 Server:

#iptables -L

DROP       udp  --  anywhere             anywhere             multiport dports epmap,microsoft-ds

DROP       udp  --  anywhere             anywhere             udp dpts:netbios-ns:netbios-ssn

DROP       udp  --  anywhere             anywhere             udp spt:netbios-ns dpts:1024:65535

DROP       tcp  --  anywhere             anywhere             multiport dports epmap,netbios-ssn,microsoft-ds

 1. To save the existing rules to a file , run below command 

#iptables-save > rules.iptables

 2. Move the step1 file to OL8 Server via scp or ftp. You can use VI editor as well to copy the content from OL6 or OL7 machine.

 3. Run the below command to generate the nft rules file on OL8 with iptables rules file.

# iptables-restore-translate -f rules.iptables > rules.nft

 4. Load the rules in OL8 machine , make sure nftables service is running on the system.

# nft -f rules.nft    --- load the rule via nft to nftables.

 5. To Display rule in OL8 Server .

# nft list ruleset

 You can see the rules have been migrated from OL6 or OL7 to OL8 server now, and can test them as well.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值