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.conf
hat 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 curl
die Squid-Verbindung testete.
Muss irgendetwas squid.conf
geändert werden? Wie lässt sich das beheben?
Antwort1
Anstelle der IP-Adresse, die auf ip2location.com oder ähnlichen Seiten erscheint, ipaddress
sollte entweder 127.0.0.1
oder stehen localhost
. Der Befehl sollte dann oder lautencurl -v -x http://your_squid_username:[email protected]:3128
curl -v -x http://your_squid_username:your_squid_password@localhost:3128