[pve-devel] [PATCH firewall] firewall macros: add new Ceph protocol v2 port while keeping v1 port
Christian Ebner
c.ebner at proxmox.com
Fri Jul 12 13:31:34 CEST 2019
Signed-off-by: Christian Ebner <c.ebner at proxmox.com>
---
src/PVE/Firewall.pm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm
index c946040..0c34439 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.20.1
More information about the pve-devel
mailing list