centos 6
關閉命令: service iptables stop
永久關閉防火牆:chkconfig iptables off
兩個命令同時執行,執行完成後檢視防火牆關閉狀態
service iptables status
centos7 的防火牆配置跟以前版本有很大區別,經過大量嘗試,終於找到解決問題的關鍵
centos7這個版本的防火牆預設使用的是firewall,與之前的版本使用iptables不一樣。按如下方便配置防火牆:
1、關閉防火牆:sudo
systemctl stop firewalld.service
2、關閉開機啟動:sudo
systemctl disable firewalld.service
3、安裝iptables防火牆
執行以下命令安裝iptables防火牆:sudo
yum
install
iptables-services
?4、配置iptables防火牆,開啟指定埠(具體跟以前版本一樣,網上介紹很多,這裡不多介紹了)
5. 設定iptables防火牆開機啟動:sudo
systemctl
enable
iptables
?ok了,根據配置的埠就可以訪問了
CentOS7和CentOS6的區別
centos6 ext4 centos7 xfs 說明 fdisk等磁碟操作命令使用都一樣,只是格式化磁碟時使用mkfs.xfs而不要用mkfs.ext4,ext4的檔案系統在centos7上只能讀不能寫。centos6 etc sysconfig network修改hostname的值 cento...
如何區別centos6和centos7
開機自檢,硬體自檢 mbr磁碟分割槽是一種使用最為廣泛的分割槽結構,它也被稱為dos分割槽結構,但它並不僅僅應用於 windows系統平台,也應用於linux,基於x86的unix等系統平台。它位於磁碟的0號扇區 一扇 區等於512位元組 是乙個重要的扇區 簡稱mbr扇區 1 mbr只支援2tb的硬...
Centos 6和Centos 7的區別
cat etc redhat release 檢視系統版本 1.檢視核心版本 uname a centos6.x uname r centos7.x 2.啟動載入器 centos6 grub legacy efibootmgr centos7 grub2 3.防火牆 iptables centos6...