Я намагаюся налаштувати iptables на своєму сервері Ubuntu 12.04 LTS для переадресації портів 443 на 8443.
Але коли я запускаю цю команду:
sudo iptables -A PREROUTING -p tcp --dport 443 -j REDIRECT --to-ports 8443
Я отримую таку помилку:
iptables: No chain/target/match by that name.
Поточна конфігурація 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
Що я пропускаю чи роблю неправильно?