Community discussions

MikroTik App
 
woody
newbie
Topic Author
Posts: 33
Joined: Thu Oct 27, 2005 11:36 am

Problem with equal sharing bandwidth (Please Guys Help me)))

Wed Nov 09, 2005 1:44 pm

Hello all

iam try to use MikroTik for equal bandwidth for users and iam test it with 1024k first and then with 32k but not different happend when i donwload files and software . ((same fast.))

is there any probelm or what plzzzzzzzzzz

i think my limit download must become 32k right or iam wrong ????????????????
Last edited by woody on Thu Nov 10, 2005 9:03 am, edited 1 time in total.
 
User avatar
Roman
Frequent Visitor
Frequent Visitor
Posts: 81
Joined: Wed Oct 06, 2004 11:24 am

Wed Nov 09, 2005 2:25 pm

can you post that rule you are trying to use?
 
woody
newbie
Topic Author
Posts: 33
Joined: Thu Oct 27, 2005 11:36 am

Thu Nov 10, 2005 8:41 am

iam sorry for delay , Config. from manual:

Equal bandwidth sharing among users
This example shows how to equally share 10Mibps download and 2Mibps upload among active users in the network 192.168.0.0/24. If Host A is downloading 2 Mibps, Host B gets 8 Mibps and vice versa. There might be situations when both hosts want to use maximum bandwidth (10 Mibps), then they will receive 5 Mibps each, the same goes for upload. This setup is also valid for more than 2 users.

Image


At first, mark all traffic, coming from local network 192.168.0.0/24 with a mark users:

/ip firewall mangle add chain=forward src-address=192.168.0.0/24 \
action=mark-connection new-connection-mark=users-con
/ip firewall mangle add connection-mark=users-con action=mark-packet \
new-packet-mark=users chain=forward


Now we will add 2 new PCQ types. The first, called pcq-download will group all traffic by destination address. As we will attach this queue type to the Local interface, it will create a dynamic queue for each destination address (user) which is downloading to the network 192.168.0.0/24. The second type, called pcq-upload will group the traffic by source address. We will attach this queue to the Public interface so it will make one dynamic queue for each user who is uploading to Internet from the local network 192.168.0.0/24.

/queue type add name=pcq-download kind=pcq pcq-classifier=dst-address
/queue type add name=pcq-upload kind=pcq pcq-classifier=src-address


Finally, make a queue tree for download traffic:

/queue tree add name=Download parent=Local max-limit=10240000
/queue tree add parent=Download queue=pcq-download packet-mark=users

And for upload traffic:

/queue tree add name=Upload parent=Public max-limit=2048000
/queue tree add parent=Upload queue=pcq-upload packet-mark=users

Note! If your ISP cannot guarantee you a fixed amount of traffic, you can use just one queue for upload and one for download, attached directly to the interface:

/queue tree add parent=Local queue=pcq-download packet-mark=users
/queue tree add parent=Public queue=pcq-upload packet-mark=users
 
woody
newbie
Topic Author
Posts: 33
Joined: Thu Oct 27, 2005 11:36 am

Thu Nov 10, 2005 9:02 am

Help me Plz guys
 
woody
newbie
Topic Author
Posts: 33
Joined: Thu Oct 27, 2005 11:36 am

Thu Nov 10, 2005 6:11 pm

plzzzzzz helpppppp
 
cabana
Frequent Visitor
Frequent Visitor
Posts: 71
Joined: Fri Feb 18, 2005 9:18 pm

Thu Nov 10, 2005 7:46 pm

Why dont you post your configuration, not the one from the manual
 
woody
newbie
Topic Author
Posts: 33
Joined: Thu Oct 27, 2005 11:36 am

Fri Nov 11, 2005 6:00 pm

iam use the one from the manual
 
cabana
Frequent Visitor
Frequent Visitor
Posts: 71
Joined: Fri Feb 18, 2005 9:18 pm

Fri Nov 11, 2005 9:23 pm

I realise that, however, you may have made a typo when inputting it and not noticed, so if you post the config from your router someone may see the mistake.
 
woody
newbie
Topic Author
Posts: 33
Joined: Thu Oct 27, 2005 11:36 am

Sat Nov 12, 2005 2:22 pm

PLZ SOMEONE HELP ME'

ANYONE HAVE GOOOD CONFIG FOR BANDWIDTH SHARING PLZ
 
driton
Frequent Visitor
Frequent Visitor
Posts: 52
Joined: Wed Mar 30, 2005 4:12 pm

hlp

Sat Nov 12, 2005 7:08 pm

Why don`t you try to learn something at least !