notes/IT/RouterOS port forwarding.md

21 lines
1.0 KiB
Markdown
Raw Normal View History

2024-05-19 16:36:26 +00:00
To port forward with RouterOS, you need allow the port through the firewall, *and* actually forward traffic
2024-05-19 16:37:26 +00:00
# Allow through the firewall
2024-05-19 16:40:26 +00:00
1. Navigate to IP > Firewall from the sidebar, then go to the Filter Rules tab from the top
2024-05-19 16:41:27 +00:00
2. Select `Add New` to create a new rule
2024-05-19 16:40:26 +00:00
3. Set `Dst. Address` to the internal IP you want to allow traffic to
4. Set `Protocol` to `6 (tcp)`
5. Set `Dst. Port` to the port you want to allow traffic through
6. Set `In. Interface List` to `all` (I'm sure this isn't the most correct option), but it works
7. Set `Action` to `accept`
8. (Optionally) add a comment explaining what you're doing
2024-05-19 16:37:26 +00:00
# Forward traffic
2024-05-19 16:41:27 +00:00
1. Navigate to IP > Firewall from the sidebar, then go to the NAT tab from the top
2. Select `Add New` to create a new rule
3. Set `Chain` to `dstnat`, set `Protocol` to `6 (tcp)`
4. Set `Dst. Port` to the port you want to forward
5. Set `In. Interface List` to `WAN`
6. Set `Action` to `dst-nat`
7. Set `To Addresses` to the internal IP you want the traffic to go to
8. (Optionally) add a comment explaining what you're doing
2024-05-19 16:36:26 +00:00