How to formulate IP forwarding rule using iptables

listed in answer

How to formulate IP forwarding rule using iptables
0 votes, 0.00 avg. rating (0% score)

ANSWER:

Here is a total non-answer answer.
as Jens Bradler said in his comment, the simplest thing to do here is to bind the service to the public IP address on port 8000, rather than NAT the connection. You can secure access to the single Server A by iptables rules like so;

 -A INPUT -s 192.168.0.5/32 -p tcp -m tcp --dport 8000 -j ACCEPT
 -A INPUT -p tcp -m tcp --dport 8000 -j REJECT

by Tom H from http://serverfault.com/questions/383348