Ich habe das Problem alle Anfrage auf das Port 80 eines Rechner an einen anderen Rechner und auf ein anderes Port umzuleiten. Nun ist meine Frage welche Lösung sinnvoll ist.
eagle
Port Forwarding
Port Forwarding
"I love deadlines. I love the whooshing sound they make as they fly by." -- Douglas Adams
So danke nochmal. Allerdings darf man nicht die POSTROUTING Zeile vergessen . Das ganze sieht jetzt etwa so aus:
eagle
Code: Alles auswählen
# Einschalten von ip-forwarding
echo "1" >/proc/sys/net/ipv4/ip_forward
# Weiterleitung Port 80 -> amessage.de:5223
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to 213.239.194.21:5223
# Einschalten von Masquerade
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
"I love deadlines. I love the whooshing sound they make as they fly by." -- Douglas Adams
Code: Alles auswählen
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 2000:3000 -j DNAT --to 192.168.0.8