diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-29 11:48:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 11:48:49 +0100 |
commit | 9ffb0d6aa84c8dad2ab053e04379b7874564698c (patch) | |
tree | 3c0c492a90d18a273d5ff9fd116e5a8aedca1485 /src | |
parent | 26fd83c75835accb6b3d91c14f17ec90faabb5b4 (diff) | |
parent | 36883ebf0f820003ec86e14e7612ce113630def2 (diff) | |
download | vyos-1x-9ffb0d6aa84c8dad2ab053e04379b7874564698c.tar.gz vyos-1x-9ffb0d6aa84c8dad2ab053e04379b7874564698c.zip |
Merge pull request #3056 from natali-rs1985/T5504-current
T5504: Keepalived VRRP ability to set more than one peer-address
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/high-availability.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/conf_mode/high-availability.py b/src/conf_mode/high-availability.py index b3b27b14e..59d49ea67 100755 --- a/src/conf_mode/high-availability.py +++ b/src/conf_mode/high-availability.py @@ -125,8 +125,9 @@ def verify(ha): raise ConfigError(f'VRRP group "{group}" uses IPv4 but hello-source-address is IPv6!') if 'peer_address' in group_config: - if is_ipv6(group_config['peer_address']): - raise ConfigError(f'VRRP group "{group}" uses IPv4 but peer-address is IPv6!') + for peer_address in group_config['peer_address']: + if is_ipv6(peer_address): + raise ConfigError(f'VRRP group "{group}" uses IPv4 but peer-address is IPv6!') if vaddrs6: tmp = {'interface': interface, 'vrid': vrid, 'ipver': 'IPv6'} @@ -139,8 +140,9 @@ def verify(ha): raise ConfigError(f'VRRP group "{group}" uses IPv6 but hello-source-address is IPv4!') if 'peer_address' in group_config: - if is_ipv4(group_config['peer_address']): - raise ConfigError(f'VRRP group "{group}" uses IPv6 but peer-address is IPv4!') + for peer_address in group_config['peer_address']: + if is_ipv4(peer_address): + raise ConfigError(f'VRRP group "{group}" uses IPv6 but peer-address is IPv4!') # Check sync groups if 'vrrp' in ha and 'sync_group' in ha['vrrp']: for sync_group, sync_config in ha['vrrp']['sync_group'].items(): |