-
iptables port redirect
morgen,
wie kann ich mit iptables den ausgehenden traffic von port 80 auf eine andere ip umleiten?
ich hab bisher das ausprobiert, nur passiert dann einfach garnichts:
iptables -t nat -A PREROUTING -p udp --dport 80 -j DNAT --to 192.168.0.106:80
das hier funktioniert zwar, aber beinhaltet alle ports, nicht nur 80:
iptables -t nat -A PREROUTING -p udp -j DNAT --to 192.168.0.106
-
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A PREROUTING -p udp --dport 80 -j DNAT --to 192.168.0.106:80