1. 无法监听网络端口

cmd
# 1.查询端口是否被占用
netstat -ano | findstr "port"
# 2. 用nc测试一下能否监听成功
nc -l -p port # 可能会报错 无法bind等
# 3. 重启win路由
net stop winnat
net start winnat
# 4. done