So here's a problem I am having. I have 2 cable modems one with a 5mbit limit and one with a 10mbit limit. I have setup PCC with mikrotik before but never with 2 dynamic ips on the same subnet.
Modem A:
72.24.169.111/23 with GW of 72.24.168.1
Modem B:
72.24.169.223/23 with GW of 72.24.168.1
LAN:
192.168.1.0/24
the problem isn't PCC it's routing since both modems have ips in the same subnet and share the same gateway. I have done this in the past with home made linux routers but I would like to figure out how to get this to work with Mikrotik. I need to be able to tell the router that if the connection is going out modem B not to pick the first route in the list and send it out modem A all the time.
in linux I create 2 routing tables
Table 1:
ip route add 72.24.168.0/23 dev eth0 proto kernel scope link src 72.24.169.111 table 1
ip route add 192.168.1.0/24 dev eth3 proto kernel scope link src 192.168.1.1 table1
ip route add default via 72.24.168.1 dev eth0 table 1
Table 2:
ip route add 72.24.168.0/23 dev eth1 proto kernel scope link src 72.24.169.223 table 2
ip route add 192.168.1.0/24 dev eth3 proto kernel scope link src 192.168.1.1 table 2
ip route add default via 72.24.168.1 dev eth1 table 2
Then I do ip rule:
ip rule add from 72.24.169.111 table 1 prio 100
ip rule add from 72.24.169.223 table 2 prio 200
ip rule add fwmark 1 table 1 prio 1000
ip rule add fwmark 2 table 2 prio 2000
Then in iptables I just mark on the mangle table where I want stuff to go and it sends it that direction but for some reason I can't figure out how to accomplish this with mikrotik. The key here is when you look at the 2 routing table you see what is spacific is each routing table has the same subnet but different interfaces.
I will be setting this router up for a LAN party in february and instead of hauling my big pc linux box I would like to take my routerboard 600 with instead.
I almost forgot. I don't want to load balance them but be able to take ip's/procols/servers and have the router send them out spacific interfaces for things like online games or file downloads. The idea is to be able to seperate traffic to keep things running smooth.