Hello, total beginner here so a bit stumped. Configured for dual wan and DHCP, now i can access internet but cannot access the router. Winbox can see the router but cannot connect (connection time out). Please for your input on the following script
# dec/05/2024 01:34:32 by RouterOS 6.49.17
# software id = **ELIDED**
#
# model = RB750Gr3
# serial number = xxxxxxxxxx
/interface bridge
add name=bridge_LAN
/interface ethernet
set [ find default-name=ether1 ] name=ether1-ISPA
set [ find default-name=ether2 ] name=ether2-Ispb
set [ find default-name=ether3 ] name=ether3-output
set [ find default-name=ether4 ] name=ether4-output
set [ find default-name=ether5 ] name=ether5-output
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=dhcp_pool0 ranges=192.168.0.2-192.168.0.254
/ip dhcp-server
add address-pool=dhcp_pool0 disabled=no interface=bridge_LAN name=dhcp1
/interface bridge port
add bridge=bridge_LAN interface=ether3-output
add bridge=bridge_LAN interface=ether4-output
add bridge=bridge_LAN interface=ether5-output
/ip address
add address=192.168.0.1/24 interface=bridge_LAN network=192.168.0.0
/ip dhcp-client
add disabled=no interface=ether1-ISPA
add disabled=no interface=ether2-Ispb
/ip dhcp-server network
add address=192.168.0.0/24 dns-server=103.94.168.168,103.94.168.169 gateway=\
192.168.0.1
/ip dns
set allow-remote-requests=yes servers=1.1.1.1,8.8.8.8
/ip firewall mangle
add action=mark-connection chain=prerouting connection-mark=no-mark \
in-interface=bridge_LAN new-connection-mark=isp1 passthrough=yes \
per-connection-classifier=both-addresses-and-ports:2/0
add action=mark-connection chain=prerouting connection-mark=no-mark \
in-interface=bridge_LAN new-connection-mark=isp2 passthrough=yes \
per-connection-classifier=both-addresses-and-ports:2/1
add action=mark-routing chain=prerouting connection-mark=isp1 in-interface=\
bridge_LAN new-routing-mark="ke isp1" passthrough=yes
add action=mark-routing chain=prerouting connection-mark=isp2 in-interface=\
bridge_LAN new-routing-mark="ke isp2" passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
in-interface=ether1-ISPA new-connection-mark=isp1 passthrough=yes
add action=mark-connection chain=prerouting connection-mark=no-mark \
in-interface=ether2-Ispb new-connection-mark=isp2 passthrough=yes
add action=mark-routing chain=output connection-mark=isp1 new-routing-mark=\
"ke isp1" passthrough=yes
add action=mark-routing chain=output connection-mark=isp2 new-routing-mark=\
"ke isp2" passthrough=yes
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1-ISPA
add action=masquerade chain=srcnat out-interface=ether2-Ispb
/ip route
add check-gateway=ping distance=1 gateway=192.168.1.1 routing-mark="ke isp1"
add check-gateway=ping distance=1 gateway=8.8.8.8 routing-mark="ke isp1" \
target-scope=30
add distance=2 gateway=192.168.8.1 routing-mark="ke isp1"
add check-gateway=ping distance=1 gateway=192.168.8.1 routing-mark="ke isp2"
add check-gateway=ping distance=1 gateway=1.1.1.1 routing-mark="ke isp2" \
target-scope=30
add distance=2 gateway=192.168.1.1 routing-mark="ke isp2"
add check-gateway=ping distance=1 gateway=192.168.1.1
add check-gateway=ping distance=1 gateway=192.168.8.1
add distance=1 dst-address=1.1.1.1/32 gateway=192.168.8.1
add distance=1 dst-address=8.8.8.8/32 gateway=192.168.1.1






