config option to make syslog-ng bind only to a certain IP address?
This is my first post to this list. Is there a config or command-line option to make syslog-ng only bind to a certain IP address? I have a machine with multiple IPs, and I'd like to have syslog-ng only listening on the primary IP. In the future, I may want multiple instances of syslog-ng listening on different IPs with different configs. -- Bill Moran Potential Technologies http://www.potentialtech.com
On Thu, 10 Jun 2004 14:13:22 -0400 Bill Moran <wmoran@potentialtech.com> wrote:
Is there a config or command-line option to make syslog-ng only bind to a certain IP address?
You can set this in the config file. For example: source eth0_listener { udp( ip("192.0.2.1") port(514) ); }; John
John Kristoff <jtk@northwestern.edu> wrote:
On Thu, 10 Jun 2004 14:13:22 -0400 Bill Moran <wmoran@potentialtech.com> wrote:
Is there a config or command-line option to make syslog-ng only bind to a certain IP address?
You can set this in the config file. For example:
source eth0_listener { udp( ip("192.0.2.1") port(514) ); };
Ahh ... haven't got the hang of the config systax yet. Thanks! -- Bill Moran Potential Technologies http://www.potentialtech.com
participants (2)
-
Bill Moran
-
John Kristoff