Squid und ClamAV: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 41: | Zeile 41: | ||
*systemctl restart c-icap.service | *systemctl restart c-icap.service | ||
*systemctl restart squid | *systemctl restart squid | ||
| + | =Bugfix= | ||
| + | <pre> | ||
| + | cd /var/lib/clamav/ | ||
| + | wget https://www.danami.com/hotfix/main.cvd | ||
| + | wget https://www.danami.com/hotfix/daily.cld | ||
| + | chown clamav:clamav main.cvd | ||
| + | chown clamav:clamav daily.cld | ||
| + | systemctl restart clamav-daemon | ||
| + | </pre> | ||
| + | |||
=Hier kann man Testen= | =Hier kann man Testen= | ||
*https://www.eicar.org/download-anti-malware-testfile/ | *https://www.eicar.org/download-anti-malware-testfile/ | ||
Version vom 27. September 2022, 13:07 Uhr
Installation von Clamav
- apt install c-icap clamav clamdscan clamav-daemon libicapapi-dev libssl-dev git
Tool zum kompilieren
apt install gcc make
Über git clone squidclamav Source runterladen
- git clone https://github.com/darold/squidclamav
Kompilieren
- cd squidclamav
- ./configure && make && make install
Squid Konfiguration erweitern
- /etc/squid/squid.conf
... icap_enable on icap_send_client_ip on icap_send_client_username on icap_client_username_encode off icap_client_username_header X-Authenticated-User icap_preview_enable on icap_preview_size 1024 icap_service service_req reqmod_precache bypass=0 icap://127.0.0.1:1344/squidclamav icap_service service_resp respmod_precache bypass=0 icap://127.0.0.1:1344/squidclamav adaptation_access service_req allow all adaptation_access service_resp allow all ...
c-icap aktivieren
- cat /etc/default/c-icap
START=yes
- cat /etc/c-icap/c-icap.conf
Service squidclamav squidclamav.so
diverse Dienste starten
- systemctl restart clamav-freshclam.service
- systemctl restart clamav-daemon.service
- systemctl restart c-icap.service
- systemctl restart squid
Bugfix
cd /var/lib/clamav/ wget https://www.danami.com/hotfix/main.cvd wget https://www.danami.com/hotfix/daily.cld chown clamav:clamav main.cvd chown clamav:clamav daily.cld systemctl restart clamav-daemon