Been crawling the net quite a bit but it is all chinese to me tbh.
Could someone maybe help a Linux n00b

I need a way to have a server which acts as router and does simple 1-to-1 NAT without firewalling.
For example the Linux server got IP 172.0.0.1/24 on the LAN side and got multiple public IPs configured which should then be nat'ed to IPs on the LAN side, forwarding every port for now.
So for example
Linux / Router
Public
85.85.85.1
85.85.85.2
85.85.85.3
Private
172.0.0.1
NAT rules configured
85.85.85.1 > 172.0.0.10
85.85.85.2 > 172.0.0.20
85.85.85.3 > 172.0.0.30
Client #1
172.0.0.10 using 172.0.0.1 as gateway
Client #2
172.0.0.20 using 172.0.0.1 as gateway
Client #3
172.0.0.30 using 172.0.0.1 as gateway
Does this make sense ?
If firewalling is a sideffect then so be it, but I never played with iptables (apart from chkconfig iptables off / rpm -e iptables

) so would appreciate an example