Remote logging in Syslog via TCP vs UDP

To setup remote logging to a central Syslog server, you need to add the following line:

*.* @loghost.foobar.com:514

This will set up remote logging using UDP.  Note the single @ sign.  To set up TCP, use double @@ signs:

*.* @@loghost.foobar.com:514

*.* stands for facility.severity.  Asterisks will pick …

more ...