Nếu bạn muốn tường lửa Ubuntu của bạn hoạt động theo cách tương tự như RedHat / Fedora, trong Ubuntu 18.04, bạn có thể muốn những điều này:
sudo apt install iptables-persistent netfilter-persistent
Sau đó chỉnh sửa các quy tắc trong /etc/iptables/rules.v[46]
Các lệnh khác có thể hữu ích:
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
Hai gói tương tự nhau, nhưng cung cấp chức năng hơi khác nhau. Nếu bạn chỉ cài đặt iptables-persistent
, bạn sẽ không nhận được tệp định nghĩa dịch vụ để xử lý chính xác trong systemd, vd/lib/systemd/system/netfilter-persistent.service
Nếu bạn chỉ cài đặt netfilter-persistent
, bạn sẽ thấy rằng các quy tắc không được áp dụng chính xác khi khởi động, theo 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.