From a44539a351b71b24bb4074949aab52bb59d56e80 Mon Sep 17 00:00:00 2001 From: Christian Ebner Date: Fri, 12 Jul 2019 13:31:34 +0200 Subject: [PATCH] firewall macros: add new Ceph protocol v2 port while keeping v1 port Signed-off-by: Christian Ebner --- src/PVE/Firewall.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm index f529593..0e15090 100644 --- a/src/PVE/Firewall.pm +++ b/src/PVE/Firewall.pm @@ -214,7 +214,10 @@ my $pve_fw_macros = { ], 'Ceph' => [ "Ceph Storage Cluster traffic (Ceph Monitors, OSD & MDS Deamons)", + # Legacy port for protocol v1 { action => 'PARAM', proto => 'tcp', dport => '6789' }, + # New port for protocol v2 + { action => 'PARAM', proto => 'tcp', dport => '3300' }, { action => 'PARAM', proto => 'tcp', dport => '6800:7300' }, ], 'CVS' => [ -- 2.39.2