I have two IP subnets on one MT interface. By default all clients on the two subnets can communicate with each other (???)
So, I tried to block them with a firewall rule:
[admin@pad001X] ip firewall rule forward> print
Flags: X - disabled, I - invalid, D - dynamic
0 src-address=192.168.60.103/32 dst-address=10.0.51.10/32 action=drop
log=yes
[admin@pad001X] ip firewall rule forward>
This works but I can only specify a host (/32) address using winbox otherwise I get "could not add rule - source address bad (6).
But in console:
[admin@pad001X] ip firewall rule forward> add src-address=192.168.60.0/24 dst-ad
dress=10.0.51.0/24 action=drop log=yes
[admin@pad001X] ip firewall rule forward> print
Flags: X - disabled, I - invalid, D - dynamic
0 src-address=192.168.60.103/32 dst-address=10.0.51.10/32 action=drop
log=yes
1 src-address=192.168.60.0/24 dst-address=10.0.51.0/24 action=drop log=yes
[admin@pad001X] ip firewall rule forward>
it works no problem. Is this a winbox bug?