CentOS服务端口开放
#例如开放81端口
iptables -I INPUT -i eth0 -p tcp --dport 81 -j ACCEPT
iptables -I OUTPUT -o eth0 -p tcp --sport 81 -j ACCEPT
#例如关闭81端口:
iptables -I INPUT -i eth0 -p tcp --dport 81 -j DROP
iptables -I OUTPUT -o eth0 -p tcp --sport 81 -j DROP
#然后保存
/etc/rc.d/init.d/iptables save
#重启防火墙
service iptables restart
lsof -i:81 查看端口是否监听成功
netstat -nupl (UDP类型的端口)
netstat -ntpl (TCP类型的端口)
以下服务端口
redis : 6379
memcached : 11211
mysqld : 3306
soffice : 8100
nginx : 80 /8080 /……
mysql : 3306
nfs : 2049
tomcat :8080