Posts

Showing posts from June, 2023

Digital Marketing

Let ssh client to always add the key to a running ssh-agent

Add the following configuration setting to your local ssh config file ~/.ssh/config (this works since SSH 7.2): AddKeysToAgent  yes There's no need to ssh-add it beforehand.

UDP and TCP syslog reception provided by rsyslog

Inside /etc/rsyslog.conf # Provides UDP syslog reception #$ModLoad imudp #$UDPServerRun 514 # Provides TCP syslog reception $ModLoad imtcp $InputTCPServerRun 514