linux如何禁用防火墻
linux如何禁用防火墻
我的linux不想用防火墻了,想禁用下,該怎么樣做呢?下面由學(xué)習(xí)啦小編給你做出詳細(xì)的linux禁用防火墻方法介紹!希望對你有幫助!
linux禁用防火墻方法一:
firewalld (Fedora, CentOS, RedHat....): systemctl stop firewalld
ufw (ubuntu): service ufw stop
其他的不清楚。但建議查詢相關(guān)防火墻文檔,配置規(guī)則。
linux禁用防火墻方法二:
1.重啟后永久性生效:
開啟:chkconfig iptables on
關(guān)閉:chkconfig iptables off
2. 即時生效,重啟后失效:
開啟:service iptables start
關(guān)閉:service iptables stop
linux禁用防火墻方法三:
Linux中現(xiàn)主要有兩套管理服務(wù)的軟件。
大多數(shù)的發(fā)行版使用SysV init的系統(tǒng)啟動進程管理體系,即service和chkconfig命令來配置和控制服務(wù),例如CentOS 6
有些發(fā)行版則默認(rèn)使用比較新的也是爭議很大的systemd體系,例如CentOS 7。
CentOS 6:
service iptables start #啟動防火墻
service iptables stop #關(guān)閉防火墻
chkconfig iptables off #禁止防火墻開機啟動
CentOS 7:
systemctl start firewalld.service #啟動firewall
systemctl stop firewalld.service #關(guān)閉firewall
systemctl disable firewalld.service #禁止firewall開機啟動
看了“ linux如何禁用防火墻”文章的還看了: