PPPoE works, but no route to host error on clients

Hi all,

I have an ISP (ISP2 interface) with PPPoE connections and it works on the router. I can ping 8.8.8.8 and google.com from the router terminal. But I can’t from a client, I got the following error:
ping: connect: Network is unreachable

I’ve setup nat masq, but it is sill not working. Any idea?
my config:

[admin@MikroTik] > export 
# 2023-09-25 12:01:52 by RouterOS 7.11.2
# software id = 6GH8-7J3B
#
# model = RB4011iGS+
# serial number = AAAF0A39FF87

/interface bridge
add name=LAN-BRIDGE

/interface ethernet
set [ find default-name=ether1 ] disabled=yes name=ISP1
set [ find default-name=ether2 ] name=ISP2
set [ find default-name=ether3 ] name=LAN2
set [ find default-name=ether4 ] name=LAN3
set [ find default-name=ether5 ] name=LAN4
set [ find default-name=ether6 ] name=LAN5
set [ find default-name=ether7 ] name=LAN6
set [ find default-name=ether8 ] name=LAN7
set [ find default-name=ether9 ] name=LAN8
set [ find default-name=ether10 ] name=LAN9
set [ find default-name=sfp-sfpplus1 ] disabled=yes

/interface pppoe-client
add add-default-route=yes default-route-distance=2 disabled=no interface=ISP2 keepalive-timeout=60 name=ISP2-PPPoE user=xxxx

/interface list
add name=LAN

/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik

/ip pool
add name=dhcp-pool ranges=10.0.90.1-10.0.99.100

/ip dhcp-server
add address-pool=dhcp-pool interface=LAN-BRIDGE lease-time=521w3d name=dhcp-server

/port
set 0 name=serial0
set 1 name=serial1

/interface bridge port
add bridge=LAN-BRIDGE interface=LAN2
add bridge=LAN-BRIDGE interface=LAN3
add bridge=LAN-BRIDGE interface=LAN4
add bridge=LAN-BRIDGE interface=LAN5
add bridge=LAN-BRIDGE interface=LAN6
add bridge=LAN-BRIDGE interface=LAN7
add bridge=LAN-BRIDGE interface=LAN8
add bridge=LAN-BRIDGE interface=LAN9

/interface list member
add interface=LAN-BRIDGE list=LAN

/ip address
add address=10.0.0.1/16 interface=LAN-BRIDGE network=10.0.0.0

/ip dns
set servers=8.8.8.8,8.8.4.4

/ip firewall nat
add action=masquerade chain=srcnat comment=ISP2 dst-address=0.0.0.0 out-interface=ISP2-PPPoE

/ip service
set telnet disabled=yes
set ftp disabled=yes
set www address=10.0.0.0/16
set api-ssl disabled=yes

/system clock
set time-zone-name=Europe/Budapest

/tool mac-server
set allowed-interface-list=LAN

/tool mac-server mac-winbox
set allowed-interface-list=LAN

You have no default gateway configured in your DHCP settings.

OMG, thanks, it works now!

Also better leave out unnecessary properties of src-nat:

add action=masquerade chain=srcnat comment=ISP2 > dst-address=0.0.0.0 > out-interface=ISP2-PPPoE