Routing 101 anywhere?

I can't seem to get my head round routes?

I have a simple setup (see below) but i cannot work out what i need to do, to add two-way access between my lan and wan ports.

Can anyone help Please? Oh and explain each step please?

/interface set 0 name=lan
/interface set 1 name=wan

/interface ethernet poe set wan poe-out=auto

/ip address add address=192.168.0.29/24 interface=lan
/ip address add address=192.168.2.1/24 interface=wan

/ip pool add name="DHCP-0" ranges=192.168.0.100-192.168.0.254
/ip pool add name="DHCP-1" ranges=192.168.1.3-192.168.1.254
/ip pool add name="DHCP-2" ranges=192.168.2.3-192.168.2.254
/ip pool add name="DHCP-3" ranges=192.168.3.3-192.168.3.254
/ip pool add name="DHCP-4" ranges=192.168.4.3-192.168.4.254

/ip dhcp-server add name="DHCP-lan" address-pool="DHCP-0" interface=lan
/ip dhcp-server add name="DHCP-wan" address-pool="DHCP-2" interface=wan

You have no info about your gateway. That is needed to have this to work.

to have 0.x client to connect to 2.1/24 the 0.x need to know that 0.29 is gateway for 2.1/24.
Also you need some default gateway. I assume this is 0.1?

Its also possible to do a nat. (Src-nat - action masquerade out interface wan)

The setup seems a bit wired (dhcp server at both lan and wan?)

But thats the bit i can’t get my head round, what do i need to put in for a default gateway and what else do i need to make the .0.x see the .2.x sub-net?

and vv .2.x subnet see the .0.x subnet?