Hi there, new Mikrotik user here. Haven't even made it to production yet, but seems to work well so far!
So, on a Cisco device, I might use something like the following:
router bgp 65001
aggregate-address 1.1.1.0 255.255.255.0
neighbor 192.168.1.1 remote-as 65001
neighbor <isp_address> remote-as 101
redistribute connected
interface GigabitEthernet0/0/1
ip address 1.1.1.1 255.255.255.128
interface GigabitEthernet0/0/2
ip address 1.1.1.128 255.255.255.128
interface GigabitEthernet0/0/3
ip address <isp_customer_address> 255.255.255.252
The 1.1.1.0/24 prefix is advertised to the ISP.
How do I specify the "aggregate-address" command in Mikrotik?
Is this something configured in the filter?
The older versions appear to have an obvious command in the documentation, but 7.x version doesn't seem to show this.
How do I go about applying something like this?