centos6.8关闭防火墙命令

1、怎么查看centos版本
cat  /etc/redhat-release

2、永久性生效,重启后不会复原

开启: chkconfig iptables on

关闭: chkconfig iptables off

3、即时生效,重启后复原

开启: service iptables start

关闭: service iptables stop

4、查询TCP连接情况:

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

5、查询端口占用情况:

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

posted @ 2022-08-05 09:03  我命由我不由天—hao  阅读(185)  评论(0编辑  收藏  举报