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 272221FF0DF for ; Fri, 28 Aug 2026 20:24:20 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 510EC21579; Fri, 28 Aug 2026 20:24:19 +0200 (CEST) From: Cole Hughes To: pve-devel@lists.proxmox.com, c.hughes@proxmox.com Subject: [PATCH manager 2/3] sdn: removing ASN number Date: Fri, 28 Aug 2026 14:24:04 -0400 Message-ID: <20260828182412.47042-3-c.hughes@proxmox.com> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20260828182412.47042-1-c.hughes@proxmox.com> References: <20260828182412.47042-1-c.hughes@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1787941447136 X-SPAM-LEVEL: Spam detection results: 0 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: M3DW3ARRY5BOOSLHS355NGGH5HTZBSKO X-Message-ID-Hash: M3DW3ARRY5BOOSLHS355NGGH5HTZBSKO X-MailFrom: c.hughes@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: ASN is the acronym for Autonomous System Number, using "ASN #" is redundant. Signed-off-by: Cole Hughes --- www/manager6/sdn/controllers/BgpEdit.js | 2 +- www/manager6/sdn/controllers/EvpnEdit.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www/manager6/sdn/controllers/BgpEdit.js b/www/manager6/sdn/controllers/BgpEdit.js index 5fa9fcb2..20afd5fb 100644 --- a/www/manager6/sdn/controllers/BgpEdit.js +++ b/www/manager6/sdn/controllers/BgpEdit.js @@ -34,7 +34,7 @@ Ext.define('PVE.sdn.controllers.BgpInputPanel', { minValue: 1, maxValue: 4294967295, value: 65000, - fieldLabel: 'ASN #', + fieldLabel: 'ASN', allowBlank: false, }, { diff --git a/www/manager6/sdn/controllers/EvpnEdit.js b/www/manager6/sdn/controllers/EvpnEdit.js index 46e4ab73..400f42f1 100644 --- a/www/manager6/sdn/controllers/EvpnEdit.js +++ b/www/manager6/sdn/controllers/EvpnEdit.js @@ -21,7 +21,7 @@ Ext.define('PVE.sdn.controllers.EvpnInputPanel', { minValue: 1, maxValue: 4294967295, value: 65000, - fieldLabel: 'ASN #', + fieldLabel: 'ASN', allowBlank: false, }, { -- Cole Hughes