router configuration help

have 6 dsl modems at our business due to they only offer 6mbs.

Got a 8 port mikrotik

port 1 is lan
port 2 is 192.168.1.254 gateway ip is dhcp
port 3 is 192.168.2.254 gateway ip is dhcp
port 4 is 192.168.3.254 gateway ip is dhcp
port 5 is 192.168.4.254 gateway ip is dhcp
port 6 is 192.168.5.254 gateway ip is dhcp
port 7 is 192.168.6.254 gateway ip is dhcp
not in use

Need to cap bandwidth at 2 mbs down .200 mbs up youtube video will help me on that.

Mail issue is this

I set the lan to static 192.168.70.0/24

and they can get online with a default route however due to people like to sit in a row and all watch videos ect capping people at 2 mbs will start to lag ect after the 4th person does this out of 42 computers.

So what i’m trying to do is this


ip
192.168.70.2 goes out modem 192.168.1.254
192.168.70.3 goes out modem 192.168.2.254
192.168.70.4 goes out modem 192.168.3.254
192.168.70.5 goes out modem 192.168.4.254
192.168.70.6 goes out modem 192.168.5.254
192.168.70.7 goes out modem 192.168.1.254
192.168.70.8 goes out modem 192.168.2.254
192.168.70.9 goes out modem 192.168.3.254
192.168.70.10 goes out modem 192.168.4.254
192.168.70.11 goes out modem 192.168.5.254

so i’m doing that to 5 modems the 6 modem goes up to my apartment as i’m a cable cutter.

So does anyone know how to make statics go out like that?

just need the line code for

192.168.70.2 goes out modem 192.168.1.254
192.168.70.3 goes out modem 192.168.2.254

and I can figure the rest out by seeing what you have. Thanks!

bump

Hi dpgeiger,
you need to use mangling http://wiki.mikrotik.com/wiki/Manual:IP/Firewall/Mangle, basically you need to:
#1: Match each source IP and mark each connection
#2: Match the connection-mark and apply a routing-mark
#3: Create a default static route matching each routing-mark

In this way you will have a separate routing table for each routing-mark and each connection is marked therefore you can do also shaping.

HTH