Determining proxy server/port

前端 未结 2 1191
耶瑟儿~
耶瑟儿~ 2021-01-14 19:15

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

I am trying to determine my proxy server ip and port number in order to use

2条回答
  •  离开以前
    2021-01-14 19:49

    Are you using the Windows operating system?

    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.

    command 1

    ipconfig  /all | find /i "Dns Suffix"
    

    it will show something like this.

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

    command 2

    ping proxyhost
    

    it will show something like this.

    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

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

提交回复
热议问题