Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

/ip firewall mangle

    add \
        comment="Mobile Legends Connection" \
        action=mark-connection \
        chain=forward \
        disabled=no \
        dst-address-list=nice \
        dst-port=30097-30147 \
        new-connection-mark=games-conn \
        passthrough=yes \
        protocol=tcp
    add \
        action=mark-connection \
        chain=forward \
        disabled=no \
        dst-address-list=nice \
        dst-port=40000-40010 \
        new-connection-mark=games-conn \
        passthrough=yes \
        protocol=udp
    add \
        comment="Free Fire Connection" \
        action=mark-connection \
        chain=forward \
        disabled=no \
        dst-address-list=nice \
        dst-port=10000-10007\
        new-connection-mark=games-conn \
        passthrough=yes \
        protocol=tcp
    add \
        action=mark-connection \
        chain=forward \
        disabled=no \
        dst-address-list=nice \
        dst-port=14009-14026 \
        new-connection-mark=games-conn \
        passthrough=yes \
        protocol=udp
    add \
        comment="PUBG Connection" \
        action=mark-connection \
        chain=forward \
        disabled=no \
        dst-address-list=nice \
        dst-port=20001,20000 \
        new-connection-mark=games-conn \
        passthrough=yes \
        protocol=tcp
    add \
        comment="Semua Koneksi (browsing, download, streaming)" \
        action=mark-connection \
        chain=forward \
        disabled=no \
        new-connection-mark=semua-conn \
        passthrough=yes \
        src-address=192.168.1.0/24
    add \
        action=mark-packet \
        chain=forward \
        connection-mark=games-conn \
        disabled=no \
        new-packet-mark=packet-games \
        passthrough=no
    add \
        action=mark-packet \
        chain=forward \
        connection-mark=semua-conn \
        disabled=no \
        new-packet-mark=semua-packet \
        passthrough=no

You might also like