Linux 常用命令 nc
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 常用命令 nc相关的知识,希望对你有一定的参考价值。
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
以上是关于Linux 常用命令 nc的主要内容,如果未能解决你的问题,请参考以下文章