From 9f41a659a1ed2eae97d5ab8ca0d5662f2d878e18 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 18 May 2016 11:18:28 +0200 Subject: [PATCH] allow VLAN 1 tag in qemu-kvm vms Signed-off-by: Dominik Csapak --- PVE/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 3921c098..fe19d7f7 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -601,7 +601,7 @@ my $net_fmt = { }, tag => { type => 'integer', - minimum => 2, maximum => 4094, + minimum => 1, maximum => 4094, description => 'VLAN tag to apply to packets on this interface.', optional => 1, },