ip firewall filter add chain=forward p2p=all-p2p action=drop
and is it possible to give certian users access to p2p?
please advise
regards
zain
thanks in advance

ip firewall filter
add chain=forward src-address=192.168.1.100 action=accept
add chain=forward dst-address=192.168.1.100 action=accept
add chain=forward p2p=all-p2p action=drop
/ip firewall filter
add chain=forward action=accept src-address=192.168.88.5
add chain=forward action=accept dst-address=192.168.88.5
add chain=forward action=drop p2p=all-p2p
Replace 192.168.88.5 with the IP address of the device you want to be able to pass p2p traffic.Scenario: you want to block all P2P except for traffic from a computer that has 192.168.88.5 as its IP address.
I don't know how to explain this any more clearly.Code: Select all/ip firewall filter add chain=forward action=accept src-address=192.168.88.5 add chain=forward action=accept dst-address=192.168.88.5 add chain=forward action=drop p2p=all-p2p