Hey,
so I have multiple PPPOE interfaces, 4 to be exact, and I want to connect 4 different PPTP clients, to the same PPTP Server, and I want each PPTP client to connect over one of the PPPOE interfaces.
how can I do that?
/ip route add dst-address=1.1.1.1/32 gateway=IPofTheOtherSideofThePPoEYouWantTosUse
/interface pptp-client add connect-to=1.1.1.1
/ip route add dst-address=2.2.2.2/32 gateway=IPofTheOtherSideofThePPoEYouWantTosUse
/interface pptp-client add connect-to=2.2.2.2
That would work fine if i had each PPTP client connect to PPTP servers with different IPs,I'd just add a /32 route for each IP used in "connect-to" portion of the PPTP client interface.
#1#2Code: Select all/ip route add dst-address=1.1.1.1/32 gateway=IPofTheOtherSideofThePPoEYouWantTosUse /interface pptp-client add connect-to=1.1.1.1
etc ...Code: Select all/ip route add dst-address=2.2.2.2/32 gateway=IPofTheOtherSideofThePPoEYouWantTosUse /interface pptp-client add connect-to=2.2.2.2