Commit 9f3136b7 authored by Alexandre Derumier's avatar Alexandre Derumier Committed by Dietmar Maurer

add bridge vlan aware checkbox

Signed-off-by: 's avatarAlexandre Derumier <aderumier@odiso.com>
parent 8516d956
......@@ -55,6 +55,11 @@ my $confdesc = {
type => 'boolean',
optional => 1,
},
bridge_vlan_aware => {
description => "Enable bridge vlan support.",
type => 'boolean',
optional => 1,
},
bridge_ports => {
description => "Specify the iterfaces you want to add to your bridge.",
optional => 1,
......
......@@ -53,6 +53,12 @@ Ext.define('PVE.node.NetworkEdit', {
}
if (me.iftype === 'bridge') {
column2.push({
xtype: 'pvecheckbox',
fieldLabel: gettext('Vlan Aware'),
name: 'bridge_vlan_aware',
deleteEmpty: !me.create,
});
column2.push({
xtype: 'textfield',
fieldLabel: gettext('Bridge ports'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment