Hello, our company is developing a big wisp, and one of the products will be the voip for long distance, we have plan to used rb333 with xr2 cards and main ap, i wonder if anybody used voip with mikrotik.
thanks
it could use some work, but it's a nice start... if you use this, and make changes (that improve it) please post them back hereAny of you have tried setting VoIP Priority ? I have some set up but i'm not sure is working fine since i see no packets queued in my queue tree...
Any help would be greatly appreciated...
VoIP Priority such as for Vonage...
/ ip firewall address-list
add list="VoIP Servers" address=69.59.224.0/19 comment="Vonage" disabled=no
/ ip firewall mangle
add chain=forward action=jump jump-target=VoIPChain protocol=udp \
src-address-list="VoIP Servers" comment="VoIP Chain" disabled=no
add chain=VoIPChain action=add-dst-to-address-list dst-address-list="!VoIP \
Servers" address-list="Active VoIP Clients" address-list-timeout=5m \
comment="" disabled=no
add chain=forward action=jump jump-target=VoIPChain dst-port=10000-20000 \
protocol=udp dst-address-list="VoIP Servers" comment="VoIP Chain" \
disabled=no
add chain=forward action=jump jump-target=VoIPChain dst-port=10000-20000 \
protocol=tcp dst-address-list="VoIP Servers" comment="VoIP Chain" \
disabled=no
add chain=forward action=jump jump-target=VoIPChain dst-port=5060 protocol=udp \
comment="VoIP Chain" disabled=no
add chain=VoIPChain action=mark-packet new-packet-mark=VoIP passthrough=yes \
comment="" disabled=no
add chain=VoIPChain action=mark-packet new-packet-mark=VoIP passthrough=yes \
connection-state=related comment="" disabled=no
add chain=VoIPChain action=change-tos new-tos=min-delay comment="VoIP TCP TOS" \
disabled=no
add chain=VoIPChain action=accept comment="" disabled=no
sure, but he only asked how to change the priority...changing tos to min-delay is good and all, but don't you have to have some queueing setup that actually affects the traffic ?
I gave him the packet mark as well as the changing the tos. I assume that he can create a queue to his liking from here...Any of you have tried setting VoIP Priority ?