I need to block only internet traffic in simple queue, but by default it’s limiting all the traffic.
I know that i need a mangle rule to mark the internet packages but its not working as expect.
I have two local networks:
Ether1 - 192.168.100.0/24 (Hotspot 1)
Ether2 - 192.168.200.0/24 (Hotspot 2)
So i put this two blocks in address list
add address=192.168.100.0/24 list=“Local”
add address=192.168.200.0/24 list=“Local”
So im trying to mark the internet packages using this rules:
add action=mark-packet chain=postrouting comment=
“================================== (Internet) Download” new-packet-mark=Internet passthrough=no
src-address-list=“! Local”
add action=mark-packet chain=postrouting comment=
“================================== (Internet) Upload” dst-address-list=“! Local”
new-packet-mark=Internet passthrough=no
The problem is that the traffic that are passing in my Simple QUEUE for each user is much bigger than the traffic for my hotspot user Statistics.
Till where i know, the hotspot user statistics only will sum the internet traffic, so this difference should be smaller isn’t it?