GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n

GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did not properly respond after a period of time

端口(address)若是小于1024,则需要修改端口。端口可能被占用

若端口,大于1024,则是windows设置的问题,在更新与安全——>开发者选项,打开开发者模式,设备门户后,在下面有wlan的使用端口与IP,将此IP写入net.Dial中的address即可使用
GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n_第1张图片
方法1 建立本地连接,IPV4,即可

conn, err := net.Dial("tcp", "127.0.0.1:8888")

如何上述不行,可以考虑关闭防火墙,管理员打开cmd(win+R),进入后粘贴

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /d 1 /t REG_DWORD /f

方法2 修改入站Windows的规则
GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n_第2张图片
GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n_第3张图片
依次点击入站规则、新建规则(入站规则是:连接计算机的方式)
GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n_第4张图片
这里我们选择端口
GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n_第5张图片
端口的类型可以自己选择(一般是用TCP比较多),本地端口嫌麻烦可以直接选择所有本地端口
GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n_第6张图片
GOland 网络——使用net.Dial创建端口,出现connectex: A connection attempt failed because the connected party did n_第7张图片
最后点击完成即可

你可能感兴趣的:(网络)