diff options
author | Arianit Kukaj <arianit@hax.al> | 2025-05-26 20:43:31 +0000 |
---|---|---|
committer | Arianit Kukaj <arianit@hax.al> | 2025-05-26 20:43:31 +0000 |
commit | 2041ea36be5e346e923f7aadcbf48375ea70e725 (patch) | |
tree | 307093cdd2471a97f99b111663cc851b159069f3 /Mikrotik dst nat port forward.md | |
download | Mikrotik Bulk-2041ea36be5e346e923f7aadcbf48375ea70e725.tar.gz Mikrotik Bulk-2041ea36be5e346e923f7aadcbf48375ea70e725.zip |
.
Diffstat (limited to 'Mikrotik dst nat port forward.md')
-rw-r--r-- | Mikrotik dst nat port forward.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Mikrotik dst nat port forward.md b/Mikrotik dst nat port forward.md new file mode 100644 index 0000000..8accd22 --- /dev/null +++ b/Mikrotik dst nat port forward.md @@ -0,0 +1,11 @@ +/ip firewall nat +add action=dst-nat chain=dstnat comment="HikVison Http" dst-address=\ + 185.188.217.42 dst-port=80 protocol=tcp to-addresses=10.10.0.34 to-ports=\ + 80 +add action=dst-nat chain=dstnat comment="HikVison APP" dst-address=\ + 185.188.217.42 dst-port=8000 protocol=tcp to-addresses=10.10.0.34 \ + to-ports=8000 +add action=dst-nat chain=dstnat comment=hikvison443 dst-address=\ + 185.188.217.42 dst-port=443 protocol=tcp to-addresses=10.10.0.34 \ + to-ports=443 + |