世界上並沒有完美的程式,但是我們並不因此而沮喪,因為寫程式就是乙個不斷追求完美的過程。firewall:
檢視所有開放的埠:firewall-cmd --zone=public --list-ports
新增埠:firewall-cmd --zone=public --add-port=80/tcp --permanent
刪除埠:firewall-cmd --zone= public --remove-port=80/tcp --permanent
重新整理:firewall-cmd --reload
狀態:systemctl status firewalld
開啟:systemctl start firewalld
關閉:systemctl stop firewalld
重啟:systemctl restart firewalld
開機啟動:systemctl enable firewalld
關閉開機啟動:systemctl disabled firewalld
iptables:
新增埠:
vi /etc/sysconfig/iptables
-a rh-firewall-1-input -m state --state new -m tcp -p tcp -s [ip] --dport [port] -j accept
狀態:service iptables status
開啟:service iptables start
重啟:service iptables restart
關閉:service iptables stop
Linux防火牆配置
重啟後生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以上命令執行...
linux 防火牆配置
把tcp的80埠配置為允許任何ip訪問 iptables i input ptcp dport 80 j accept 上面第三步的方法只是臨時生效的,只要你重啟了虛擬機器或者說重啟了linux,就必須重新設定才可以訪問,解決辦法如下 在命令列下輸入 vi etc selinux config 修改...
linux 防火牆配置
防火牆配置 centos 7預設使用的是firewall作為防火牆,這裡改為iptables防火牆。firewall操作 service firewalld status 檢視防火牆狀態 disabled 表明 已經禁止開啟啟動 enable 表示開機自啟,inactive 表示防火牆關閉狀態 ac...