Was ich so treibe...

Uli's IT-Blog - Konzeption, Entwicklung, Betrieb

Squid: Aufsetzen eines Proxies mit Anmeldezwang

Zum Test meines Mini-Projektes Forward-Proxy brauche ich einen Proxy, der den Zugriff auf das Internet nur nach Anmeldung zulässt. Hierzu setze ich eine VM mit Squid auf und konfiguriere diesen dann entsprechend. Die VM ist über eine Netzwerkbrücke in meinen Desktop eingebunden.

Zusatzpakete installieren

1
2
sudo apt-get install squid
sudo apt-get install apache2-utils

Squid konfigurieren

/etc/squid3/squid.conf

Änderungen an ./etc/squid3/squid.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- squid.conf.orig 2013-09-21 13:46:51.000000000 +0200
+++ squid.conf   2013-09-21 13:50:29.000000000 +0200
@@ -334,10 +334,10 @@
 ##auth_param digest nonce_max_duration 30 minutes
 ##auth_param digest nonce_max_count 50
 ##
-##auth_param basic program <uncomment and complete this line>
-##auth_param basic children 5
-##auth_param basic realm Squid proxy-caching web server
-##auth_param basic credentialsttl 2 hours
+auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/squid_user
+auth_param basic children 5
+auth_param basic realm Squid proxy-caching web server
+auth_param basic credentialsttl 2 hours
 #Default:
 # none

@@ -687,6 +687,8 @@
 #
 #Default:
 # acl all src all
+acl uli proxy_auth REQUIRED
+http_access allow uli
 #
 #
 # Recommended minimum configuration:

Benutzer-Listen-Datei anlegen

1
sudo touch /etc/squid3/squid_user

Benutzer samt Kennwort anlegen

1
2
3
4
$ sudo htpasswd /etc/squid3/squid_user uli
New password: xxxxxx
Re-type new password: xxxxxx
Adding password for user uli

Squid neu starten

1
sudo /etc/init.d/squid3 restart

Proxy-Server verwenden

Mit den obigen Vorbereitungen kann ich den neuen Proxy-Server nun mittels http://{hostname-der-vm}:3128 ansprechen.

Effektive Konfigurationsdatei ermitteln

Mit diesen Befehlen kann die effektive Konfigurationsdatei ermittelt werden. Die vielen Kommentare werden dabei ausgefiltert:

1
grep -v "^\s*#" /etc/squid3/squid.conf|grep -v "^\s*$"

Die effektive Squid-Konfiguration sieht ohne Kommentare dann so aus:

./etc/squid3/squid.conf ohne Kommentare
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/squid_user
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
acl uli proxy_auth REQUIRED
http_access allow uli
acl manager proto cache_object
acl localhost src 127.0.0.1/32 ::1
acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
acl SSL_ports port 443
acl Safe_ports port 80        # http
acl Safe_ports port 21        # ftp
acl Safe_ports port 443       # https
acl Safe_ports port 70        # gopher
acl Safe_ports port 210       # wais
acl Safe_ports port 1025-65535    # unregistered ports
acl Safe_ports port 280       # http-mgmt
acl Safe_ports port 488       # gss-http
acl Safe_ports port 591       # filemaker
acl Safe_ports port 777       # multiling http
acl CONNECT method CONNECT
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all
http_port 3128
coredump_dir /var/spool/squid3
refresh_pattern ^ftp:     1440    20% 10080
refresh_pattern ^gopher:  1440    0%  1440
refresh_pattern -i (/cgi-bin/|\?) 0   0%  0
refresh_pattern (Release|Packages(.gz)*)$      0       20%     2880
refresh_pattern .     0   20% 4320

Änderungen

  • 2013-10-06: Komplette Konfigurationsdatei ohne Kommentare hinzugefügt

Comments