is there any chance that i can make bgp-vpls to run on the name that i have specificate?
The only issues that i’m having is any time when the connection is establishing i’m getting new bgp-vpls name.
you can see from my picture

is there any chance that i can make bgp-vpls to run on the name that i have specificate?
The only issues that i’m having is any time when the connection is establishing i’m getting new bgp-vpls name.
you can see from my picture

anyone, or maybe i should wait for bgp vpls on v7
according from this link , it saying this is possible, on practice i don’t think so.
https://wiki.mikrotik.com/wiki/Transparently_Bridge_two_Networks_using_MPLS_extended
anyone can help me with this script, is found that form the mum in usa 2010
:local bondID [/interface bonding find name=“bonding1”];
:local slaves [/interface bonding get $bondID slaves];
:local vplsAid [interface vpls find vpls=“aa”];
:local vplsBid [interface vpls find vpls=“bb”];
:local newSlaves;
:if ( ([:pick $slaves 0] = “(unknown)”) || ([:pick $slaves 1] =
“(unknown)”)) do={
:if ( ($vplsAid = “”) || ($vplsBid = “”) ) do={
:log info “at least one of vpls is down”;
} else={:set newSlaves “$[/interface vpls get $vplsAid name],$
[/interface vpls get $vplsBid name]”;
:log info $newSlaves;
/interface bonding set $bondID slaves=$newSlaves;
}
}
for some reason doesn’t work for me