0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-19 20:05:21 +00:00

Check correct address types during aggregation configuration

This commit is contained in:
Igor Putovny 2024-03-07 15:39:54 +01:00
parent 21f689752a
commit 347b322dd9

View File

@ -82,7 +82,14 @@ aggregator_proto_item:
;
aggregator_proto_opts: /* empty */ | aggregator_proto_opts aggregator_proto_item ';' ;
aggregator_proto: aggregator_proto_start proto_name '{' aggregator_proto_opts '}' ;
aggregator_proto: aggregator_proto_start proto_name '{' aggregator_proto_opts '}' {
if (AGGREGATOR_CFG->src->table->addr_type != AGGREGATOR_CFG->dst->table->addr_type)
cf_error("Both rtables in aggregator must have the same network type");
if (AGGREGATOR_CFG->net_present == 0)
if (AGGREGATOR_CFG->src->table->addr_type != NET_IP4 && AGGREGATOR_CFG->src->table->addr_type != NET_IP6)
cf_error("Trie aggregation is available only for IP4 or IPv6 networks");
};
aggr_list: