Andrew
Andrew
Try this https://github.com/openwrt/openwrt/issues/13379#issuecomment-1911833638 In principle duplicate of (and full of maybe-workarounds) https://github.com/openwrt/openwrt/issues/10224
You need to switch route to ip address of pppoe server from pppoo-wan to dsl0.7 Either way the problem in 10224 is still not understood well enough to fix.
Any success with swapping interface of route to ppp server? i.e ``` ip -4 ro sh ip ro del "the full text" ip ro add "the full text swapping pppoe-wan...
Also `ping -I pppoo-wan ppoe-server-ip` vs `-I dsl0.7` may show some latency weirdness.
There is a specific route to your provider's PPPoE server. It is (mistakenly|uncommonly) assigned via pppoe tunnel, not via physical interface. ``` # ip -4 ro sh default via 192.0.2.1...
The second route needs to be replaced: ``` ip route del "84.59.211.1 dev pppoe-wan scope link src 2.204.253" ip route add "84.59.211.1 dev dsl0.7 scope link" ```
so check DSL device name in 'ip addr'
Maybe without tickmarks indeed. ``` ip route del 84.59.211.1 dev pppoe-wan scope link src 2.204.253 ip route add 84.59.211.1 dev dsl0.7 scope link src 2.204.253 ``` EDIT: since no IP...
It changes route to pppoe concentrator to physical interrface in a manner similar to debian pppoeconf
You can restore first route. Can work without src ip, hopefully takes one from pppoewan