I have mikrotik with 2 pppoe’s running ADSL accts.
pppoe-elec, dynamic ip, gateway always 165.145.0.1
pppoe-mac, dynamic ip, gateway always 196.200.0.1
I need to make IPs 192.168.1.1-20 use the pppoe-elec
and
IPs 192.168.1.21-35 use the pppoe-mac.
Profile: Default
[ ] Dial on Demand
[ ] Add Default Route
Use Peer DNS
Allow:
pap
none of others
What I've done is this in Mangle:
0 ;;; Mark All CVW Traffic for Routing
chain=prerouting src-address=192.168.1.2 action=mark-routing
new-routing-mark=Routing-CVW passthrough=yes
1 ;;; Mark All E Traffic for Routing
chain=prerouting src-address=192.168.1.111 action=mark-routing
new-routing-mark=Routing-E passthrough=yes
4 A S ;;; All E PCs use Uncapped as default
0.0.0.0/0 r 196.209.0.1 pppoe-local
5 A S ;;; All other IPs use CVW as default
0.0.0.0/0 r 165.145.0.1 pppoe-cvw
When I for instance try and browse it just sits there "connecting to site" In the past it said unreachable. Now it just seems like I'm not getting any data back.
I have masquarade on. If i for instance disable those routes and tik Add Default Route on 1 PPPOE internet access works.