this is my quagga config under linux.
I want to migrate it to mikrotik’s routing.
interface eth0.401
ip ospf authentication message-digest
ip ospf message-digest-key 5 md5 my-md5-key
ip ospf cost 10
ip ospf hello-interval 3
ip ospf dead-interval 10
!
router ospf
ospf router-id 172.16.0.1
redistribute connected route-map home_map
redistribute static route-map home_map
network 172.16.0.0/30 area 0.0.0.1
area 0.0.0.1 authentication message-digest
area 0.0.0.1 range 172.160.0.0/30
!
ip prefix-list home seq 100 permit 10.3.0.0/24 le 32
ip prefix-list home seq 101 deny 0.0.0.0/0
!
route-map home_map permit 10
match ip address prefix-list home