Sto provando a configurare iptables sul mio server Ubuntu 12.04 LTS per inoltrare la porta 443 a 8443.
Ma quando eseguo questo comando:
sudo iptables -A PREROUTING -p tcp --dport 443 -j REDIRECT --to-ports 8443
Ottengo il seguente errore:
iptables: No chain/target/match by that name.
La mia configurazione attuale di iptables:
$ sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:https
DROP tcp -- anywhere anywhere tcp dpt:http
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Cosa mi sto perdendo o facendo di sbagliato?