41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
From 3dd051ed56418dc241417ea02e59db3982b7b92c Mon Sep 17 00:00:00 2001
|
|
From: Oliver Freyermuth <o.freyermuth@googlemail.com>
|
|
Date: Thu, 26 Nov 2020 10:25:01 +0100
|
|
Subject: [PATCH] heartbeat/iface-vlan: vlan_{interface,id} do not have to be
|
|
unique.
|
|
|
|
Machines commonly have several vlan_id attached to one interface,
|
|
and may also have a vlan_id attached to several interfaces.
|
|
|
|
vlan_name will still be unique, usual names are:
|
|
- bond_in.83@bond_in
|
|
- bond_in.84@bond_in
|
|
|
|
fixes #1581
|
|
---
|
|
heartbeat/iface-vlan | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/heartbeat/iface-vlan b/heartbeat/iface-vlan
|
|
index cbe7e86da..d0481373c 100755
|
|
--- a/heartbeat/iface-vlan
|
|
+++ b/heartbeat/iface-vlan
|
|
@@ -89,7 +89,7 @@ vlan_meta_data() {
|
|
</shortdesc>
|
|
|
|
<parameters>
|
|
- <parameter name="vlan_interface" unique="1" required="1">
|
|
+ <parameter name="vlan_interface" unique="0" required="1">
|
|
<longdesc lang="en">
|
|
Define the interface where VLAN should be attached.
|
|
</longdesc>
|
|
@@ -99,7 +99,7 @@ vlan_meta_data() {
|
|
<content type="string"/>
|
|
</parameter>
|
|
|
|
- <parameter name="vlan_id" unique="1" required="1">
|
|
+ <parameter name="vlan_id" unique="0" required="1">
|
|
<longdesc lang="en">
|
|
Define the VLAN ID. It has to be a value between 0 and 4094.
|
|
</longdesc>
|