From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 88577937E8 for ; Tue, 21 Feb 2023 09:06:02 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 71FF42F62D for ; Tue, 21 Feb 2023 09:06:02 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Tue, 21 Feb 2023 09:06:01 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 0126847EA1 for ; Tue, 21 Feb 2023 09:06:01 +0100 (CET) From: Christoph Heiss To: pve-devel@lists.proxmox.com Date: Tue, 21 Feb 2023 09:05:50 +0100 Message-Id: <20230221080550.43336-5-c.heiss@proxmox.com> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230221080550.43336-1-c.heiss@proxmox.com> References: <20230221080550.43336-1-c.heiss@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.106 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH v3 manager 4/4] lxc: Add `Disconnect` option for network interfaces X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Feb 2023 08:06:02 -0000 Signed-off-by: Christoph Heiss --- Changes v1 -> v2: * Rename option to kebap-case Changes v2 -> v3: * Rename option to snake_case again www/manager6/Parser.js | 3 +++ www/manager6/lxc/Network.js | 13 +++++++++++++ 2 files changed, 16 insertions(+) diff --git a/www/manager6/Parser.js b/www/manager6/Parser.js index 9f7b2c84..c3772d3b 100644 --- a/www/manager6/Parser.js +++ b/www/manager6/Parser.js @@ -298,6 +298,8 @@ Ext.define('PVE.Parser', { data[match_res[1]] = match_res[2]; } else if ((match_res = p.match(/^firewall=(\d+)$/)) !== null) { data.firewall = PVE.Parser.parseBoolean(match_res[1]); + } else if ((match_res = p.match(/^link_down=(\d+)$/)) !== null) { + data.link_down = PVE.Parser.parseBoolean(match_res[1]); } else if (!p.match(/^type=\S+$/)) { console.warn(`could not parse LXC network string ${p}`); } @@ -319,6 +321,7 @@ Ext.define('PVE.Parser', { name: 1, rate: 1, tag: 1, + link_down: 1, }; return Object.entries(config) .filter(([k, v]) => v !== undefined && v !== '' && knownKeys[k]) diff --git a/www/manager6/lxc/Network.js b/www/manager6/lxc/Network.js index 85033bd8..b2cd9410 100644 --- a/www/manager6/lxc/Network.js +++ b/www/manager6/lxc/Network.js @@ -273,6 +273,12 @@ Ext.define('PVE.lxc.NetworkInputPanel', { ]; me.advancedColumn1 = [ + { + xtype: 'proxmoxcheckbox', + fieldLabel: gettext('Disconnect'), + name: 'link_down', + value: cdata.link_down, + }, { xtype: 'proxmoxintegerfield', fieldLabel: 'MTU', @@ -539,6 +545,12 @@ Ext.define('PVE.lxc.NetworkView', { width: 80, dataIndex: 'mtu', }, + { + header: gettext('Disconnected'), + width: 100, + dataIndex: 'link_down', + renderer: Proxmox.Utils.format_boolean, + }, ], listeners: { activate: me.load, @@ -564,6 +576,7 @@ Ext.define('PVE.lxc.NetworkView', { 'tag', 'firewall', 'mtu', + 'link_down', ], }); }); -- 2.39.1