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) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id E2450709F8 for ; Mon, 16 May 2022 11:38:12 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id D59311A985 for ; Mon, 16 May 2022 11:38:12 +0200 (CEST) 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) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 8942E1A97A for ; Mon, 16 May 2022 11:38:11 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 54031435FB for ; Mon, 16 May 2022 11:38:05 +0200 (CEST) From: Oguz Bektas To: pve-devel@lists.proxmox.com Date: Mon, 16 May 2022 11:37:53 +0200 Message-Id: <20220516093753.232985-1-o.bektas@proxmox.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.510 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 T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH v4 manager] ui: vm network: allow to override MTU for virtio devices 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: Mon, 16 May 2022 09:38:12 -0000 we already have the 'mtu' option in the API, so we can just expose that option inside the 'Advanced' menu for virtio network interfaces. Reviewed-By: Aaron Lauterer Tested-By: Aaron Lauterer Tested-By: Dylan Whyte Signed-off-by: Oguz Bektas --- v3->v4: * show tooltip message about inheritance if mtu is 1 www/manager6/qemu/NetworkEdit.js | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/www/manager6/qemu/NetworkEdit.js b/www/manager6/qemu/NetworkEdit.js index b39cffdc..6e56b73d 100644 --- a/www/manager6/qemu/NetworkEdit.js +++ b/www/manager6/qemu/NetworkEdit.js @@ -19,6 +19,7 @@ Ext.define('PVE.qemu.NetworkInputPanel', { me.network.macaddr = values.macaddr; me.network.disconnect = values.disconnect; me.network.queues = values.queues; + me.network.mtu = values.mtu; if (values.rate) { me.network.rate = values.rate; @@ -33,6 +34,17 @@ Ext.define('PVE.qemu.NetworkInputPanel', { return params; }, + viewModel: { + data: { + network_model: '', + mtu: 1500, + }, + formulas: { + isVirtio: (get) => get('network_model') === 'virtio', + showMTUHint: (get) => get('mtu') === 1, + }, + }, + setNetwork: function(confid, data) { var me = this; @@ -112,6 +124,7 @@ Ext.define('PVE.qemu.NetworkInputPanel', { 'macaddr', 'rate', 'queues', + 'mtu', ]; fields.forEach(function(fieldname) { me.down('field[name='+fieldname+']').setDisabled(value); @@ -130,6 +143,7 @@ Ext.define('PVE.qemu.NetworkInputPanel', { xtype: 'pveNetworkCardSelector', name: 'model', fieldLabel: gettext('Model'), + bind: '{network_model}', value: PVE.qemu.OSDefaults.generic.networkCard, allowBlank: false, }, @@ -161,6 +175,26 @@ Ext.define('PVE.qemu.NetworkInputPanel', { value: '', allowBlank: true, }, + { + xtype: 'proxmoxintegerfield', + name: 'mtu', + fieldLabel: 'MTU', + bind: { + disabled: '{!isVirtio}', + value: '{mtu}', + }, + minValue: 1, + maxValue: 65520, + allowBlank: true, + }, + { + xtype: 'displayfield', + userCls: 'pmx-hint', + value: gettext("mtu=1 is a special value, the MTU value will be inherited from the current bridge"), + bind: { + hidden: '{!showMTUHint}', + }, + }, ]; me.callParent(); -- 2.30.2