Kann mir jemand hier weiterhlefen?### BEGIN INIT INFO
# Provides: port_redirect
# Required-Start: networking
# Required-Stop: networking
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: This is a port redirection script
# Description: This is a test daemon
# This provides example about how to
# write a Init script.
### END INIT INFO
#!/bin/sh
# Vollen Pfad von iptables
IPTABLES=/sbin/iptables
#Alle alten Regeln loeschen, anschliessend die Default-Policy setzen
$IPTABLES -F
$IPTABLES -F -t nat
echo 0 > /proc/sys/net/ipv4/ip_forward
# https Anfragen auf Port 443 von XX auf Port 8443 umleiten
$IPTABLES -t nat -A PREROUTING -d 10.26.XXX.XX -p tcp --dport 443 -j DNAT --to-destination :8443
# https Anfragen auf Port 443 von Website auf Port 8443 umleiten
$IPTABLES -t nat -A PREROUTING -d 10.26.XXX.XX -p tcp --dport 443 -j REDIRECT --to-port 8443
# http Anfragen auf Port 80 von Website auf Port 8180 umleiten
$IPTABLES -t nat -A PREROUTING -i eth0 -p tcp -d 10.26.XXX.XX --dport 80 -j REDIRECT --to-port 8180
# interne https Anfragen auf Port 443 von Website auf Port 8443 umleiten
$IPTABLES -t nat -A PREROUTING -i eth0 -p tcp -d 10.26.XXX.XX--dport 443 -j REDIRECT --to-port 8443
# http Anfragen auf Port 90 von JMF auf Port 8180 umleiten
$IPTABLES -t nat -A PREROUTING -i eth0 -p tcp -d 10.26.XXX.XX --dport 80 -j REDIRECT --to-port 8180
echo 1 > /proc/sys/net/ipv4/ip_forward
Danke