Does FRR support BGP route redistribution into OSPF using route-maps with filtering based on BGP attributes like Cisco. If not let me know how to archive it.

Ex: Based on BGP community want to set metric-type, metric and tag values (in OSPF)

route-map BGP-TO-OSPF deny 5
 match community 1
 set metric-type type-1
 set metric  10
 set tag 10101
exit
router ospf
 redistribute bgp route-map BGP-TO-OSPF
exit