From cc1cc38d5c855af72514a20911dfca7284538686 Mon Sep 17 00:00:00 2001 From: Yadunand Prem Date: Sun, 25 Aug 2024 22:45:33 -0400 Subject: [PATCH] feat: prevent assigning 0 and 255 --- infra/configs/config-metallb.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/configs/config-metallb.yaml b/infra/configs/config-metallb.yaml index 62dcc93..2f1d519 100644 --- a/infra/configs/config-metallb.yaml +++ b/infra/configs/config-metallb.yaml @@ -6,7 +6,8 @@ metadata: namespace: metallb-system spec: addresses: - - 10.0.1.0/24 + - 10.0.1.0/24 + avoidBuggyIPs: true --- apiVersion: metallb.io/v1beta1 kind: L2Advertisement