ya bisa juga seperti itu pisah queuenya dengan urutan
1. Queue DMZ to Internet -> Queue1 src-address=192.168.100.0/24
2. Queue Client to Internet -> Queue2 src-address=192.168.1.0/24
yang enaknya masing-masing connection di buatkan mangle nya:
Code:
# Add IP to List Our Networks
######################
/ip firewall address-list add list="our net" address=192.168.1.0/24
/ip firewall address-list add list="our net" address=192.168.100.0/24
# Rule for Mangle Internal Connection
##########################
/ip firewall mangle add src-address-list="our net" dst-address-list="our-net" action=mark-connection new-connection-mark="our conn" passthrough=yes
/ip firewall mangle add connection-mark="our conn" action=mark-packet new-packet-mark="our packet" passthrough=no
# Rule for DMZ Mangle
###################
/ip firewall mangle add in-interface=<DMZ> src-address=192.168.100.0/24 action=mark-connection new-connection-mark="dmz conn" passthrough=yes
/ip firewall mangle add connection-mark="dmz conn" action=mark-packet new-packet-mark="dmz packet" passthrough=no
# Rule for Client Mangle
###################
/ip firewall mangle add in-interface=<Client> src-address=192.168.100.0/24 action=mark-connection new-connection-mark="client conn" passthrough=yes
/ip firewall mangle add connection-mark="client conn" action=mark-packet new-packet-mark="client packet" passthrough=no
# Limiter Queue Simple (DMZ & Client)
######################
/queue simple add name="DMZ 1" packet-marks="dmz packet" target-address=192.168.100.xx
/queue simple add name="Client 1" packet-marks="client packet" target-address=192.168.1.xx
itu merupakan sebuah contoh script tuk kasus di atas...mungkin bisa coba di pelajari script di atas tuk referensi pemecahan masalah anda...
dan mohon maaf apabila terjadi kesalahan pengetikan di karenakan script di atas belum di test ke dalam Mikrotik...