Centos
即使未啟動 firewalld 和 iptables 服務,iptables 也會在重新啟動時執行。為什麼?
我在重啟時禁用了 iptables 服務和 firewalld,而且它們也沒有啟動。但是,仍然
iptables -L
輸出一些規則。為什麼?我可以刷新 iptables 配置並永久保存。但是我不明白在 RHEL 7.2 中完全禁用該服務時它是如何啟動的
更新1:
兩個服務上的禁用和遮罩應該可以解決問題:
systemctl mask firewalld systemctl mask iptables systemctl disable firewalld systemctl disable iptables
請記住,可以載入禁用的服務,並且如果依賴於它的服務啟動,它將啟動。因此,屏蔽和禁用應該是確保服務不啟動的最佳方式。