I’ve implemented PCC, using the noted manuals. All works well, it splits equally and also got hotspot working with it.
Now I’m trying to check failover, this also works if the whole connection goes down (aka disconnect ethernet cable).
I got 2 issues: routing:
Getting not all routes marked as active. (missing knowledge on scope/target scope, expecting a solution there).
(cannot enable ping on line 0, as that marks route inactive. it says unreachable then).
my routes (remove disabled routes):
0 A S ;;; PCC route WAN1
dst-address=0.0.0.0/0 gateway=192.168.2.254 gateway-status=192.168.2.254 reachable via WAN1 distance=1 scope=30 target-scope=10 routing-mark=to_WAN1
3 A S ;;; PCC route WAN2
dst-address=0.0.0.0/0 gateway=192.168.0.1 gateway-status=192.168.0.1 reachable via WAN2 distance=2 scope=30 target-scope=10 routing-mark=to_WAN2
6 A S ;;; non-PCC route WAN1
dst-address=0.0.0.0/0 gateway=192.168.2.254 gateway-status=192.168.2.254 reachable via WAN1 distance=1 scope=30 target-scope=10
7 S ;;; non-PCC route WAN2
dst-address=0.0.0.0/0 gateway=192.168.0.1 gateway-status=192.168.0.1 reachable via WAN2 distance=2 scope=30 target-scope=10
10 ADC dst-address=192.168.0.0/24 pref-src=192.168.0.100 gateway=WAN2 gateway-status=WAN2 reachable distance=0 scope=10
11 ADC dst-address=192.168.2.0/24 pref-src=192.168.2.253 gateway=WAN1 gateway-status=WAN1 reachable distance=0 scope=10
12 ADC dst-address=192.168.4.0/23 pref-src=192.168.4.1 gateway=LAN5 gateway-status=LAN5 reachable distance=0 scope=10
13 ADC dst-address=192.168.88.0/24 pref-src=192.168.88.1 gateway=LAN3 gateway-status=LAN3 reachable distance=0 scope=10
Other issue (related to routes);
I tried implementing failover without scripting as in the wiki. But somehow that also fails.
I got the feeling it’s something ‘simple’. Please advise me what to do next.