2013年2月4日 星期一

[Linux 文章收集] CentOS : 防火牆開啓80端口以及已經開啓的端口查看方法

來源自 這裡 
CentOS 防火牆開啓80端口: 
網上搜索了很多都沒解決問題,下面是正確方法: 
#/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT // 接受 Web request
#/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT // 接受 SSH request

然後保存: 
#/etc/rc.d/init.d/iptables save

如果上面的步驟還沒好的話,可能是這個iptables文件使用的是包含調用. 一般的在 /etc/sysconfig/iptables 這個路徑上. 打開這個文件修改手動添加就行了. 

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

端口查看方法: 
# /etc/init.d/iptables status

Supplement: 
[Linux 文章收集] IPTables-Linux Firewall

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...