1、基本操作
service iptables status
service iptables stop
service iptables start
service iptables restart
chkconfig iptables off
chkconfig iptables on2、檢視防火牆狀態,防火牆處於開啟狀態並且只開放了22埠
3、開啟80埠
vim /etc/sysconfig/iptables加入如下**,比著兩葫蘆畫瓢 :)
儲存退出後重啟防火牆
1、檢視firewall服務狀態
systemctl status firewalld
2、檢視firewall的狀態
firewall-cmd --state3、開啟、重啟、關閉、firewalld.service服務
service firewalld start
service firewalld restart
service firewalld stop4、檢視防火牆規則
firewall-cmd --list-all5、查詢、開放、關閉埠
firewall-cmd --query-port=8080/tcp
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --permanent --remove-port=8080/tcp
firewall-cmd --reload
1. firwall-cmd:是linux提供的操作firewall的乙個工具;
2. --permanent:表示設定為持久;
3. --add-port:標識新增的埠;
linux防火牆操作
1 firewalld的基本使用 啟動 systemctl start firewalld 檢視狀態 systemctl status firewalld 停止 systemctl disable firewalld 禁用 systemctl stop firewalld 2.systemctl是c...
linux 防火牆操作
1 基本操作 service iptables statusservice iptables stopservice iptables startservice iptables restartchkconfig iptables offchkconfig iptables on2 檢視防火牆狀態,...
linux 防火牆操作
1 基本操作 service iptables statusservice iptables stopservice iptables startservice iptables restartchkconfig iptables offchkconfig iptables on2 檢視防火牆狀態,...