Created
August 21, 2023 07:19
-
-
Save shaposhnikoff/3f67bf7ca3c40ee4e4afe90e5b94e367 to your computer and use it in GitHub Desktop.
Mikrotik Hairpin NAT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/ip firewall nat | |
add chain=dstnat dst-address-type=local protocol=tcp dst-port=443 action=dst-nat to-address=10.0.0.5 to-port=443 | |
add chain=srcnat src-address=10.0.0.0/24 dst-address=10.0.0.5 protocol=tcp dst-port=443 out-interface=LAN action=masquerade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment