centos 7 下怎么看端口流量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7 下怎么看端口流量相关的知识,希望对你有一定的参考价值。
参考技术A 你好,方法如下: 1 查询端口号:firewall-cmd --query-port=8020/tcp 查询端口号8020 是否开启! 2 开永久端口号:firewall-cmd --add-port=8020/tcp --permanent 这里把8020替换为需要开的端口号, --permanent是指永久的意思。本回答被提问者采纳centos 端口没开 怎么办
参考技术A 你是否在使用云服务器的时候网站出现打不开的状况,那么多半是vps的80端口未打开或被封了,那么CentOS要如何打开vps 80端口呢?需要通过防火墙打开,具体的随小编一起来了解下吧。 CentOS 防火墙开启80端口 #/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT #/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT 然后保存: #/etc/rc.d/init.d/iptables save 注意需要重启服务哦:执行service iptabels save 与 service iptables restart 端口查看方法: vhost]# /etc/init.d/iptables status Table: filter Chain INPUT (policy ACCEPT) num target prot opt source destination 1 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 2 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 Chain FORWARD (policy ACCEPT) num target prot opt source destination Chain OUTPUT (policy ACCEPT) num target prot opt source destination 上面就是CentOS系统vps打开80端口的方法介绍了,很多人在开启80端口后不知如何查看,所以本文还介绍了vps 80端口的查看方法。以上是关于centos 7 下怎么看端口流量的主要内容,如果未能解决你的问题,请参考以下文章
如何在CentOS 7 sysdig审核网络流量在LAMP服务器