1. 程式人生 > >Centos6.5關閉防火牆命令

Centos6.5關閉防火牆命令

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)