macOS本地tcp测试命令

# 监听 6666 端口 相当于创建了一个本地tcp服务 其他语言可以通过 127.0.0.1:6666 链接
nc -lk 6666
# 链接一个tcp服务
nc -v 127.0.0.1 6666

你可能感兴趣的:(macOS本地tcp测试命令)