diff options
author | Christian Breunig <christian@breunig.cc> | 2024-03-26 17:39:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 17:39:06 +0100 |
commit | 9ee515c236f9fb8cb907790b37a8f5fa54efc47a (patch) | |
tree | 7b740f8de3802759c6a8324b23e3b8d6b1cdc37d /src | |
parent | 25891616fd74013241dc755166c7e3ad732849cc (diff) | |
parent | f62e67e78bae6425057a5fb57676d8b911bc9cc7 (diff) | |
download | vyos-1x-9ee515c236f9fb8cb907790b37a8f5fa54efc47a.tar.gz vyos-1x-9ee515c236f9fb8cb907790b37a8f5fa54efc47a.zip |
Merge pull request #3191 from vyos/mergify/bp/sagitta/pr-3190
bgp: T6106: fix test and verify() (backport #3190)
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 []: |