Do you think creating rules for the LAN interface is a sensible thing to do ? Or is it just too much for a home setup ?
Doesn't leaving the Anti lockout rule intact rules out the chances of locking my self out ?
True, the anti-lockout rule specifically just allows access to ports 80,443,22 on LAN address. So having that always at the top will get you in from LAN.
So you could put a block rule on LAN straight after that:
block source any, protocol any, destination "WAN address"
or even:
pass source any, protocol any, destination "LAN address", ports DNS...
block source any, protocol any, destination "this firewall"
"this firewall" gets turned into a list of all firewall interfaces. So that would cover WAN, LAN (and you get in there first by the anti-lockout rule and give users access to DNS… by a rule before it) and any future WAN2, OPT1 etc that might exist now or be added.
For the webUI (80,443) and ssh (22) you do not really gain anything because it does not really matter if someone starts from LAN and goes to LAN address or WAN address to access - they are connecting to the same service.
But it does protect against them accessing any other services on any interface that might be enabled/listening.
Whether it is overkill for a home setup is a matter of if you like tinkering around.