Hello, everyone.
I am new to Mikrotik and I would like help with a problem I am having.
I am looking to perform the following topology:

In addition I want to configure a DHCP server only for VLAN1.
Here is the configuration I made:
/interface bridge
add name=bridge1 protocol-mode=none vlan-filtering=yes
/interface vlan
add interface=bridge1 name=ID01-DATA vlan-id=1
add interface=bridge1 name=ID10-VOIP vlan-id=10
/interface bridge port
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3 pvid=10
/interface bridge vlan
add bridge=bridge1 tagged=ether4 untagged=ether2 vlan-ids=1
add bridge=bridge1 tagged=ether4 untagged=ether3 vlan-ids=10
/ip address
add address=192.168.43.253/24 interface=ID01-DATA network=192.168.43.0
add address=10.10.43.253/24 interface=ID10-VOIP network=10.10.43.0
/ip pool
add name=dhcp_pool3 ranges=192.168.43.1-192.168.43.250
/ip dhcp-server
add address-pool=dhcp_pool3 disabled=no interface=ID01-DATA name=dhcp2
/ip dhcp-server network
add address=192.168.43.0/24 dns-server=178.23.154.5 domain=colombus.local gateway=192.168.43.254
The problem is that I don’t receive a DHCP lease by connecting my PC to port 2 and I can’t ping the router’s IP address.
Can you help me please?
Regards