Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> 關於Linux >> CentOS VPS如何打開80端口

CentOS VPS如何打開80端口

日期:2017/1/25 10:24:41      編輯:關於Linux

  你是否在使用雲服務器的時候網站出現打不開的狀況,那麼多半是vps的80端口未打開或被封了,那麼CentOS要如何打開vps 80端口呢?需要通過防火牆打開,具體的隨小編一起來了解下吧。

CentOS VPS如何打開80端口

  CentOS 防火牆開啟80端口

  #/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

  #/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT

  然後保存:

  #/etc/rc.d/init.d/iptables save

  注意需要重啟服務哦:執行service iptabels save 與 service iptables restart

  端口查看方法:

  vhost]# /etc/init.d/iptables status

  Table: filter

  Chain INPUT (policy ACCEPT)

  num target prot opt source destination

  1 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80

  2 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80

  Chain FORWARD (policy ACCEPT)

  num target prot opt source destination

  Chain OUTPUT (policy ACCEPT)

  num target prot opt source destination

  上面就是CentOS系統vps打開80端口的方法介紹了,很多人在開啟80端口後不知如何查看,所以本文還介紹了vps 80端口的查看方法。

Copyright © Windows教程網 All Rights Reserved