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.


Messages - eduardogoncalves

Pages: [1]
1
Same here with Zentyal 5.0.10 and "Domain Controller and File Sharing" version 5.0.10.

Can't create user as Additional Domain Controller

2
Installation and Upgrades / Re: How to install IPS/IDS in zentyal 5.0.7
« on: December 01, 2017, 03:29:23 pm »
Hi, I build a debian package from source code  8) and create a tutorial here on how to install it: https://www.saibatudomt.com.br/2017/12/how-to-install-ips-ids-in-zentyal-5.html  ;D ;D

In the tutorial, I posted the link to my pull request to zentyal team.

Hope it helps! Let me know if you need help.  ;)

3
Hi, I could achieve this editing by hand squid.conf file. But when I change something in interface and hit "Save changes", I was losting the changes I've made by hand. So I found how to customize configurations files.

So as suggested I created the file: /etc/zentyal/hooks/squid.postsetconf
and write this to content:

Code: [Select]
FILE="/etc/squid3/squid.conf"

PATTERN="http_access allow to_localhost"

INSERT="
### Hook Script ###
acl type_exe urlpath_regex -i .exe$
http_access allow allowed~dc~allowed~dom type_exe
http_access deny all type_exe
###################
"

cp $FILE $FILE.backup

awk -v INSERT="$INSERT" -F: "/$PATTERN/{print;print INSERT;next}1" $FILE.backup$

4
Hi, how can I block 'exe' File extension and whitelist it for some domains, so users can download 'exe' files from this whitelisted domains?

I can achieve this by adding the url to "Transparent Proxy Exemptions", but I wish to cache this download, so I can't use this option...


Pages: [1]