I am attempting to configure a BGP peer as a route reflector client per the documentation BGP — VyOS 1.5.x (circinus) documentation . This syntax works as expected in 1.5-rolling-202312040024 as so:
set protocols bgp neighbor 10.75.3.4 address-family ipv4-unicast route-reflector-client
However, in 1.5-stream-2025-Q2 and the latest nightly (2025.08.28-0019-rolling), I get the following error:
user@vcore# set protocols bgp neighbor 10.75.3.4 address-family ipv4-unicast route-reflector-client[edit]dave@slcvcore# commit[ protocols bgp ]Traceback (most recent call last):File “/usr/libexec/vyos/services/vyos-configd”, line 142, in run_scriptscript.verify(c)File “/usr/libexec/vyos//conf_mode/protocols_bgp.py”, line 480, in verifyif peer_group_as is None or (peer_group_as != ‘internal’ and peer_group_as != bgp[‘system_as’]):^^^^^^^^^^^^^UnboundLocalError: cannot access local variable ‘peer_group_as’ where it is not associated with a value
[[protocols bgp]] failedCommit failed
Is there some new configuration that is required or is this a bug?