From 7831e1e329a4300aa9cbc341882f18362615107b Mon Sep 17 00:00:00 2001 From: Emmanuel Kasper Date: Mon, 5 Sep 2016 16:03:26 +0200 Subject: [PATCH] add multicast DNS to the list of Macros 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.39.2