Squid: * Verbindung zu IP-Adresse Port 3128 fehlgeschlagen: Verbindung abgelehnt

Squid: * Verbindung zu IP-Adresse Port 3128 fehlgeschlagen: Verbindung abgelehnt

Ich richte mit Squid einen Proxyserver ein.

Nach all den Schritten habe ich einen Neustart durchgeführt,
sudo systemctl restart squid.service
der Folgendes zurückgab: active.
Dann habe ich versucht, die Verbindung zu testen:

curl -v -x http://your_squid_username:your_squid_password@ipaddress:3128 http://www.google.com/

Dieser Fehler war die Folge:

Versuch der Verbindung mit IP-Adresse:3128...
mit Port 3128 ist fehlgeschlagen: Verbindung abgelehnt.
Verbindung mit Port 3128 konnte nach 1 ms nicht hergestellt werden: Verbindung abgelehnt .
Verbindung wird geschlossen 0
curl: (7) Verbindung mit Port 3128 konnte nach 1 ms nicht hergestellt werden: Verbindung abgelehnt.

Die Konfigurationsdatei /etc/squid/squid.confhat diese Einstellungen:

#
# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
#
include /etc/squid/conf.d/*.conf
auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
# Example rule allowing access from your local networks.
acl localnet src ipaddress
# Adapt localnet in the ACL section to list your (internal) IP networks
# from where browsing should be allowed
#http_access allow localnet
http_access allow localhost
http_access allow authenticated

# And finally deny all other access to this proxy
http_access deny all

ich folgtedieser Leitfaden. Alles lief gut bis zum Beginn von Schritt 3, als ich curldie Squid-Verbindung testete.

Muss irgendetwas squid.confgeändert werden? Wie lässt sich das beheben?

Antwort1

Anstelle der IP-Adresse, die auf ip2location.com oder ähnlichen Seiten erscheint, ipaddresssollte entweder 127.0.0.1oder stehen localhost. Der Befehl sollte dann oder lautencurl -v -x http://your_squid_username:[email protected]:3128curl -v -x http://your_squid_username:your_squid_password@localhost:3128

verwandte Informationen