I want to make an optical link reservation.
I have two Mikrotik CRS317 and network.
Two CRS317, they are connected by an optical channel.
And I have a spare channel - from other switches and Antennas.
This channel enters the device as tagged vlan.
And I have make bonding-interface. The settings are the same on both devices.
But somewhere I make a mistake.
This sfpplus1-uplink - its Fiber Port, Uplink.
sfpplus6 it another port, for reserve.
sfpplus6 have tagged vlan air95 ( reserve "link")
Code: Select all
/interface bridge
add admin-mac=C4:AD:34:6D:38:FA auto-mac=no dhcp-snooping=yes name=bridge protocol-mode=none pvid=1001 vlan-filtering=yes
/interface bridge vlan
add bridge=bridge tagged=sfpplus6 vlan-ids=95
/interface vlan
add interface=bridge name=air95 vlan-id=95
/interface bonding
add mode=active-backup name=airbonding primary=sfpplus1-uplink slaves=sfpplus1-uplink,air95
add address=192.168.101.131/24 interface=airbonding network=192.168.101.0
I see Bonding Status Active ports sfpplus1-uplink and inactive ports air95.
I run ping between device. And I see packets between devices in optics ports.
If I disable fiber link - I see how the ping goes through air95 (latency up).
But if fiber ports work - untagged traffic going always goes through sfpplus6...
But in Bridge->Ports Bonding interface have PVID 1.
It does not go through optics, but goes through a backup channel. Where did I go wrong?
ps: I can show you the network diagram if needed.