diff --git a/rsyslog.changes b/rsyslog.changes index 2ce08ea..a769a65 100644 --- a/rsyslog.changes +++ b/rsyslog.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Feb 26 07:19:06 UTC 2021 - Thomas Blume + +- update remote.conf example file to new 'Address' and 'Port' notation + (bsc#1182653) + ------------------------------------------------------------------- Tue Feb 16 19:52:34 UTC 2021 - Michael Ströder diff --git a/rsyslog.d.remote.conf.in b/rsyslog.d.remote.conf.in index d66fa2b..c0b45b7 100644 --- a/rsyslog.d.remote.conf.in +++ b/rsyslog.d.remote.conf.in @@ -32,20 +32,24 @@ # remote host is: name/ip:port, e.g. 192.168.0.1:514, port optional #*.* @remote-host - # ######### Receiving Messages from Remote Hosts ########## # TCP Syslog Server: # provides TCP syslog reception and GSS-API (if compiled to support it) #$ModLoad imtcp.so # load module +#$Address 10.10.0.1 # force to listen on this IP only +#$Port # Starts a TCP server on selected port +# Legacy configuration parameters that should not be used when crafting new configuration files. ##$UDPServerAddress 10.10.0.1 # force to listen on this IP only #$InputTCPServerRun # Starts a TCP server on selected port # UDP Syslog Server: #$ModLoad imudp.so # provides UDP syslog reception -##$UDPServerAddress 10.10.0.1 # force to listen on this IP only +#$Adress 10.10.0.1 # force to listen on this IP only +#$Port 514 # start a UDP syslog server at standard port 514 +# Legacy configuration parameters that should not be used when crafting new configuration files. +#$UDPServerAddress 10.10.0.1 # force to listen on this IP only #$UDPServerRun 514 # start a UDP syslog server at standard port 514 - ########### Encrypting Syslog Traffic with TLS ########## # -- TLS Syslog Server: ## make gtls driver the default