Hi there.
My gear: 2011UiAS-2HnD - 6.34.4
On my network I have one IP (192.168.1.251) that I’d like to exclude from FastTrack to do simple queues on that IP.
I enabled FastTrack with these two commands:
/ip firewall filter add chain=forward action=fasttrack-connection connection-state=established,related
/ip firewall filter add chain=forward action=accept connection-state=established,related
Is there a way to exclude that one IP?
Kind Regards
Bart
mrz
2
Add accept rule before fasttrack rule.
Thank you for your answer. I’m newbie, can you tell me in specific what to add before fasttrack rule? Accept…?
mrz
4
Accept rule with ip address that you do not want to be fasttracked.
Something like this:
/ip firewall filter add chain=forward src-address=1.2.3.4 dst-address=2.3.4.5 action=accept connection-state=established,related
/ip firewall filter add chain=forward action=fasttrack-connection connection-state=established,related
/ip firewall filter add chain=forward action=accept connection-state=established,related
Hmm, doesn’t work. Upload is still not limited to 1Mbit.
Your first and third rules are doing the same thing. Or am I wrong?
sash7
7
add chain=forward connection-state=established,related dst-address=192.168.1.251
add chain=forward src-address=192.168.1.251
add action=fasttrack-connection chain=forward connection-state=established,related
add chain=forward connection-state=established,related
This is awesome.
WORKS LIKE A CHARM. Very useful.
Thank you very much.