Merge pull request #17603 from opensourcerouting/fix/bgp_peer_with_peer-group

bgpd: Check if as_type is not specified when peer is a peer-group member
This commit is contained in:
Jafar Al-Gharaibeh 2024-12-06 08:55:56 -06:00 committed by GitHub
commit f1a9b9292c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2158,8 +2158,7 @@ int peer_remote_as(struct bgp *bgp, union sockunion *su, const char *conf_if,
/* When this peer is a member of peer-group. */
if (peer->group) {
/* peer-group already has AS number/internal/external */
if (peer->group->conf->as
|| peer->group->conf->as_type) {
if (peer->group->conf->as || peer->group->conf->as_type != AS_UNSPECIFIED) {
/* Return peer group's AS number. */
*as = peer->group->conf->as;
return BGP_ERR_PEER_GROUP_MEMBER;