Hi
i am a wisp, i have realized a wireless net to give internet access to my customers.
A customer asked me to connect a surveillance apparatus in this net.
So, how can i open ports etc. in the Mikrotik routeros to grant access to this apparatus ?
There are may answers to that question depending on how your network is build. Look at dst-nat in the firewall section of the manual. Masically what you will do is make a firewall nat rule that redirects a port on the external interface of the router to the corresponding port the camera or other device. Tis is well explained in the manual under Firewall-NAT and then dst-nat.
Thank you
in the winbox this is my nat rule: chain=dstnat; protocol=tcp; dstport=portofthedevice ininterface=ether1 (my wan port on the pc with mikrotik); action=dst-nat; to address=ipofthedevice; toports=portofthedevice
is it good?