From: Alexandre Derumier Date: Thu, 4 Apr 2019 08:18:32 +0000 (+0200) Subject: vxlanmulticast plugin : make uplink-id && multicast addres non optional X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=85533e98807b1eb992f4cc6c46e9e189d2e704bb;p=mirror%2Fpve-network.git vxlanmulticast plugin : make uplink-id && multicast addres non optional --- diff --git a/PVE/Network/Network/VxlanMulticastPlugin.pm b/PVE/Network/Network/VxlanMulticastPlugin.pm index bcdc133..99383e5 100644 --- a/PVE/Network/Network/VxlanMulticastPlugin.pm +++ b/PVE/Network/Network/VxlanMulticastPlugin.pm @@ -36,8 +36,8 @@ sub properties { sub options { return { - 'uplink-id' => { optional => 1 }, - 'multicast-address' => { fixed => 1 }, + 'uplink-id' => { optional => 0 }, + 'multicast-address' => { optional => 0 }, 'vxlan-allowed' => { optional => 1 }, }; }