포트 443을 8443으로 전달하기 위해 Ubuntu 12.04 LTS 서버에서 iptables를 구성하려고합니다.
그러나이 명령을 실행할 때 :
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
내가 무엇을 놓치고 있거나 잘못하고 있습니까?