Hi again! After a long time, I tried this again, and I was able to make the switch work with this config:
config interface 'lan'
option proto 'static'
option ipaddr '192.168.0.69'
option netmask '255.255.255.0'
option gateway '192.168.0.1'
option dns '8.8.8.8'
option nat '1'
option ifname 'eth1.0'
config interface 'wan'
option ifname 'eth1.1'
option proto 'dhcp'
config switch 'eth1'
option enable '1'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'eth1'
option vlan '0'
option ports '0 1 2 5t'
config switch_vlan
option device 'eth1'
option vlan '1'
option ports '3 5t'
config interface 'wifi'
option proto 'static'
option ipaddr '192.168.2.1'
option netmask '255.255.255.0'
option nat '1'
Now the problem is, by default, it takes the "lan" interface as WAN. If I stop that interface, then it takes the correct one (Port #4), getting IP from DHCP.
But, after connecting a client to the wifi interface, it doesn't get Internet. I'm not sure if I have to set a bridge between the interfaces so... any help about this?
Thank you again!