หากคุณต้องการให้ไฟร์วอลล์ Ubuntu ทำงานในลักษณะเดียวกันกับ RedHat / Fedora ใน Ubuntu 18.04 คุณอาจต้องการสิ่งเหล่านี้:
sudo apt install iptables-persistent netfilter-persistent
จากนั้นแก้ไขกฎใน /etc/iptables/rules.v[46]
คำสั่งอื่น ๆ ที่อาจมีประโยชน์:
netfilter-persistent save
netfilter-persistent start
iptables-save > /etc/iptables/rules.v4
ip6tables-save > /etc/iptables/rules.v6
iptables-restore < /etc/iptables/rules.v4
ip6tables-restore < /etc/iptables/rules.v6
systemctl stop netfilter-persistent
systemctl start netfilter-persistent
systemctl restart netfilter-persistent
แพคเกจทั้งสองมีความคล้ายคลึงกัน แต่มีฟังก์ชั่นที่แตกต่างกันเล็กน้อย หากคุณติดตั้งเพียงอย่างเดียวiptables-persistent
คุณจะไม่ได้รับไฟล์ข้อกำหนดบริการสำหรับการจัดการที่ถูกต้องใน systemd เช่น/lib/systemd/system/netfilter-persistent.service
หากคุณติดตั้งเพียงอย่างเดียวnetfilter-persistent
คุณจะพบว่ากฎนั้นใช้ไม่ถูกต้องในการบู๊ตตาม README
netfilter-persistent and its plugins
------------------------------------
netfilter-persistent does no work on its own. You need the accompanying
plugins (for example, iptables-persistent) to load and save filter rules.
However, commands are run from netfilter-persistent. For example, to save
all filter rules:
netfilter-persistent save
or to load them:
netfilter-persistent start
For more details, see `man netfilter-persistent`.
The system service will try to load rules at startup if enabled, but by
default it will not flush rules at shutdown. This behaviour can be changed
by editing /etc/default/netfilter-persistent.