啟動防火牆
1) 重啟後生效
開啟: chkconfig iptables on
關閉: chkconfig iptables off
2) 即時生效,重啟後失效
開啟: service iptables start
關閉: service iptables stop
需要說明的是對於linux下的其它服務都可以用以上命令執行開啟和關閉操作。
在開啟了防火牆時,做如下設定,開啟相關埠。
修改/etc/sysconfig/iptables 檔案,新增以下內容:
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 80 -j accept
-a rh-firewall-1-input -m state --state new -m tcp -p tcp --dport 22 -j accept
檢視所有程序,包括服務,命令裡ps -aux是netconfig在redhat裡面是字元介面下的網絡卡配置工具。
chkconfig --list
可以列出sysv和xinet服務在各個runlevel的預設啟動狀態。
service 服務名 引數
檢視狀態的引數好像是status 吧。
自啟動服務
0
給主人留下些什麼吧!~~
Linux 作業系統防火牆配置(centos)
檔案路徑 etc hosts.allow 和 etc hosts.deny 當hosts.allow和 host.deny相衝突時,以hosts.allow設定為準。配置如下 服務 ip 動作 sshd 192.168.88.allow sshd all deny 即時生效 iptables a i...
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 檢視防火牆狀態,...