CentOS 关闭防火墙

转载

原文地址:http://www.cnblogs.com/ylh1223/archive/2012/05/31/2528517.html

1) 永久性生效,重启后不会复原

开启: chkconfig iptables on

关闭: chkconfig iptables off

2) 即时生效,重启后复原

开启: service iptables start

关闭: service iptables stop

查询TCP连接情况:

 netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'

查询端口占用情况:

 netstat   -anp   |   grep  portno(例如:netstat –apn | grep 80)

posted @ 2015-06-05 15:47  远洪  阅读(137)  评论(0)    收藏  举报