Skip to content

Commit

Permalink
Merge pull request #17603 from opensourcerouting/fix/bgp_peer_with_pe…
Browse files Browse the repository at this point in the history
…er-group

bgpd: Check if as_type is not specified when peer is a peer-group member
  • Loading branch information
Jafaral authored Dec 6, 2024
2 parents 03ea25a + 2797506 commit f1a9b92
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bgpd/bgpd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f1a9b92

Please sign in to comment.