networkedit: add mtu field

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
Alexandre Derumier 2020-01-10 03:55:09 +01:00 committed by Thomas Lamprecht
parent b154853a74
commit aedaf2b6f1

View File

@ -250,6 +250,14 @@ Ext.define('Proxmox.node.NetworkEdit', {
fieldLabel: gettext('Gateway') + ' (IPv6)', fieldLabel: gettext('Gateway') + ' (IPv6)',
vtype: 'IP6Address', vtype: 'IP6Address',
name: 'gateway6' name: 'gateway6'
},
{
xtype: 'proxmoxintegerfield',
minValue: 1280,
maxValue: 65520,
deleteEmpty: !me.isCreate,
fieldLabel: 'MTU',
name: 'mtu'
} }
); );
} }