1036 and VLANs - dumb question

Hello
just a dumb question:

1036,
sfp+1 10.0.0.1/24
sfp+2 100.100.100.1/24
they do plain routing

I need to add a VLAN tagged on the sfp+2 (vlan 1000), and also tagged on the sfp+1
I would like to use the router to pass some little traffic for vlan 1000

how can I do that config?
thanks

Hard to say the best method, so the answer is it depends…

/export hide-sensitive file=anynameyouwish.

So we can see the current design and how to best optimize the addition of a vlan.
Of course my answer will be to make everything vlans LOL.

If it is the first and last VLAN to ever be handled there:

/interface vlan
add vlan-id=1000 interface=sfp+1 name=sfp+1.1000
add vlan-id=1000 interface=sfp+2 name=sfp+2.1000

/interface bridge
add name=br.1000 protocol-mode=none

/interface bridge port
add bridge=br.1000 interface=sfp+1.1000
add bridge=br.1000 interface=sfp+2.1000

Otherwise, go for the full single-vlan-aware-bridge setup (bridge-filtering=yes), where sfp+1 and sfp+2 will be access ports to their respective VLANs and trunk ports for the rest, etc.