Viperdriver2000
Member
Hi,
An meinem DSL Anschluss gibt es immer wieder Probleme mit Youtube.
Also dachte ich mir mache ich auf meinem rootserver einen Squid3 proxy für youtube. Nur für mich mit User PW auth.
Das ganze habe ich anhand dieser Anleitung gemacht.
Das ganze ging einfach und ohne Problem.
Leider funktioniert das ganze aber nicht
Bzw es funktioniert schon...aber nur wenn ich es ohne die auth mache.
Ich also
in
ändere.
Aber das ist ja nicht die Lösung...
vielleicht kann mir ja jemand helfen oder mir Tipps geben.
EDIT:
Ich habe als username und passwort was leichtes genommen somit kann ich mich dabei nicht vertun
EDIT2:
Der Server ist nach dieser Anleitung installiert.
http://www.howtoforge.com/perfect-server-debian-wheezy-apache2-bind-dovecot-ispconfig-3
Danke & Gruß
Vip
An meinem DSL Anschluss gibt es immer wieder Probleme mit Youtube.
Also dachte ich mir mache ich auf meinem rootserver einen Squid3 proxy für youtube. Nur für mich mit User PW auth.
Das ganze habe ich anhand dieser Anleitung gemacht.
Code:
Die Installation ist mit folgenden Schritten recht schnell erledigt:
Zunächst solltet ihr euren frisch aufgesetzten Server auf den neusten Stand bringen. Das geht am einfachsten in einer Debian-Umgebung mit dem Befehl:
apt-get update && apt-get upgrade
Ist das getan erfolgt auch schon die Installation von Squid. Zudem installiert ihr euch euren favorisierten Editor, bei mir ist es nano:
apt-get install squid3 nano
Im nächsten Schritt geht es auch schon an die Konfiguration. Legt zunächst ein Passwort fest, indem ihr als erstes eine leere Datei passwd in /etc/squid3 erstellt:
touch /etc/squid3/passwd
Dann noch die erforderlichen Berechtigungen setzen..
chmod o+r /etc/squid3/passwd
..um anschließend mit htpasswd ein valide passwd-Datei zu erstellen:
htpasswd /etc/squid3/passwd DeinBenutzername
Nun bearbeitet ihr die automatisch erstellte Konfigrationsdatei des Squid-Proxys, zu finden unter /etc/squid3/my.conf:
nano /etc/squid3/my.conf
Fügt in dieser Datei bitte den folgenden Konfig.-Code an. Er beschreibt wie ihr euch später mit dem Proxy authentifizieren werdet und schaltet in der letzten Zeile diese neue Konfiguration frei.
# TAG: auth_param
auth_param basic realm my proxy
auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/passwd
acl ncsa_users proxy_auth REQUIRED
# TAG: http_access
http_access allow ncsa_users
Diese Konfiguration muss noch zum Abschluss in der Haupt-Konfig.-Datei /etc/squid3/squid.conf (am besten ganz oben) eingebunden werden:
include /etc/squid3/my.conf
Jetzt noch den Squid starten:
service squid3 start
Das ganze ging einfach und ohne Problem.
Leider funktioniert das ganze aber nicht
Bzw es funktioniert schon...aber nur wenn ich es ohne die auth mache.
Ich also
Code:
# TAG: http_access
http_access allow ncsa_users
Code:
# TAG: http_access
http_access allow all
Aber das ist ja nicht die Lösung...
Code:
tail -f /var/log/squid3/access.log
1419368614.636 93 79.195.xxx.4 TCP_DENIED/407 4193 GET http://web.de/ viperdriver2000 NONE/- text/html
1419368620.394 0 79.195.xxx.4 TCP_DENIED/407 4193 GET http://web.de/ viperdriver2000 NONE/- text/html
1419368625.678 0 79.195.xxx.4 TCP_DENIED/407 4193 GET http://web.de/ viperdriver2000 NONE/- text/html
1419368667.807 0 79.195.xxx.4 TCP_DENIED/407 4193 GET http://web.de/ viperdriver2000 NONE/- text/html
1419368777.459 1 79.195.xxx.4 TCP_DENIED/407 4193 GET http://web.de/ viperdriver2000 NONE/- text/html
1419370200.176 150 79.195.xxx.4 TCP_DENIED/407 4193 GET http://web.de/ viperdriver2000 NONE/- text/html
1419370207.398 15 79.195.xxx.4 TCP_DENIED/407 4193 GET http://web.de/ viperdriver2000 NONE/- text/html
Code:
squid3 -k parse
2014/12/23 22:46:32| Processing Configuration File: /etc/squid3/squid.conf (depth 0)
2014/12/23 22:46:32| Processing: include /etc/squid3/my.conf
2014/12/23 22:46:32| Processing Configuration File: /etc/squid3/my.conf (depth 1)
2014/12/23 22:46:32| Processing: auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/passwd
2014/12/23 22:46:32| Processing: auth_param basic children 5
2014/12/23 22:46:32| Processing: auth_param basic realm Squid proxy
2014/12/23 22:46:32| Processing: auth_param basic credentialsttl 2 hours
2014/12/23 22:46:32| Processing: auth_param basic casesensitive off
2014/12/23 22:46:32| Processing: acl ncsa_users proxy_auth REQUIRED
2014/12/23 22:46:32| Processing: http_access allow ncsa_users
2014/12/23 22:46:32| Processing: acl manager proto cache_object
2014/12/23 22:46:32| Processing: acl localhost src 127.0.0.1/32 ::1
2014/12/23 22:46:32| Processing: acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
2014/12/23 22:46:32| Processing: acl SSL_ports port 443
2014/12/23 22:46:32| Processing: acl Safe_ports port 80 # http
2014/12/23 22:46:32| Processing: acl Safe_ports port 21 # ftp
2014/12/23 22:46:32| Processing: acl Safe_ports port 443 # https
2014/12/23 22:46:32| Processing: acl Safe_ports port 70 # gopher
2014/12/23 22:46:32| Processing: acl Safe_ports port 210 # wais
2014/12/23 22:46:32| Processing: acl Safe_ports port 1025-65535 # unregistered ports
2014/12/23 22:46:32| Processing: acl Safe_ports port 280 # http-mgmt
2014/12/23 22:46:32| Processing: acl Safe_ports port 488 # gss-http
2014/12/23 22:46:32| Processing: acl Safe_ports port 591 # filemaker
2014/12/23 22:46:32| Processing: acl Safe_ports port 777 # multiling http
2014/12/23 22:46:32| Processing: acl CONNECT method CONNECT
2014/12/23 22:46:32| Processing: http_access allow manager localhost
2014/12/23 22:46:32| Processing: http_access deny manager
2014/12/23 22:46:32| Processing: http_access deny !Safe_ports
2014/12/23 22:46:32| Processing: http_access deny CONNECT !SSL_ports
2014/12/23 22:46:32| Processing: http_access allow localhost
2014/12/23 22:46:32| Processing: http_port 3128
2014/12/23 22:46:32| Processing: coredump_dir /var/spool/squid3
2014/12/23 22:46:32| Processing: refresh_pattern ^ftp: 1440 20% 10080
2014/12/23 22:46:32| Processing: refresh_pattern ^gopher: 1440 0% 1440
2014/12/23 22:46:32| Processing: refresh_pattern -i (/cgi-bin/|\?) 0 0% 0
2014/12/23 22:46:32| Processing: refresh_pattern . 0 20% 4320
2014/12/23 22:46:32| Processing: cache_effective_user proxy
2014/12/23 22:46:32| Processing: cache_effective_group proxy
Code:
root@server:~# ll /usr/lib/squid3/ncsa_auth
-rwxr-xr-x 1 root root 27K Aug 28 08:43 /usr/lib/squid3/ncsa_auth
root@server:~# ll /etc/squid3/passwd
-rw-r--r-- 1 600 root 88 Dez 23 22:05 /etc/squid3/passwd
Code:
root@server:~# ps fauwx |grep squid
root 15527 0.0 0.0 5636 552 pts/2 S+ 22:46 0:00 | \_ tail -f /var/log/squid3/access.log
root 15877 0.0 0.0 9900 892 pts/5 S+ 22:49 0:00 \_ grep squid
root 12459 0.0 0.0 49960 1832 ? Ss 22:29 0:00 /usr/sbin/squid3 -YC -f /etc/squid3/squid.conf
proxy 12463 0.0 0.3 86964 14628 ? S 22:29 0:00 \_ (squid) -YC -f /etc/squid3/squid.conf
root 12464 0.0 0.0 17288 648 ? S 22:29 0:00 \_ (ncsa_auth) /etc/squid3/passwd
root 12465 0.0 0.0 17156 408 ? S 22:29 0:00 \_ (ncsa_auth) /etc/squid3/passwd
root 12466 0.0 0.0 17156 404 ? S 22:29 0:00 \_ (ncsa_auth) /etc/squid3/passwd
root 12467 0.0 0.0 17156 404 ? S 22:29 0:00 \_ (ncsa_auth) /etc/squid3/passwd
root 12468 0.0 0.0 17156 404 ? S 22:29 0:00 \_ (ncsa_auth) /etc/squid3/passwd
vielleicht kann mir ja jemand helfen oder mir Tipps geben.
EDIT:
Ich habe als username und passwort was leichtes genommen somit kann ich mich dabei nicht vertun
EDIT2:
Der Server ist nach dieser Anleitung installiert.
http://www.howtoforge.com/perfect-server-debian-wheezy-apache2-bind-dovecot-ispconfig-3
Danke & Gruß
Vip
Zuletzt bearbeitet: