Simple QOS to give low priority to port 563

I have a 4 meg down 512k upload and want to give port 563 full access to download when nothing else is using the internet. If the internet is being used port 563 must get the lowest priority.

I have googled and looked through the forums but everything I have tried does not seem to work on router os 6.

Hope someone can help!

Thanks

Create a firewall rule to mark your “port 563” traffic
Then create a two queues (“563” and “other”) and set the “563” as lowest priority.

More detailed explanations here
http://wiki.mikrotik.com/wiki/TransparentTrafficShaper

Thanks for the advice. I have made some rules and marked packets coming from a particular machine in 192.168.2.52 to a particular Public IP.

The packets get marked and fed into queues but the traffic just seems to be shared equally. Not the desired result of the 192.168.2.52 machine dropping right off to allow other traffic.

Please have a look at my export to see where I am going wrong

Thanks!

# apr/28/2014 11:34:21 by RouterOS 6.12
# software id = JMB0-NPVK
#
/interface wireless
set [ find default-name=wlan1 ] l2mtu=2290 mode=ap-bridge ssid=macweb \
    wireless-protocol=802.11
/interface ethernet
set [ find default-name=ether3 ] master-port=ether2
set [ find default-name=ether4 ] master-port=ether2
set [ find default-name=ether5 ] name="ether5 Macweb"
/ip neighbor discovery
set ether1 discover=no
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa2-psk mode=dynamic-keys
/ip hotspot user profile
set [ find default=yes ] idle-timeout=none keepalive-timeout=2m \
    mac-cookie-timeout=3d
/ip pool
add name=dhcp ranges=192.168.2.100-192.168.2.254
/ip dhcp-server
add address-pool=dhcp disabled=no interface=ether2 name=dhcp1
add address-pool=dhcp disabled=no name=dhcp2
/interface pppoe-client
add ac-name="" add-default-route=yes allow=pap,chap,mschap1,mschap2 \
    default-route-distance=1 dial-on-demand=no disabled=no interface=ether1 \
    keepalive-timeout=60 max-mru=1480 max-mtu=1480 mrru=disabled name=\
    pppoe-out1 profile=default service-name="" use-peer-dns=yes user=\
    ******@******
/queue simple
add max-limit=512k/4M name="Main Queue for 192.168.2.0 Subnet" target=\
    192.168.2.0/24
add max-limit=512k/4M name="News Downloads" packet-marks="News Downloads" \
    parent="Main Queue for 192.168.2.0 Subnet" target=192.168.2.52/32
add max-limit=512k/4M name="Other Traffic" packet-marks="Other Traffic" \
    parent="Main Queue for 192.168.2.0 Subnet" target=""
/ip address
add address=192.168.2.1/24 interface=ether2 network=192.168.2.0
add address=192.168.1.21/24 interface="ether5 Macweb" network=192.168.1.0
/ip dhcp-server network
add address=192.168.2.0/24 gateway=192.168.2.1 netmask=24
/ip dns
set servers=192.168.2.1,8.8.8.8
/ip firewall filter
add chain=input protocol=icmp
add chain=input connection-state=established
add chain=input connection-state=related
add action=drop chain=input in-interface=ether1
/ip firewall mangle
add action=mark-connection chain=prerouting dst-address=85.12.8.42 \
    new-connection-mark="Unraid to Nextgennews" protocol=tcp src-address=\
    192.168.2.52
add action=mark-packet chain=prerouting connection-mark=\
    "Unraid to Nextgennews" new-packet-mark="News Downloads" passthrough=no
add action=mark-connection chain=prerouting new-connection-mark=Other
add action=mark-packet chain=prerouting connection-mark=Other \
    new-packet-mark="Other Traffic" passthrough=no
/ip firewall nat
add action=masquerade chain=srcnat out-interface=pppoe-out1 to-addresses=\
    0.0.0.0
/ip upnp
set allow-disable-external-interface=no enabled=yes
/ip upnp interfaces
add interface=ether2 type=internal
add interface=pppoe-out1 type=external
/system clock
set time-zone-name=Africa/Johannesburg
/system leds
set 0 interface=wlan1
/system ntp client
set enabled=yes mode=unicast primary-ntp=205.196.146.72 secondary-ntp=\
    108.61.73.243
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=ether2
add interface=ether3
add interface=ether4
add interface="ether5 Macweb"
add interface=wlan1
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether2
add interface=ether3
add interface=ether4
add interface="ether5 Macweb"
add interface=wlan1