🍸

rsyslogの出力先の調整

2022/07/07に公開

はじめに

Ubuntu 20.04 LTSで外部からのシスログ転送を受信するサーバを作成した時の設定メモになります。

前提

  • syslogは他ホストからの転送を受信するようにしている。
  • 本サーバにdnsmasqを起動している。
  • dnsmasqのqueryログはlocal0へ出力する設定にしている。

目標

  • 出力先を元ホスト毎にディレクトリで分ける。
  • dnsmasqのログは専用のディレクトリ出力する。
  • 本サーバのログは変わらず/var/log/syslogに出力する。
  • 他ホストとdnsmasqのログは/var/log/syslogには出力しない。
  • /mnt/log/にNASをmountしてdnsmasqと他からのsyslogは出力する。

/etc/rsyslog.d/50-default.conf

設定ファイルの変更を実施

cmd
vi /etc/rsyslog.d/50-default.conf

以下の内容に修正

/etc/rsyslog.d/50-default.conf
#  Default rules for rsyslog.
#
#                       For more information see rsyslog.conf(5) and /etc/rsyslog.conf

$template logFileName1,"/mnt/log/syslog/dnsmasq/dnsmasq_%$year%%$month%%$day%.log"
$template logFileName2,"/mnt/log/syslog/other/%hostname%/log_%hostname%_%$year%%$month%%$day%.log"
#
# First some standard log files.  Log by facility.
#
local0.*                        -?logFileName1
& stop

:fromhost,!isequal, "本サーバのホスト名"      -?logFileName2
& stop

auth,authpriv.*                 /var/log/auth.log
*.*;auth,authpriv.none          -/var/log/syslog
#*.*                            -?logFileName
#cron.*                         /var/log/cron.log
#daemon.*                       -/var/log/daemon.log
kern.*                          -/var/log/kern.log
#lpr.*                          -/var/log/lpr.log
mail.*                          -/var/log/mail.log
#user.*                         -/var/log/user.log

#
# Logging for the mail system.  Split it up so that
# it is easy to write scripts to parse these files.
#
#mail.info                      -/var/log/mail.info
#mail.warn                      -/var/log/mail.warn
mail.err                        /var/log/mail.err

#
# Some "catch-all" log files.
#
#*.=debug;\
#       auth,authpriv.none;\
#       news.none;mail.none     -/var/log/debug
#*.=info;*.=notice;*.=warn;\
#       auth,authpriv.none;\
#       cron,daemon.none;\
#       mail,news.none          -/var/log/messages

#
# Emergencies are sent to everybody logged in.
#
*.emerg                         :omusrmsg:*

#
# I like to have messages displayed on the console, but only on a virtual
# console I usually leave idle.
#
#daemon,mail.*;\
#       news.=crit;news.=err;news.=notice;\
#       *.=debug;*.=info;\
#       *.=notice;*.=warn       /dev/tty8
#

再起動

cmd
systemctl restart rsyslog

Discussion