Help with VLAN trunking

Simple setup

1 Netgear 110TP
1 MikroTik 750

2 networks and VLANs
192.168.1.1/24 - VLAN 1
192.168.2.1/24 - VLAN 2

How do I enable MikroTik to route the IP traffic between the VLANs trunked to the Netgear?

Very familiar with Netgear tagged, untagged, PVID - many deployed interconnected with Cisco 3850 Core as layer 3 and 2960s as layer 2 (just saying I have not used a MikroTik as the Router in a VLAN environment)
Very familiar with Router OS routing side of the OS. (many 2100s deployed pure routers)

Tried Wiki directions both using the simple VLAN to Port, Port to IP Tagged on Netgear - Fail, and create VLANs to Port, Create Bride, Ports to Bridge - Netgear Tagged 2 ports - Fail.

My gut tells me this should be pretty simple and I am just missing a basic Router OS concept.

Thanks in advance for the help

Thanks in Advance!!

The “/interface vlan” menu allows you to create VLAN interfaces. The VLAN interfaces will “contain” the packets with the indicated tag, while the underlying physical interface will “contain” the untagged packets.

Once these interfaces exist, you can assign IP addresses to them, and then set up whatever routes and/or firewall rules you need, just as you would with any other interfaces.

/interface vlan
add name=e1v1 interface=ether1 vlan-id=1
add name=e1v2 interface=ether1 vlan-id=2

/ip address
add interface=e1v1 address=192.168.1.5/24
add interface=e1v2 address=192.168.2.5/24

… and so forth.