>
> How can I do this for local network?
Just by putting that in. The firewall matches each packet, the more specific you get the less it will match, the more general you make it the more it will match. If you only wanted to masquerade for only one subnet you make a rule like this:
```text
/ip firewall nat add chain=srcnat action=masquerade src-address=192.168.1.0/24 out-interface=ether1
You can also get more specific and add in an in-interface, or any other options you want. Just be careful to not get too specific otherwise you can wind up not masquerading traffic that you want. The same goes for every other firewall rule as well, you can also be too general and catch things you don’t want.
I would just upgrade that router to the newer version but i’m really curious as to why it’s not working. If this version of the OS needs different criteria or something. So before I upgrade I want to figure out if older version need different syntax. Any one else experienced this before?