wiki/HowtoESETS.md

89 lines
2.1 KiB
Markdown
Raw Normal View History

2018-12-05 11:30:16 +01:00
---
categories: system
title: Howto ESET Antivirus
...
2018-10-30 11:54:32 +01:00
2018-12-05 11:33:21 +01:00
# Antivirus fichiers (File Security)
2018-12-05 11:30:16 +01:00
2018-12-05 11:33:21 +01:00
* Documentation : <https://help.eset.com/efs/4/en-US/>
2018-10-30 11:54:32 +01:00
~~~
To COMPLETE INSTALLATION or UPDATE the Product:
* Import the license file: /opt/eset/esets/sbin/esets_lic --import file.lic
* Enter acquired username/password information into the global section
of main configuration file /etc/opt/eset/esets/esets.cfg
* Start main daemon service: /etc/init.d/esets start
To UNINSTALL the Product:
* Uninstall the package: dpkg --purge esets
To KEEP your KNOWLEDGE Up-To-Date:
* Read the User's Guide in /opt/eset/esets/share/doc.
* Read manual page esets.cfg(5) (use 'man esets.cfg').
To REPORT Bugs or Problems:
* Please, visit: www.eset.com/support
2018-12-05 11:30:16 +01:00
~~~
Pour lancer un scan :
~~~
/opt/eset/esets/sbin/esets_scan --no-symlink --no-quarantine --clean-mode=none /home
~~~
2018-12-05 11:33:21 +01:00
# Antivirus Mail (Mail Security)
2018-12-05 14:18:19 +01:00
* Documentation : <https://help.eset.com/ems_linux/4/en-US/>
* Téléchargement : <https://www.eset.com/us/business/server-antivirus/mail-security-linux/download/> (Nécessite login/pass).
L'installation consiste a exécuter une archive auto-extractible qui contient un .deb. Une fois installé, le logiciel ESETS réside dans `/opt/esets`.
2018-12-10 14:24:20 +01:00
Pour activer la mise à jour des signatures antivirus il faut spécifier le `av_update_username/password` dans `/etc/opt/eset/esets/esets.cfg`.
2018-12-05 14:18:19 +01:00
Si vous avez un proxy ou un pare-feu il faut autoriser `update.eset.com`.
Pour démarrer le démon :
~~~
2018-12-05 14:29:23 +01:00
# systemctl start esets
~~~
Mise à jour manuelle :
~~~
# /opt/eset/esets/sbin/esets_update --username="$LOGIN" --password="$PASS"
2018-12-10 15:54:16 +01:00
~~~
## Utilisation en content_filter postfix
Exemple de configuration :
~~~
[smtp]
agent_enabled = yes
num_proc = 1
num_thrd = 2
listen_addr = "localhost"
listen_port = 2526
server_addr = "localhost"
# Port classique pack mail Evolix, second serveur SMTP post amavis
server_port = 10025
timeout_client = 30
add_header_xvirus = yes
add_header_received = yes
~~~
## Interface web
Exemple de configuration :
~~~
[wwwi]
agent_enabled = yes
listen_addr = "127.0.0.1"
listen_port = 9090
username = "admin"
password = "password"
2018-12-05 14:18:19 +01:00
~~~