Community discussions

MikroTik App

Search found 4 matches

by talormanda
Thu May 28, 2020 6:35 pm
Forum: Beginner Basics
Topic: Fasttrack with Simple Queue
Replies: 1
Views: 2122

Fasttrack with Simple Queue

I am trying to do Simple Queue for a few IP addresses, but I want to leave Fasttrack enabled for everything else. I figured building an Address List and excluding it in the default-config Fasttrack rule would make Fasttrack not apply to those addresses, but it is not working. What am I doing wrong? ...
by talormanda
Tue Jan 14, 2020 5:53 pm
Forum: Beginner Basics
Topic: Access internal web server with internet IP from the same LAN
Replies: 4
Views: 3879

Re: Access internal web server with internet IP from the same LAN

action=masquerade is the same as action=src-nat, but will automatically src-nat with the IP of the interface, so no to-addresses required. add action=masquerade chain=srcnat comment="Hairpin NAT to for motioneye" dst-address=192.168.1.9 src-address=192.168.1.0/24 out-interface=YourLanBrid...
by talormanda
Tue Jan 14, 2020 3:29 pm
Forum: Beginner Basics
Topic: Access internal web server with internet IP from the same LAN
Replies: 4
Views: 3879

Re: Access internal web server with internet IP from the same LAN

Yes. Have a look at https://wiki.mikrotik.com/wiki/Hairpin_NAT for the packet-by-packet explanation. In summary, what happens is the internal device receives an answer from the internal, dst-natted IP when it expects the source IP it to come from the public IP it requested; hairpin nat does an addi...
by talormanda
Mon Jan 13, 2020 9:37 pm
Forum: Beginner Basics
Topic: Access internal web server with internet IP from the same LAN
Replies: 4
Views: 3879

Access internal web server with internet IP from the same LAN

Before switching to MT, I was able to port forward a web server, and access it via my public IP: http:mywebsite.com:40399 After I switched to MT, I went to IP > Firewall > NAT , and set up the below, which let's me access the web server from outside my network: add action=dst-nat chain=dstnat commen...