diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-26 13:33:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 13:33:15 +0100 |
commit | 0fcab52921f27f8d2df9038a193be66c2ba18d11 (patch) | |
tree | 004298783887360714d2bb25dc0fbcc914f87bc3 /src | |
parent | 5d4ea3908ad4a065faf6d2921fb9d0e28019b752 (diff) | |
parent | 2ba435fa4bc8a5c9b2285fb9215ebc582bfb5fdf (diff) | |
download | vyos-1x-0fcab52921f27f8d2df9038a193be66c2ba18d11.tar.gz vyos-1x-0fcab52921f27f8d2df9038a193be66c2ba18d11.zip |
Merge pull request #3190 from HollyGurza/T6106
bgp: T6106: fix test and verify()
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/protocols_bgp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/conf_mode/protocols_bgp.py b/src/conf_mode/protocols_bgp.py index d90dfe45b..f1c59cbde 100755 --- a/src/conf_mode/protocols_bgp.py +++ b/src/conf_mode/protocols_bgp.py @@ -457,6 +457,8 @@ def verify(bgp): peer_group_as = dict_search(f'peer_group.{peer_group}.remote_as', bgp) if peer_group_as != None and peer_group_as != 'internal' and peer_group_as != bgp['system_as']: raise ConfigError('route-reflector-client only supported for iBGP peers') + else: + raise ConfigError('route-reflector-client only supported for iBGP peers') # Throw an error if a peer group is not configured for allow range for prefix in dict_search('listen.range', bgp) or []: |