Router access

Hi,

I want to access my router only from a specific pool of IP addresses rest all IP addresses should not be allowed. How i have to configure in firewall.

Thanks,
Srinivas

If these are the only rules, this should do:

/ip firewall filter
add chain=input action=accept src-address=xx.xx.xx.xx/xx
add chain=input action=drop

But you should look in the User Manual for examples of better protecting your router. Look under firewall filter.
You can add more accept rules for more subnets, but all must be before the action=drop rule.