[Solved] Firewall Rules For Specific MAC

Basically I'm wanting to prevent a specific MAC address from accessing port range 444-65535.

So been trying to learn how firewall rules work, but it's heavy going for average joe... How's this look?

config rule
option src 'lan'
option dest 'wan'
option proto 'tcp udp'
option src_mac '4C:EB:42:32:0C:9E'
option dest_port '444 65535'
option target 'REJECT'
option enabled '1'

Is that gonna work??

Yes it is correct.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.