Syslog Server (Listener)
The Syslog Server (Listener) captures and processes Syslog messages sent over the network. These messages are transmitted using either UDP or TCP protocols on a specific port, typically 514 by default.
Configuration
| Field | Options | Description |
|---|---|---|
| Port | Valid port number | Syslog listen port |
| Protocol | UDP / TCP | Protocol used |
Requirements
To enable syslog, you need to open the appropriate port in your Docker Compose file. If you need to use the UDP protocol, ensure you specify the protocol as UDP (by using /udp) in the 1Gateway service, as Docker Compose opens ports with the TCP protocol by default.
Example using TCP:
ports:
- 8080:8080
- 514:514
Example using UDP:
ports:
- 8080:8080
- 514:514/udp