The Esia Syslog Server is installed on a VM/server independent of your Esia Mercury.
At MINIMUM (depending on the amount of log to be processed), a server or VM with:
To install Galaxy on your server, we need to add our repository to the list of trusted repositories on your server. To do this, simply enter the following commands.
echo "deb http://stable.repository.esia-sa.com/esia buster contrib non-free" >> /etc/apt/sources.list wget -O- "http://stable.repository.esia-sa.com/esia/gnupg.key" | apt-key add -
Enter the following commands:
apt update apt install -y postgresql apt install -y esia-syslog-alarm
Once the download and unpacking is complete, the installation system will display the configuration of rsyslog-pgsql
Select “Yes” to continue with the configuration.
Select “localhost” to indicate that the database is local to the server.
Enter the database password
Confirm with the same password.
The system will finish configuring the databases and surrounding software.
If you want to receive asynchronous alarms from the syslog server. You need to add the IP of your Esia Mercury to the
/etc/esia/syslog-alarm.conf
in the “receiver” section. Check that port 2081 on your Esia server is open (iptables -L).
###################################### # ESIA configuration file # # ESIA 3.0 # # Biersart Nicolas # # support@esia-sa.com # ###################################### [RECEIVER] port=2081 key=2687b4e25ca52118ef03bfcdb31610a210b42202 #IP OF YOUR ESIA SERVER ip=10.12.0.145 [CORE] thread_number=10 [DB] #postgresql connection chain connection_number=4 PGSQL_host=localhost PGSQL_port=5432 PGSQL_db=Syslog PGSQL_username=rsyslog PGSQL_pwd=syslog2022 [LOG] log_file=/var/log/esia/esiaSyslogAlarm.log
modify the rsyslog configuration file to allow incoming connections:
nano /etc/rsyslog.conf
Comment out the following lines
# provides UDP syslog reception module(load="imudp") input(type="imudp" port="514") # provides TCP syslog reception module(load="imtcp") input(type="imtcp" port="514")
Below this configuration, add the following lines to make the log server as secure as possible.
$AllowedSender TCP, 127.0.0.1, <ip du réseau>/8 $AllowedSender UDP, 127.0.0.1, <ip du réseau>/8
restart the rsyslog service
/etc/init.d/rsyslog restart
SNMP is installed by default, so you now need to configure it. You need to edit the configuration file:
nano /etc/snmp/snmpd.conf
Change the following line (or add it as a comment):
agentAddress udp:127.0.0.1:161
And replace it with :
agentAddress udp:0.0.0.0:161
Next, you need to configure the SNMP community:
rocommunity read_community default
or rocommunity “ community name ” “ range ip (unique ip ) /subnet mask ”.
rocommunity read_community 10.7.0.14/32
WARNING, do not leave rocommunity with the default systemonly view (comment, delete or modify the following line):
# rocommunity public default -V systemonly
Then restart the SNMP service by typing :
/etc/init.d/snmpd restart
In order toavoid the agent adds a line every X minutes to your log file (each time the Esia server queries it), don't forget to make SNMP less verbose. Enter the following command:
systemctl edit snmpd
This will (among other things) create the file « /etc/systemd/system/snmpd.service.d/override.conf ». Add this code to the :
[Service] ExecStart= ExecStart=/usr/sbin/snmpd -LS4d -Lf /dev/null -u Debian-snmp -g Debian-snmp -I -smux,mteTrigger,mteTriggerConf -f
Then restart the SNMP service by typing :
service snmpd restart
On Debian Buster, if the service command does not exist, you can restart with this command:
systemctl restart snmpd
Your system is now ready to receive logs from other network nodes. We're now going to link it to the Esia server.
Install the following packages on your Esia Mercury server:
apt install -y esia-receiver esia-webp-syslog
To enable the Syslog server to send alerts to your Esia server, you need to authorise connections on port 2801. Type the following command lines:
iptables -A INPUT -p tcp -m tcp --dport 2801 -s <ip serveur syslog>/32 -j ACCEPT iptables-save > /etc/iptables.rules
To add the syslog server to your Esia, go to Esia administration and then to « Ajouter Nœud ». Fill in the fields, specifying the type of node, such as « Syslog Server ». Don't forget the SNMP community.
Click on « Ajouter » and then the configuration system will ask you for the HTTP/HTTPS URL to the syslog, by default it takes the IP of your node.
Click on « Sauvez >If you click on >, ESIA will normally display the following message.
The default pattern « default_snmp_linux_server » pattern is applied as well as 2 services:
The first checks that the hostnames received by the syslog server correspond to the node in ESIA. The 'MAN' plugin automatically links the two together.
Your server is now added in ESIA and you can go to the node control page to see your log server.