Logwatch est un utilitaire permettant de surveiller les journaux systĂšme et de crĂ©er des rapports. Ces rapports comprennent les tentatives de connexion infructueuses, les tentatives de connexion rĂ©ussie, l’espace de stockage utilisĂ©/disponible, les erreurs de kernel, etc.
Source : https://wiki.debian-fr.xyz/Logwatch
Ce n’est pas mauvais de le rappeler encore une fois, un systĂšme Ă jour est plus sĂ©curisĂ©!
apt-get update apt-get upgrade
Passer la commande suivante pour installer logwatch:
apt-get install logwatch
Par dĂ©faut Logwatch installe Postfix si vous n’avez pas de service SMTP installĂ©. Lorsque ce sera demandĂ©, sĂ©lectionnez la configuration « Internet Site ».
Si vous préférez Exim, (re)installez-le au préalable.
Configurez Logwatch
Une fois installé vous aurez à faire une configuration minimale de logwatch.
Les options sont nombreuses, je vous encourage Ă lire le man
nano /usr/share/logwatch/default.conf/logwatch.conf
Output = mail
Format = text
MailTo = root (ou tout autre adresse fonctionnelle)
MailFrom = logwatch@votredomaine.org (ou tout autre adresse fonctionnelle)
Le format html
A l’heure ou j’Ă©crit, le paquet logwatch 7.3.6.cvs20090906-1squeeze1 contient un bug (pas trop gĂȘnant…): il manque les fichiers pour le format html.
Vous pouvez tout de mĂȘme facilement utiliser le format html. Il suffit de crĂ©er les fichiers suivants:
nano /usr/share/logwatch/default.conf/html/footer.html
Logwatch ©Copyright 2002-2006 Kirk Bauer
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</body></html>
nano /usr/share/logwatch/default.conf/html/header.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>Logwatch $Version ( $VDate )</title> <meta name="generator" content="Logwatch $Version ( $VDate )"> <style type="text/css">
h1 {color: gray; border-bottom: 3px double silver}
h2,h3 {color: gray; border-bottom: 1px solid silver}
.ref {padding-left: 1%}
.service {padding-left: 1%; font-family: Monospace}
.return_link {border-top: 1px; border-bottom: 1px;
padding: 1%; margin-top: 1%; margin-bottom: 1%;}
.copyright {color: black; border-top: 1px solid grey;
border-bottom: 1px solid grey;
padding: 1%; margin-top: 1%; margin-bottom: 1%;}
</style> </head> <body style="width:90%; margin-left: 5%; margin-right: 5%" bgcolor="#FFFFFF">
Et de remplacer
Format = text par Format = html
VĂ©rifiez le fonctionnement
Tapez la commande suivante pour tester l’installation
logwatch
Allez vĂ©rifier ensuite vos mails pour vous assurer qu’il est bien arrivĂ©. VĂ©rifiez votre boite Ă spam si nĂ©cessaire…
Vous devriez recevoir un mail du systĂšme:
################### Logwatch 7.3.6 (05/19/07) ####################
Processing Initiated: Fri Aug 5 11:16:24 2011
Date Range Processed: yesterday
( 2011-Aug-04 )
Period is day.
Detail Level of Output: 0
Type of Output/Format: mail / text
Logfiles for Host: vanille.zehome.org
##################################################################
Cron
Vérifiez que la tùche cron est bien activée Vous devriez avoir une tùche journaliÚre automatiquement créée:
cat /etc/cron.daily/00logwatch
!/bin/bash
Check if removed-but-not-purged
test -x /usr/share/logwatch/scripts/logwatch.pl || exit 0
execute
/usr/sbin/logwatch --output mail
Note: It's possible to force the recipient in above command
Just pass --mailto address@a.com instead of --output mail