标签:udp inux lin 端口 tcp 常用命令 linux 永久 监听
nc命令最常用的用法:1、测试TCP端口
nc -vz ip tcp-port
2、测试UDP
nc -uvz ip udp-port
3、临时监听TCP端口
nc -l port
4、永久监听TCP端口
nc -lk port
5、临时监听UDP
nc -lu port
6、永久监听UDP
nc -luk port
标签:udp inux lin 端口 tcp 常用命令 linux 永久 监听
原文地址:https://blog.51cto.com/mapengfei/2451421