Hi, I have a problem with USB LTE Huawei E3372 with my mikrotik RB750Gr3. After search a lot in this and others forums I found only one solution and this is to update to last version 7.1.
I do it but I have a new problem, in older version I put recursive routes to do a failover. LTE its a backup connection. But the two routes with 0.0.0.0 destination address have the invalid tag and are in red color.
I have same problem with recursive routes on development version, are there any solutions for v7.1 beta 6. I will try to attach here screenshots my situation if I use V7 and if I use 6.xx
I’ve no idea if you’re setup correctly as mine looks different to yours. But, v7 software routing is not complete and recursive does not work yet - as far as I’m aware.
I’m on long term. V6.47.10 I believe.
My apologies, my first setup works recursive routes but I have to waiting longer than usual for back on main route(ISP1) about 3 minutes. I simulated broken internet, I pulled out coaxial cable from border router(ISP1) not direct UTP cable betvine ISP1 and my MT.(this solution works imidietly)
It is works but I must waithing some time for switching gateway ISPs.
Many thanks
As @mrz implicitly said: the ROS7 recursive routes have different rules than ROS6 for matching values.
In ROS6: “target scope” must be bigger or equal to “scope”: eg “target scope=10” and “scope=10” do match: "target scope >= “scope”
In ROS7: "target scope must be bigger than “scope” to match: eg “target scope=11” needed to match with “scope=10”: “target scope” > “scope”
Actually, target-scope of next route should be strictly less (or not set, as with connected routes) than target-scope of your route. So, ‘target-scope=10’ does match a route with ‘scope=10’ unless that route has target-scope >= 10
There even seems more to this recursive route in V7.1 . Did it change from 2020 to 2021? Here (2020) @MRZ shows A , in the other post (2021) it’s B. (target scope > scope)
And there are other changes mentioned in the HELP.
I think target-scope must be greater than the other route’s target-scope is correct. mrz’s response as to why they did that (prevents recursion loops) didn’t really make much sense to me for target-scope needing to be greater than scope. It does make sense if target-scope needs to be greater than target-scope, and I can understand how that would prevent recursion loops.
I updated my Mikrotik today from v6 to v7 and I was trying to figure out if it was an error or the new default. It seems to be new default the missing “recursive via x.x.x.x” message.
Thanks community for helping me about new behavior for scope and target scope.