Linux解決CentOS7關閉/開啟防火牆出現Unitiptables.servicefailedtoload:Nosuchfileordirectory.
轉載:http://blog.csdn.net/c233728461/article/details/52679558
CentOS7中執行
[plain] view plain copy
service iptables start/stop
會報錯Failed to start iptables.service: Unit iptables.service failed to load: No such file or directory.
在CentOS 7或RHEL 7或Fedora中防火牆由firewalld來管理,
如果要新增範圍例外埠 如 1000-2000
語法命令如下:啟用區域埠和協議組合
firewall-cmd [–zone=] –add-port=[-]/ [–timeout=]
此舉將啟用埠和協議的組合。埠可以是一個單獨的埠 或者是一個埠範圍 – 。協議可以是 tcp 或 udp。
實際命令如下:
新增
firewall-cmd –zone=public –add-port=80/tcp –permanent (–permanent永久生效,沒有此引數重啟後失效)
firewall-cmd –zone=public –add-port=1000-2000/tcp –permanent
重新載入
firewall-cmd –reload
檢視
firewall-cmd –zone= public –query-port=80/tcp
刪除
firewall-cmd –zone= public –remove-port=80/tcp –permanent
當然你可以還原傳統的管理方式。
執行一下命令:
[plain] view plain copy
systemctl stop firewalld
systemctl mask firewalld
並且安裝iptables-services:
[plain] view plain copy
yum install iptables-services
設定開機啟動:
[plain] view plain copy
systemctl enable iptables
[plain] view plain copy
systemctl stop iptables
systemctl start iptables
systemctl restart iptables
systemctl reload iptables
儲存設定:
[plain] view plain copy
service iptables save
OK,再試一下應該就好使了
開放某個埠 在/etc/sysconfig/iptables裡新增
-A RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 8080 -j ACCEPT
相關文章
- linux關閉防火牆命令 linux防火牆關閉和開啟命令Linux防火牆
- centos7關閉防火牆命令 centos7永久防火牆關閉CentOS防火牆
- Linux下關閉和開啟防火牆Linux防火牆
- Linux防火牆的關閉和開啟Linux防火牆
- CentOS7使用firewalld開啟關閉防火牆與埠CentOS防火牆
- CentOS7關閉防火牆CentOS防火牆
- Centos7 關閉防火牆CentOS防火牆
- Linux防火牆的關閉、開啟和配置Linux防火牆
- centos7怎麼檢視、開啟和關閉防火牆CentOS防火牆
- ubuntu 開啟/關閉ubuntu防火牆Ubuntu防火牆
- CentOS7關閉防火牆方法CentOS防火牆
- 教你如何開啟/關閉ubuntu防火牆Ubuntu防火牆
- Centos7設定關閉防火牆CentOS防火牆
- linux 關閉防火牆Linux防火牆
- 開啟、關閉防火牆或者開放埠防火牆
- Linux下檢視、關閉及開啟防火牆命令Linux防火牆
- CentOS8檢視防火牆狀態,開啟/關閉防火牆CentOS防火牆
- CentOS7檢視和關閉防火牆CentOS防火牆
- centos7怎麼永久關閉防火牆CentOS防火牆
- Linux中關閉防火牆Linux防火牆
- linux關閉防火牆命令是什麼 linux永久關閉防火牆命令分享Linux防火牆
- win10防火牆關閉還是開啟好_win10防火牆關閉開啟有什麼影響Win10防火牆
- ubuntu下開啟/關閉防火牆 及埠 - 命令Ubuntu防火牆
- Linux 7關閉防火牆方法Linux防火牆
- 【OS】Linux如何關閉防火牆Linux防火牆
- ubuntu 關閉防火牆命令 ubuntu怎樣關閉防火牆Ubuntu防火牆
- CentOS關閉防火牆CentOS防火牆
- OpenSUSE關閉防火牆防火牆
- win10防火牆關閉通知一直彈出解決方法Win10防火牆
- Centos7 開啟80埠防火牆命令CentOS防火牆
- 如何開啟或關閉win7自帶防火牆?Win7防火牆
- win10關閉防火牆方法_w10如何關閉防火牆Win10防火牆
- win10如何關閉啟用防火牆通知_win10關閉啟動防火牆通知的設定方法Win10防火牆
- CentOS 7關閉防火牆CentOS防火牆
- 關閉centos的防火牆CentOS防火牆
- win10怎麼關閉防火牆 win10關閉防火牆的方法Win10防火牆
- 開源防火牆解決方案防火牆
- linux下如何關閉防火牆?如何檢視防火牆當前的狀態Linux防火牆