[pve-devel] [PATCH] add multicast DNS to the list of Macros

Emmanuel Kasper e.kasper at proxmox.com
Mon Sep 5 16:03:26 CEST 2016


multicast DNS allows to quickly access hosts without the need to
configure a DNS server
---
 src/PVE/Firewall.pm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm
index 22bf61d..9aa9be1 100644
--- a/src/PVE/Firewall.pm
+++ b/src/PVE/Firewall.pm
@@ -322,6 +322,10 @@ my $pve_fw_macros = {
 	{ action => 'PARAM', proto => 'tcp', dport => '465' },
 	{ action => 'PARAM', proto => 'tcp', dport => '587' },
     ],
+    'MDNS' => [
+	"Multicast DNS",
+	{ action => 'PARAM', proto => 'udp', dport => '5353' },
+    ],
     'Munin' => [
 	"Munin networked resource monitoring traffic",
 	{ action => 'PARAM', proto => 'tcp', dport => '4949' },
-- 
2.1.4





More information about the pve-devel mailing list