config vlan between catalyst 500G and MKT

dear all.

How to configure vlan in cisco catalyst express 500G series and mikrotik
routerOs

my vlan config in cisco catalys 500G 24 port is
vlan1 = default
vlan11 = port 1 to port 4
vlan12 = port 5 to port 8
vlan13 = port 6 to port 9
vlan14 = port 10 to port 16
vlan15 = port 17 to port 22
vlan16 = port 21 to port 23
port 24 = trunking

configure in mikrotik
ether1 = Local —> to port 24 trunk
ether2 = public ----> to next router


/add address 192.168.13.1/30 interface ether1

/add address 172.16.16.1/30 interface ether2

please help me how to add sub interface (vlan1, vlan11, vlan12, vlan13, vlan14, vlan15, vlan16) in interface ether1 so that mikrotik and swith can response each other.

i want add addresses
vlan1 = no address
vlan11 = 192.168.0.190/28
vlan12 = 192.168.0.206/28
vlan13 = 192.168.0.222/28
vlan14 = 192.168.0.238/28
vlan15 = 192.168.0.254/28
vlan16 = 192.168.0.174/28


how to add ip address in sub interface (vlans)

thnks

Hey,
Have a look at our presentation from MUM in Krakkow: http://mum.mikrotik.com/presentations/2007_1/PL07_Roamingwire.pdf
This will give you an advice of how to create VLAN´s and trunk those with MT´s into other switches. Some code snippet for you to look into:

int vlan add name=eth1-vl2 vlan-id=2 int=ether1
int vlan add name=wds-mt-1-vl2 vlan-id=2 int=wds-mt-1
int bri add name=“AdminBr-vl2” stp=yes priority=0x100
int bri port add int=eth1-vl2 bridge=AdminBr-vl2
int bri port add int=wds-mt-1-vl2 bridge=AdminBr-vl2

int vlan add name=eth1-vl10 vlan-id=10 int=ether1
int vlan add name=wds-mt-1-vl10 vlan-id=10 int=wds-mt-1
int bri add name=“CorpBr-vl10” stp=yes priority=0x100
int bri port add int=eth1-vl10 bridge=CorpBr-vl10
int bri port add int=wds-mt-1-vl10 bridge=CorpBr-vl10

Always create a bridge for each VLAN and put the Q tagged interfaces into the right bridge.
/Paul