diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-04-20 21:01:59 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-04-20 21:07:38 +0200 |
commit | 2fe39c3f4d7408509273c9e2ac400437aba9616f (patch) | |
tree | 77a6a14dd42c538e5d6403603031ea36cf5172a2 /interface-definitions/interfaces-bonding.xml.in | |
parent | ee2db552acc7ab118897d538673b61794298ca06 (diff) | |
download | vyos-1x-2fe39c3f4d7408509273c9e2ac400437aba9616f.tar.gz vyos-1x-2fe39c3f4d7408509273c9e2ac400437aba9616f.zip |
xml: T3488: when using regex one must use ^ and $ when checking string literals
(cherry picked from commit 85d0ae7b434a3ae9f3bd50ad7fee1fcd23b26a26)
Diffstat (limited to 'interface-definitions/interfaces-bonding.xml.in')
-rw-r--r-- | interface-definitions/interfaces-bonding.xml.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface-definitions/interfaces-bonding.xml.in b/interface-definitions/interfaces-bonding.xml.in index 30e8deb9c..37dfe1c12 100644 --- a/interface-definitions/interfaces-bonding.xml.in +++ b/interface-definitions/interfaces-bonding.xml.in @@ -75,7 +75,7 @@ <description>combine IP address and port to make hash</description> </valueHelp> <constraint> - <regex>(layer2\+3|layer3\+4|layer2)</regex> + <regex>^(layer2\+3|layer3\+4|layer2)$</regex> </constraint> <constraintErrorMessage>hash-policy must be layer2 layer2+3 or layer3+4</constraintErrorMessage> </properties> @@ -132,7 +132,7 @@ <description>Distribute based on MAC address</description> </valueHelp> <constraint> - <regex>(802.3ad|active-backup|broadcast|round-robin|transmit-load-balance|adaptive-load-balance|xor-hash)</regex> + <regex>^(802.3ad|active-backup|broadcast|round-robin|transmit-load-balance|adaptive-load-balance|xor-hash)$</regex> </constraint> <constraintErrorMessage>mode must be 802.3ad, active-backup, broadcast, round-robin, transmit-load-balance, adaptive-load-balance, or xor</constraintErrorMessage> </properties> |