From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id C06021FF0DF for ; Fri, 28 Aug 2026 13:34:32 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 55ADD216C3; Fri, 28 Aug 2026 13:33:32 +0200 (CEST) From: Gabriel Goller To: pve-devel@lists.proxmox.com Subject: [PATCH proxmox-ve-rs v3 05/13] frr: accept legacy ISIS domain field Date: Fri, 28 Aug 2026 13:32:44 +0200 Message-ID: <20260828113255.176546-6-g.goller@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260828113255.176546-1-g.goller@proxmox.com> References: <20260828113255.176546-1-g.goller@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1787916770653 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.516 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: KTHJRHGGAO3DHDUL23ZJEOQW5G7LOLPT X-Message-ID-Hash: KTHJRHGGAO3DHDUL23ZJEOQW5G7LOLPT X-MailFrom: g.goller@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Accept "domain" as an alias for "fabric_id" when deserializing ISIS interface configuration. This keeps older producers compatible while new configuration continues to serialize with the "fabric_id" field. Signed-off-by: Gabriel Goller --- proxmox-frr/src/ser/isis.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/proxmox-frr/src/ser/isis.rs b/proxmox-frr/src/ser/isis.rs index 6ac30e714113..b6e221937ec8 100644 --- a/proxmox-frr/src/ser/isis.rs +++ b/proxmox-frr/src/ser/isis.rs @@ -49,6 +49,7 @@ pub struct IsisRouter { #[derive(Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, Serialize, Deserialize)] pub struct IsisInterface { + #[serde(alias = "domain")] pub fabric_id: IsisRouterName, #[serde(deserialize_with = "proxmox_serde::perl::deserialize_bool")] pub is_ipv4: bool, -- 2.47.3