my scenary:
have a little Wisp, with normal user (home user, one PC), and SOHO, cyber or office with 10 or more PC
now, if apply this rule
/ip firewall filter add action=drop connection-limit=5,32 protocol=tcp tcp-flags=syn, chain=forward
this rule limits to 6 conections for each user
i will have problem for my SOHO customer, but work for home user.
now i have two segment the normal user segment is 192.168.150.x/24,
and for SOHO is 192.168.200.x/24
if apply this rule
add chain=forward src-address=192.168.150.0/24 protocol=tcp tcp-flags=syn \
connection-limit=5,32 action=drop comment="limit one pc \
internet for home" disabled=no
work??? my question is because i put in src-address the /24, and connection-limit the mask is 32 bits ????
or the correct rule is
add chain=forward src-address=192.168.150.0 protocol=tcp tcp-flags=syn \
connection-limit=5,24 action=drop comment="limit one pc \
internet for home" disabled=no
look i change in src-address put only the segment no put /24, and in connection-limit put the mask 24 bits
i want control the normal user, i want the normal user no can share the internet, but the SOHO customer, can share the internet
Best Regards
Daniel White