Community discussions

MikroTik App
 
UNiX
just joined
Topic Author
Posts: 1
Joined: Fri Apr 21, 2006 11:35 am

voIP priority, help plz

Fri Apr 21, 2006 11:39 am

How can i make priority for voIP on routerboard 500?
Thanx in advance
 
User avatar
fatonk
Member
Member
Posts: 438
Joined: Tue Feb 22, 2005 11:06 am
Location: Mitrovica/Kosova

Fri Apr 21, 2006 1:13 pm

You should mangle the viop traffic, depend on which protocol you will use, is it H323 or SIP etc etc.
Than create queue rules with highest prority, than other traffic.

Regards.
 
joeri91942
Frequent Visitor
Frequent Visitor
Posts: 88
Joined: Thu Mar 31, 2005 12:31 pm
Location: Sundsvall, Sweden

Fri Apr 21, 2006 1:37 pm

There's a topic discussing this at http://forum.mikrotik.com/viewtopic.php ... highlight=

Should give you some pointers on how to do it.... for more detailed help you need to tell us more about your setup. Like;
- who's talking to who?
- internal or external voip servers?
- etc


/Jörgen
 
hajid
Frequent Visitor
Frequent Visitor
Posts: 96
Joined: Wed Mar 30, 2005 10:04 am

voip qos for each segmen IP

Tue May 02, 2006 6:28 am

hi,
i have make several ip firewall mangle and queue tree for limit the bandwidth for each segmen IP of my client. then i want use voip qos to this segmen that i have made. any advice for it. i configured like this:

chain=prerouting src-address=124.81.64.80/30 action=mark-connection new-connection-mark=124.81.64.80/30-con
passthrough=yes

chain=prerouting connection-mark=124.81.64.80/30-con action=mark-packet new-packet-mark=124.81.64.80/30
passthrough=yes

;;; Voip Port
chain=prerouting protocol=tcp dst-port=5060-5061 action=mark-connection new-connection-mark=voip-con passthrough=yes

chain=prerouting protocol=tcp dst-port=1720-1721 action=mark-connection new-connection-mark=voip-con passthrough=yes

chain=prerouting protocol=tcp dst-port=2065 action=mark-connection new-connection-mark=voip-con passthrough=yes

chain=prerouting protocol=tcp dst-port=1024-65535 action=mark-connection new-connection-mark=voip-con passthrough=yes

chain=prerouting protocol=udp dst-port=1024-65535 action=mark-connection new-connection-mark=voip-con passthrough=yes

chain=prerouting protocol=tcp dst-port=443 action=mark-connection new-connection-mark=voip-con passthrough=yes


;;; voip 124.81.64.80/30
chain=prerouting packet-mark=124.81.64.80/30 connection-mark=voip-con action=mark-packet
new-packet-mark=voip-paket-124.81.64.80 passthrough=no

chain=prerouting packet-mark=124.81.64.80/30 action=mark-packet new-packet-mark=other-paket-124.81.64.80
passthrough=no


my queue tree :

name="Download" parent=Gateway packet-mark="" limit-at=0 queue=default priority=8 max-limit=0 burst-limit=0
burst-threshold=0 burst-time=0s

name="1.1. Corp. Lite (64 1:1)" parent=1. Client packet-mark="" limit-at=64000 queue=default priority=8
max-limit=64000 burst-limit=0 burst-threshold=0 burst-time=5s

name="1.1.1. -CPU Com" parent=1.1. -Corp. Lite (64 1:4) packet-mark=124.81.64.80/30 limit-at=0 queue=default
priority=8 max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s

name="other-voip-124.81.64.80" parent=global-total packet-mark=other-paket-124.81.64.80 limit-at=0 queue=default
priority=8 max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s

name="voip-124.81.64.80" parent=global-total packet-mark=voip-paket-124.81.64.80 limit-at=0 queue=default priority=1
max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s

please advice.
thanks