The default rules include an example for port forwarding to an individual machine, but what about adding an example to forward a certain port to the entire lan? I've searched high and low on how to accomplish this, but am not much of an expert with iptables.
What I'm after is a simple way to host a Sea3D game from either of two Windows PC's, but neither at the same time.
I would think it should look something like this, but it doesn't work as expected:
iptables -t nat -A prerouting_wan -p tcp --dport 7176 -j ACCEPT
iptables -A forwarding_wan -p tcp --dport 7176 -j ACCEPT
Is this even possible, or do I have to specify a server IP address?