[pve-devel] [PATCH proxmox-ve-rs 1/1] partial fix #6226: macros: add LDAP_UDP macro

Stefan Hanreich s.hanreich at proxmox.com
Tue Mar 18 16:38:53 CET 2025


Add LDAP_UDP macro to the firewall to support LDAP implementations
that use UDP as well, such as Windows AD [1]

[1] https://learn.microsoft.com/de-de/troubleshoot/windows-server/active-directory/config-firewall-for-ad-domains-and-trusts

Signed-off-by: Stefan Hanreich <s.hanreich at proxmox.com>
---
 proxmox-ve-config/resources/macros.json | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/proxmox-ve-config/resources/macros.json b/proxmox-ve-config/resources/macros.json
index 2fcc0fb..1c9a661 100644
--- a/proxmox-ve-config/resources/macros.json
+++ b/proxmox-ve-config/resources/macros.json
@@ -377,6 +377,15 @@
     ],
     "desc": "Lightweight Directory Access Protocol traffic"
   },
+  "LDAP_UDP": {
+    "code": [
+      {
+        "dport": "389",
+        "proto": "udp"
+      }
+    ],
+    "desc": "Lightweight Directory Access Protocol traffic via UDP"
+  },
   "LDAPS": {
     "code": [
       {
-- 
2.39.5




More information about the pve-devel mailing list