Hello friends
I try to Balance two PPTP clients that provide each 10Mbs .
WAN is same , with the same gateway .
My router connected to the internet with this configuration :
[admin@MikroTik] /ip address> print
# ADDRESS NETWORK INTERFACE
0 192.168.0.10/24 192.168.0.0 ether1 (WAN Network)
1 10.10.10.1/24 10.10.10.0 ether2 (LAN Network)
[admin@MikroTik] /ip route> print
# DST-ADDRESS GATEWAY DISTANCE
0 A S 0.0.0.0/0 192.168.0.1 1
I try to editing the PCC Example at : http://wiki.mikrotik.com/wiki/Manual:PCC , but don’t work .
Anyone can replace the PCC Example with the PPTP Clients ?
PCC Example :
/ ip address
add address=192.168.0.1/24 network=192.168.0.0 broadcast=192.168.0.255 interface=LAN
add address=10.111.0.2/24 network=10.111.0.0 broadcast=10.111.0.255 interface=ISP1
add address=10.112.0.2/24 network=10.112.0.0 broadcast=10.112.0.255 interface=ISP2
/ ip firewall mangle
add chain=prerouting dst-address=10.111.0.0/24 action=accept in-interface=LAN
add chain=prerouting dst-address=10.112.0.0/24 action=accept in-interface=LAN
add chain=prerouting in-interface=ISP1 connection-mark=no-mark action=mark-connection \
new-connection-mark=ISP1_conn
add chain=prerouting in-interface=ISP2 connection-mark=no-mark action=mark-connection \
new-connection-mark=ISP2_conn
add chain=prerouting in-interface=LAN connection-mark=no-mark dst-address-type=!local \
per-connection-classifier=both-addresses:2/0 action=mark-connection new-connection-mark=ISP1_conn
add chain=prerouting in-interface=LAN connection-mark=no-mark dst-address-type=!local \
per-connection-classifier=both-addresses:2/1 action=mark-connection new-connection-mark=ISP2_conn
add chain=prerouting connection-mark=ISP1_conn in-interface=LAN action=mark-routing \
new-routing-mark=to_ISP1
add chain=prerouting connection-mark=ISP2_conn in-interface=LAN action=mark-routing \
new-routing-mark=to_ISP2
add chain=output connection-mark=ISP1_conn action=mark-routing new-routing-mark=to_ISP1
add chain=output connection-mark=ISP2_conn action=mark-routing new-routing-mark=to_ISP2
/ ip route
add dst-address=0.0.0.0/0 gateway=10.111.0.1 routing-mark=to_ISP1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.112.0.1 routing-mark=to_ISP2 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.111.0.1 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=10.112.0.1 distance=2 check-gateway=ping
/ ip firewall nat
add chain=srcnat out-interface=ISP1 action=masquerade
add chain=srcnat out-interface=ISP2 action=masquerade
EDIT :
What I Have : My WAN have 50Mbps internet speed .
What I Want : I want to make two connection to a PPTP Server .
Why ? : because That PPTP server just provide 10Mbps per client .
for : to have a 20 Mbps connection to that PPTP server .
P.S : I don’t access to that PPTP-Server and I’m connecting to that server as customer .