I used to see Cisco's approach when configure BGP:
router bgp 64511
network 101.10.0.0 mask 255.255.255.0
...
ip route 101.10.0.0 255.255.255.0 null0
that is, I need to add the network to routing table so I can advertise it.
Now I need to configure FRR routing suite which mostly mimics the Cisco's config language, and I really doubt if I should (or shouldn't ) add the line route ... null0
.
The idea behind adding the line is that Cisco used to require that, idea behind not adding is that Linux (which is underline layer) won't be happy to see extra subnet in its routing table.
Please advice!
(Sorry if I misplace the question, not aware where network questions should go to).