Obviously I deleted original post to not have duplicates Thank you for your help
Hi, I will install in a few days a new rb2011 as a home router, and I looked into its setup.
Most stuff should be already ok in the default settings, but I've read default setup doesn't have rules on the forward chain, so I've looked a bit into firewalling
I'd like to have a simple firewall (the less I write, the less I write wrong stuff) and found one here on the forums, and I modified it a bit.
Since the rules were duplicated I jumped from input and forward to one chain only (am I wrong doing this?), I removed icmp from WAN, and I set bridge-local as interface name.
Specifying in-interface, I don't need to write LAN ip addresses, correct?
ros code
#Router and internal network protection, no internal servers, LAN is friendly #http://forum.mikrotik.com/viewtopic.php?f=13&t=76314 #modified jumping to mainrules chain, not allowing icmp, bridge-local as in-interface /ip firewall filter add chain=input action=jump jump-target=mainrules add chain=forward action=jump jump-target=mainrules add chain=mainrules action=drop connection-state=invalid comment="Block invalid connections" add chain=mainrules action=accept connection-state=new in-interface=bridge-local comment="Allow access to router and Internet only from LAN" add chain=mainrules action=accept connection-state=established comment="Allow established connections" add chain=mainrules action=accept connection-state=related comment="Allow related connections" add chain=mainrules action=drop comment="drop everything else"Then, I'll have some ip cams...
May I just use, separately from the above firewall, something like the basic example of the wiki, obviously changing ip and ports?
ros code
/ip firewall nat add chain=dstnat dst-port=1234 action=dst-nat protocol=tcp to-address=192.168.1.1 to-port=1234Then, I'll have to setup many other things, but that will be a separate post