Hello to everybody,
I’m beginner in RouterOS, I need help in configuration.
What is planing:

For the moment I have this configuration but of course it’s not working:
[admin@MikroTik] > export
# jan/01/1970 23:32:25 by RouterOS 6.22
# software id = 3EIP-EELV
#
/interface bridge
add admin-mac=4C:5E:0C:62:5B:99 auto-mac=no mtu=1500 name=bridge-UniFi
/interface ethernet
set [ find default-name=ether1 ] name=ether1-gateway-guest
set [ find default-name=ether2 ] name=ether2-gateway-local
set [ find default-name=ether3 ] name=ether3-unifi1
set [ find default-name=ether4 ] name=ether4-unifi2
set [ find default-name=ether5 ] name=ether5-unifi3
set [ find default-name=sfp1 ] disabled=yes name=sfp1-gateway
/ip neighbor discovery
set ether1-gateway-guest discover=no
set sfp1-gateway discover=no
/interface vlan
add interface=bridge-UniFi l2mtu=1594 name=vlan1-guest vlan-id=200
add interface=bridge-UniFi l2mtu=1594 name=vlan2-local vlan-id=300
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
add name=dhcp_pool1 ranges=192.168.168.2-192.168.168.254
add name=dhcp_pool2 ranges=192.168.169.2-192.168.169.254
/ip dhcp-server
add address-pool=default-dhcp interface=bridge-UniFi name=default
add address-pool=dhcp_pool1 disabled=no interface=vlan2-local name=server1
add address-pool=dhcp_pool2 disabled=no interface=vlan1-guest lease-time=3d name=dhcp1
/port
set 0 name=serial0
/system logging action
set 2 remember=yes
set 3 src-address=0.0.0.0
/interface bridge port
add bridge=bridge-UniFi interface=ether3-unifi1
add bridge=bridge-UniFi interface=ether4-unifi2
add bridge=bridge-UniFi interface=ether5-unifi3
add bridge=bridge-UniFi interface=ether6
/ip address
add address=192.168.88.1/24 comment="default configuration" interface=bridge-UniFi network=\
192.168.88.0
add address=88.204.191.34/29 interface=ether1-gateway-guest network=88.204.191.32
add address=192.168.20.224/24 interface=ether2-gateway-local network=192.168.20.0
add address=192.168.168.1/24 interface=vlan2-local network=192.168.168.0
add address=192.168.169.1/24 interface=vlan1-guest network=192.168.169.0
/ip dhcp-client
add comment="default configuration" dhcp-options=hostname,clientid disabled=no interface=\
sfp1-gateway
add comment="default configuration" dhcp-options=hostname,clientid interface=\
ether1-gateway-guest
/ip dhcp-server network
add address=192.168.88.0/24 comment="default configuration" dns-server=192.168.88.1 gateway=\
192.168.88.1
add address=192.168.168.0/24 dns-server=192.168.168.1 gateway=192.168.168.1 netmask=24
add address=192.168.169.0/24 dns-server=192.168.169.1 gateway=192.168.169.1
/ip dns
set allow-remote-requests=yes servers=8.8.8.8
/ip dns static
add address=192.168.88.1 name=router
/ip firewall filter
add chain=input comment="default configuration" protocol=icmp
add chain=input comment="default configuration" connection-state=established
add chain=input comment="default configuration" connection-state=related in-interface=\
ether2-gateway-local
add action=drop chain=input comment="default configuration" in-interface=ether1-gateway-guest
add chain=forward comment="default configuration" connection-state=established
add chain=forward comment="default configuration" connection-state=related
add action=drop chain=forward comment="default configuration" connection-state=invalid
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration" out-interface=\
ether1-gateway-guest to-addresses=0.0.0.0
add action=masquerade chain=srcnat out-interface=ether2-gateway-local
/ip proxy
set cache-path=web-proxy1
/ip route
add distance=1 gateway=88.204.191.33
/ip route vrf
add interfaces=ether2-gateway-local,vlan2-local routing-mark=local
add interfaces=ether1-gateway-guest,vlan1-guest routing-mark=guest
/ip upnp
set allow-disable-external-interface=no
/snmp
set trap-community=public
/system clock
set time-zone-name=Etc/GMT+5
/system clock manual
set time-zone=+05:00
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=ether2-gateway-local
add interface=ether3-unifi1
add interface=ether4-unifi2
add interface=ether5-unifi3
add interface=ether6
add interface=ether7
add interface=ether8
add interface=ether9
add interface=ether10
add interface=bridge-UniFi
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether2-gateway-local
add interface=ether3-unifi1
add interface=ether4-unifi2
add interface=ether5-unifi3
add interface=ether6
add interface=ether7
add interface=ether8
add interface=ether9
add interface=ether10
add interface=bridge-UniFi
Please help