I did a factory reset on my router and now can’t for the life of me figure out what it is I’m doing wrong here. I’m just trying to run one server so I’m hoping you guys will be able to point out what I’m doing wrong fairly easily. I’m not super well versed on this kind of thing.
It looks like you are using a internal ip range so you need to use dst-nat. Also be sure to have a rule for masquerading all out-going traffic. So by using your config it could be like:
chain=srcnat action=masquerade out-interface=replace with your external facing interface log=no log-prefix=“”
chain=dstnat action=dst-nat to-addresses=192.168.88.20 protocol=udp in-interface=replace with your external facing interface dst-port=27016 to-ports=27016 comment=“Ark”
…
I have a quick question since I’m pretty new to this stuff. What would my external facing interface be exactly? I’m operating over ethernet exclusively, but why is ether-2 listed as ‘master’? Am I misunderstanding the interface option? It looks like I can’t make a rule for the ‘master’. Anyway, can I use ‘all-ethernet’ as a wildcard? Thanks again, Matt
Edit: Also, should I be using an internal ip range? And I thought I was using dst-nat. Am I wrong?