Привет, я настроил несколько правил межсетевого экрана IP (mangle) и деревья очередей для ограничения пропускной способности для каждого сегмента IP моего клиента. Затем я хочу применить QoS для VoIP к этим сегментам. Есть какие-нибудь советы? Я настроил это так:
Цепочка=prerouting, src-address=124.81.64.80/30, действие=mark-connection, new-connection-mark=124.81.64.80/30-con, passthrough=yes
Цепочка=prerouting, connection-mark=124.81.64.80/30-con, действие=mark-packet, new-packet-mark=124.81.64.80/30, passthrough=yes
;;;
Voip Port
Цепочка=prerouting, protocol=tcp, dst-port=5060-5061, действие=mark-connection, new-connection-mark=voip-con, passthrough=yes
Цепочка=prerouting, protocol=tcp, dst-port=1720-1721, действие=mark-connection, new-connection-mark=voip-con, passthrough=yes
Цепочка=prerouting, protocol=tcp, dst-port=2065, действие=mark-connection, new-connection-mark=voip-con, passthrough=yes
Цепочка=prerouting, protocol=tcp, dst-port=1024-65535, действие=mark-connection, new-connection-mark=voip-con, passthrough=yes
Цепочка=prerouting, protocol=udp, dst-port=1024-65535, действие=mark-connection, new-connection-mark=voip-con, passthrough=yes
Цепочка=prerouting, protocol=tcp, dst-port=443, действие=mark-connection, new-connection-mark=voip-con, passthrough=yes
;;;
voip 124.81.64.80/30
Цепочка=prerouting, packet-mark=124.81.64.80/30, connection-mark=voip-con, действие=mark-packet, new-packet-mark=voip-paket-124.81.64.80, passthrough=no
Цепочка=prerouting, packet-mark=124.81.64.80/30, действие=mark-packet, new-packet-mark=other-paket-124.81.64.80, passthrough=no
Моя деревья очередей:
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
Пожалуйста, посоветуйте. Спасибо.