Simple vlan config not working

Hi,
I´m trying to configure a simple vlan with single interface, but find some issues:

[admin@MikroTik] > export  
# 2023-11-30 15:46:30 by RouterOS 7.12.1
# software id = 
#
/interface ethernet
set [ find default-name=ether1 ] disable-running-check=no
set [ find default-name=ether2 ] disable-running-check=no
/interface vlan
add interface=ether1 name=wan vlan-id=101
/interface list
add name=wan1
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/port
set 0 name=serial0
set 1 name=serial1
/ip address
add address=10.10.10.84/24 disabled=yes interface=wan network=10.10.10.0
add address=10.10.10.84/24 interface=ether1 network=10.10.10.0
/ip dhcp-client
add disabled=yes interface=ether1
/ip route
add disabled=no distance=1 dst-address=0.0.0.0/0 gateway=10.10.10.1 pref-src="" routing-table=main suppress-hw-offload=no
/system note
set show-at-login=no

With address configured on interface ehter1, gateway is reacheable but traffic has no 802.1q (as logic).
If i disable address on ether1 and enable on vlan “wan”, gateway is no recheable.
I´m loosing any configuration?
Thanks!

Seems completely as expected if you ask me.
Assuming you did not change the opposite device, there is no vlan information on the packets, so the router wouldn’t link it to the vlan interface.

The target is to delete the ether1 address and use the vlan “wan” address.
With only vlan addres, i have made a packet capture we can see the ARP requests from source and destination with 801.q correctly marked in both sides, but gateway (remote router address) is not reacheable even gateway is manually added.
We have an v6 router with same configuration and is working fine in our production enviroment. I´m new with v7 but seems not changes affecting this basic configuration, so i´m completely lost.
Thanks in advance.