diff options
author | khramshinr <khramshinr@gmail.com> | 2024-03-26 19:25:56 +0800 |
---|---|---|
committer | khramshinr <khramshinr@gmail.com> | 2024-03-26 20:02:10 +0800 |
commit | 2ba435fa4bc8a5c9b2285fb9215ebc582bfb5fdf (patch) | |
tree | e1f7dfcddf230a5baf6464cab0dc77355b5e822e /src/conf_mode/protocols_bgp.py | |
parent | 515b577b62e420d0a89d02ec5af3bb066a2b785a (diff) | |
download | vyos-1x-2ba435fa4bc8a5c9b2285fb9215ebc582bfb5fdf.tar.gz vyos-1x-2ba435fa4bc8a5c9b2285fb9215ebc582bfb5fdf.zip |
bgp: T6106: fix test and verify()
Diffstat (limited to 'src/conf_mode/protocols_bgp.py')
-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 []: |