nc 打印 (?)。(?) 是什么意思?

nc 打印 (?)。(?) 是什么意思?

当我使用 nc 测试端口时,它会打印出一个带有“(?)”的结果。我查阅了手册页和在线资料,但找不到答案。有人能解释一下吗?谢谢。

# nc -v -u -w 3 localhost 10003
localhost [127.0.0.1] 10003 (?) open

我有 netcat-traditional 1.10-41.1

答案1

感谢 Michael 的指出。这是传统版本。我刚刚安装了 openbsd 版本,现在可以正确打印结果了:

# nc -v -u -w 3 localhost 10000
Connection to localhost 10000 port [udp/*] succeeded!

相关内容