Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - YOBA

Pages: [1]
1
РЕБЯТА!!!!!!!!!!!!111111111111 ПОМОГИТЕ ПОЖАЛУЙСТА!!!!!!!
У меня не работате http proxi через openvpn-туннель zentyal-zentyal.???????!!!!!!!!!!!!!!!!! (((((((((((((((((
все остальные сервисы работают например SSH??????????????????
а порт 3128 всегда оказывается закрыт (фильтеред)

во всех местах правила прописывать пробовал!!!!!!!!!!!!!!!!!!!!
и в "доступ из внешних сетей" и "доступ из внутриних сетей" и даже проброс портов пробовал ниработает?!!!!!!!!!!!!
что делать-то теперь?!!!???????!!!!!

помогите пожалуйста!!!!!!!!!!!!

PS: Я серьёзно. Zentyal 2.3.

2
Кто как настраивает подключение к интернету через PPTP / L2TP?
Обсуждаем, делимся скриптами авто- и переподключения, маленькими хитростями, советами хозяйке на заметку.

3
Installation and Upgrades / Anonymous proxy in Zentyal
« on: April 05, 2012, 12:20:45 pm »
Been searching all over the Internets for "how to make Zentyal proxy anonymous", found lots of outdated info, including explanation of config profiles/hooks based on outdated "ebox" file structure.

Here's what I've done to make squid anonymous in Zentyal.

0) Check whether your proxy is anonymous or not here: http://tools-on.net/privacy.shtml
1) Create a file with additional squid settings:
Code: [Select]
#nano /etc/squid/squid_anonymous.conf

squid_anonymous.conf file contents:
Code: [Select]
via off
header_access Cache-Control deny all
header_access Proxy-Connection deny all
header_access X-Cache deny all
header_access X-Cache-Lookup deny all
header_access Via deny all
header_access Forwarded-For deny all
header_access X-Forwarded-For deny all
header_access Pragma deny all
header_access Keep-Alive deny all

2) Create HTTP proxy hook to apply additional config every time Zentyal (it's HTTP Proxy) is started:
Code: [Select]
#nano /etc/zentyal/hooks/squid.postservice

Contents of squid.postservice file is as follows:
Code: [Select]
echo "include /etc/squid/squid_anonymous.conf" >> /etc/squid/squid.conf
service squid restart

3) squid.postservice is actually a script, so, we need to make it executable:
Code: [Select]
#chmod +x /etc/zentyal/hooks/squid.postservice

4) That's all.
Restart Zentyal, check proxy anonymity, ..., PROFIT!

It would be nice if Zentyal developers included tick/dropdown boxes for advanced configuration changes.

Pages: [1]