- Update from version 1.10 to 1.11 - Update of rootfile not required - Previous versions of this package used to be on bitbucket but that link no longer exists. The new git repo https://github.com/geekman/mdns-repeater was started by someone else as a fork but the original developer then moved to it. However all the history was not moved to the new repo so that repo starts now with version 1.11. It is being worked on as the last commit was Aug 2023 however version 1.11 was released in 2016. There are 11 commits between version 1.11 and present time. - Changelog 1.11 Blacklist feature added (16 blacklisted subnets allowed). Socket limit increased to 16 sockets, moved to #define. The first is most interesting. Say you have two networks bound together with site-to-site tunnels, repeating mDNS over the tunnel... And there are Chromecasts, or Apple TV's at both ends. Even if you had firewall rules to block traffic, the devices would still show up (albeit be defective) on the opposite network. The new blacklist flag allows you to filter such devices out by specifying their subnet (or individual addresses, although having such "private" devices on their own subnet might be a good idea).
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- lfs/mdns-repeater | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lfs/mdns-repeater b/lfs/mdns-repeater index bcd393f9c..615008f56 100644 --- a/lfs/mdns-repeater +++ b/lfs/mdns-repeater @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2023 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -26,7 +26,7 @@ include Config
SUMMARY = A mDNS repeater
-VER = 1.10 +VER = 1.11
THISAPP = mdns-repeater-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mdns-repeater -PAK_VER = 2 +PAK_VER = 3
DEPS =
@@ -50,7 +50,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 7fb9278808deff0f62ce1e0ada3e1c367fafa0e27b12714b6df4fe25f2d2eefb6401390fdd74bf5ee98e361b969c7422a01053cf3181993a99ad05ae1605d795 +$(DL_FILE)_BLAKE2 = 88e6b68635be152c2fcd7eb0e5be038d694bae590edde283dec83b896c2380d83cc84d5e4cfb02b6ae957d75dd7525975e31c418d05f5732b5f41382fb130c31
install : $(TARGET)