Hi,
I have a question about configure VLAN’s on the Mikrotik CRS125-24G-1S-IN.
I have an RB2011UAS, what I use as Router/Firewall and where I have VLAN’s configured. I want to set-up a trunk to my CRS125-24G-1S-IN, and setup two ports with trunks to 2 servers and the other ports as accessports.
How can I do this?
becs
February 4, 2014, 4:30pm
2
Here is the configuration which should help you to achieve it.
Ports on CRS125:
ether9 - [T10,T11,T12] to RB2011
ether10 - [U10]
ether11 - [T11]
ether12 - [T12]
ether13 - [U11]
ether14 - [U12]
CRS125 configuration:
/interface ethernet
set [ find default-name=ether10 ] master-port=ether9
set [ find default-name=ether11 ] master-port=ether9
set [ find default-name=ether12 ] master-port=ether9
set [ find default-name=ether13 ] master-port=ether9
set [ find default-name=ether14 ] master-port=ether9
/interface ethernet switch
set bridge-type=customer-vlan-bridge
/interface ethernet switch egress-vlan-translation
add customer-vid=10 new-customer-vid=0 port=ether10
add customer-vid=11 new-customer-vid=0 port=ether13
add customer-vid=12 new-customer-vid=0 port=ether14
/interface ethernet switch ingress-vlan-translation
add customer-vid=0 new-customer-vid=10 port=ether10 sa-learning=yes
add customer-vid=0 new-customer-vid=11 port=ether13 sa-learning=yes
add customer-vid=0 new-customer-vid=12 port=ether14 sa-learning=yes
efaden
February 4, 2014, 5:58pm
3
becs:
Here is the configuration which should help you to achieve it.
Ports on CRS125:
ether9 - [T10,T11,T12] to RB2011
ether10 - [U10]
ether11 - [T11]
ether12 - [T12]
ether13 - [U11]
ether14 - [U12]
CRS125 configuration:
/interface ethernet
set [ find default-name=ether10 ] master-port=ether9
set [ find default-name=ether11 ] master-port=ether9
set [ find default-name=ether12 ] master-port=ether9
set [ find default-name=ether13 ] master-port=ether9
set [ find default-name=ether14 ] master-port=ether9
/interface ethernet switch
set bridge-type=customer-vlan-bridge
/interface ethernet switch egress-vlan-translation
add customer-vid=10 new-customer-vid=0 port=ether10
add customer-vid=11 new-customer-vid=0 port=ether13
add customer-vid=12 new-customer-vid=0 port=ether14
/interface ethernet switch ingress-vlan-translation
add customer-vid=0 new-customer-vid=10 port=ether10 sa-learning=yes
add customer-vid=0 new-customer-vid=11 port=ether13 sa-learning=yes
add customer-vid=0 new-customer-vid=12 port=ether14 sa-learning=yes
And how do we handle it if we need to do routing? Also… when can we expect full documentation and a full feature set for these devices?