Hello everyone,
I need some guidance for a design, i will let you here the whole picture just to understand what is desirable to be achieved.
1.I want to connect 2x Meraki MX67 to 2x Adva model FSP 150-GE112Pro. This will be active/active links.
2.How?
MX67 1 WAN 1 to ADVA 1 (port 2) - Active - subnet 192.168.1.0/29
MX67 1 WAN 2 to ADVA 2(port 2) - Active - subnet 192.168.1.0/29
MX67 2 WAN 1 to ADVA 1 (port3) - Backup/Standby - subnet 192.168.2.0/29
MX 67 2 WAN 2 to ADVA 2(port3) - Backup/Standby - subnet 192.168.2.0/29
- we have 2 internet links, 1 from each adva towards the PE (on the adva network port configuration towards the PE WAN -port 1)
- Meraki will have L3 connection with the PE (ips on MX WANS and on PEs), ADVAs should act like 2 separate bridge domains(2 vlans 10 and 20)
Lets focus now on the Adva model FSP 150-GE112Pro, and not on Meraki:
So, how we want to do this basically, on both ADVAs 1 there will be 2 vlans:
vlan 10 for port 2
vlan 20 for port 3
3.Since we do not have all the equipments, we want to simulate a scenario:
If we configure ADVA 1 with same vlan on the 2 ports, lets say vlan 10 will be configured on both port 2 and port 3 just to test the connectivity, we couldn't do that as the GUI got us many problems.
1.First you need to configure the port as EVPL right? - because you want to assign a vlan 10 to it.
2.Second you need to create an EVPL flow so both ports (2 and 3) should be part of the same vlan 10 member.
3.Third you need to allow/configure MAC learning for both ports, as the default adva is that ports cannot communicate with each other unless you turn mac on for learning.
Problem we faced was that the system wouldn't allow us to configure the same vlan/flow on the 2 ports
Again, what we want to achieve here is eather configure the ADVA NTE to locally bridge two UNI ports (E‑LAN/bridge‑domain) with no tag manipulation (either untagged or the same C‑VLAN preserved end‑to‑end) and with MAC learning enabled
I would really appreciate like a step by step at least cli config for what we want to achieve or at least a gui guidance for what we want to achieve. Something like:
# For each access port (example: 2, 3, 4)
configure
access-port access-1-1-1-2
admin-state in-service
service-type evpl
mtu 1522
speed auto-1000-full
exit
access-port access-1-1-1-3
admin-state in-service
service-type evpl
mtu 1522
speed auto-1000-full
exit
access-port access-1-1-1-4
admin-state in-service
service-type evpl
mtu 1522
speed auto-1000-full
exit
commit
# Create a single EVPL flow with all three ports as members, same VLAN
configure
flow fid 10
description "Bridge domain for ports 2,3,4 VLAN 100"
vlan-aware
vlan-members 100
mac-learning enable
member access-1-1-1-2
member access-1-1-1-3
member access-1-1-1-4
exit
commit