确定代理服务器/端口

确定代理服务器/端口

问题描述:

如果这是一个简单的问题,我很抱歉,我不熟悉这种事情.

I apologize if this is a simplistic question, I am not familiar with this kind of thing.

我正在尝试确定我的代理服务器 IP 和端口号,以便使用 Google 日历同步程序.我使用谷歌浏览器下载了 proxy.pac 文件.最后一行是:

I am trying to determine my proxy server ip and port number in order to use a google calendar syncing program. I downloaded the proxy.pac file using google chrome. The last line reads:

return "PROXY proxyhost:1081";

我相信这意味着端口号是 1081,但是对于代理服务器,我期待的是格式为proxy.example.com"的东西有什么建议吗?

I believe that means the port number is 1081, but for the proxy server, I was expecting something with the format "proxy.example.com" Any advice?

谢谢

您使用的是 Windows 操作系统吗?

Are you using the Windows operating system?

你可以按Win+R,在运行框中输入cmd",你会得到命令提示符",然后输入以下命令并按回车.

You can press Win+R, input "cmd" in the run box, you will get the "command Prompt", then input the following command and press Enter.

命令 1

ipconfig  /all | find /i "Dns Suffix"

它会显示类似这样的内容.

it will show something like this.

主要 Dns 后缀.......: xxx.xxx.xxx

Primary Dns Suffix . . . . . . . : xxx.xxx.xxx

命令 2

ping proxyhost

它会显示类似这样的内容.

it will show something like this.

ping proxyhost.xxx.xxx.xxx [yyy.yyy.yyy.yyy] 32字节数据:来自yyy.yyy.yyy.yyy的回复:bytes=32 time=1ms TTL=60

Pinging proxyhost.xxx.xxx.xxx [yyy.yyy.yyy.yyy] with 32 bytes of data: Reply from yyy.yyy.yyy.yyy: bytes=32 time=1ms TTL=60

那么也许proxyhost.xxx.xxx.xxx"就是你想要的.

Then maybe "proxyhost.xxx.xxx.xxx" is what you want.