diff options
author | Christian Breunig <christian@breunig.cc> | 2023-07-11 20:10:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 20:10:55 +0200 |
commit | 484259af7d2530601faacf7ad741523c5f93622a (patch) | |
tree | 2fa138b18666172d0765e3d8a1882a98d7cc9238 /src/conf_mode | |
parent | 16f7d593e841b73b2fa4b8120f4bb8e66c4321b3 (diff) | |
parent | 60be130df1b5918c3bf1a460fdf65c5fa0e59253 (diff) | |
download | vyos-1x-484259af7d2530601faacf7ad741523c5f93622a.tar.gz vyos-1x-484259af7d2530601faacf7ad741523c5f93622a.zip |
Merge pull request #2084 from sever-sever/T5341
T5341: HA migrate virtual-server address tag to section address
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/high-availability.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/conf_mode/high-availability.py b/src/conf_mode/high-availability.py index e18b426b1..2b1cdbd23 100755 --- a/src/conf_mode/high-availability.py +++ b/src/conf_mode/high-availability.py @@ -175,6 +175,11 @@ def verify(ha): # Virtual-server if 'virtual_server' in ha: for vs, vs_config in ha['virtual_server'].items(): + + if 'address' not in vs_config and 'fwmark' not in vs_config: + raise ConfigError('Either address or fwmark is required ' + f'but not set for virtual-server "{vs}"') + if 'port' not in vs_config and 'fwmark' not in vs_config: raise ConfigError(f'Port or fwmark is required but not set for virtual-server "{vs}"') if 'port' in vs_config and 'fwmark' in vs_config: |