Add configuration support for VPNv4 and VPNv6 AFIs within peer-groups:
protocols {
bgp {
}
peer-group TEST {
ipv4-vpn {
}
ipv6-vpn {
}
}
}
}FRR seems to support this configuration identically to how neighbors are configured:
router bgp 65000
neighbor TEST peer-group
neighbor TEST remote-as internal
neighbor TEST update-source lo
!
address-family ipv4 vpn
neighbor TEST activate
neighbor TEST route-reflector-client
exit-address-family
!
address-family ipv6 vpn
neighbor TEST activate
neighbor TEST route-reflector-client
exit-address-family
!
!