syslog-ng: listen not globally but just locally
authorAlexander Traud <redacted>
Mon, 27 Jan 2020 20:39:26 +0000 (21:39 +0100)
committerAlexander Traud <redacted>
Mon, 27 Jan 2020 20:39:26 +0000 (21:39 +0100)
Beside that, listen not only on IPv4 but also on IPv6 = Dual Stack.

Signed-off-by: Alexander Traud <redacted>
admin/syslog-ng/Makefile
admin/syslog-ng/files/syslog-ng.conf

index fa7c8f56eca3f930360540e725a4eb1abf296924..a6825b64b78bd31f1deaa6f2f6790c97272e78e7 100644 (file)
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=syslog-ng
 PKG_VERSION:=3.25.1
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
 PKG_LICENSE:=LGPL-2.1-or-later GPL-2.0-or-later
index 83b3713df9329039f48a22aed5ecfc70c5666227..6dcfead8672778931da3c3249f83388dcb7f2abc 100644 (file)
@@ -27,7 +27,7 @@ source src {
 };
 
 source net {
-       udp(ip(0.0.0.0) port(514));
+       network(ip("::1") port(514) transport(udp) ip-protocol(6));
 };
 
 source s_network {
git clone https://git.99rst.org/PROJECT