Настройка Proxifier (или альтернативной программы) без туннеля ssl на порт 80 - PullRequest
0 голосов
/ 23 сентября 2018

Итак, они установили интернет-сервис в моем университете, и теперь мы можем пойти в класс, подключить кабель Ethernet и подключиться к Интернету.Проблема в том, что для доступа к сети нам нужно подключиться к Porxy.Я думаю, что это HTTPS-прокси, адрес 192.168.10.18 и порт 8080. Аутентификация также включена, и у каждого учащегося есть своя учетная запись.Проблема в том, что я не хочу менять настройки прокси-сервера в каждой программе каждый раз, когда использую это конкретное соединение, поэтому я попытался настроить проксификатор.Однако это дало мне эту ошибку:

[05:58] Testing Started.
Proxy Server
Address:    192.168.10.18:8080
Protocol:   HTTPS
Authentication: Basic
Username:   **********

[05:58] Starting: Test 1: Connection to the Proxy Server
[05:58] IP Address: 192.168.10.18
[05:58] Connection established
[05:58] Test passed.
[05:58] Starting: Test 2: Connection through the Proxy Server
Error: the proxy server (Squid) is not configured to allow SSL tunnel to port 80.
To fix the problem please find and comment the following line in the Squid
configuration file (squid.conf):
    http_access deny CONNECT !SSL_ports
The proxy server reply header is:
    HTTP/1.1 403 Forbidden
    Server: squid/3.4.8
    Mime-Version: 1.0
    Date: Sun, 23 Sep 2018 14:03:39 GMT
    Content-Type: text/html
    Content-Length: 3137
    X-Squid-Error: ERR_ACCESS_DENIED 0
    Vary: Accept-Language
    Content-Language: en
    X-Cache: MISS from Squid-SI-01
    X-Cache-Lookup: NONE from Squid-SI-01:8080
    Via: 1.1 Squid-SI-01 (squid/3.4.8)
    Connection: keep-alive
[05:58] Test failed.
[05:58] Testing Finished.

Я также пытался настроить его как HTTP-прокси, но получил эту ошибку:

[11:35] Testing Started.
Proxy Server
Address:    192.168.10.18:8080
Protocol:   HTTP
Authentication: Basic
Username:   *************

[11:35] Starting: Test 1: Connection to the Proxy Server
[11:35] IP Address: 192.168.10.18
[11:35] Connection established
[11:35] Test passed.
[11:35] Starting: Test 2: Connection through the Proxy Server
[11:35] Connection to www.google.com:80 established through the proxy server.
[11:35] Error : the reply that was recieved from the target host does not look like a usual Web Server reply.
Please make sure that the target host is a Web Server.
The error may also indicate that the proxy server is not operating properly.
Target host reply = HTTP/1.1 407
[11:35] Test failed.
[11:35] Testing Finished.

Я что-то не так делаю?Есть ли какое-либо другое программное обеспечение, которое я мог бы использовать в моей ситуации?

...