मैं अपने Ubuntu 12.04 LTS सर्वर पर iptables को कॉन्फ़िगर करने का प्रयास कर रहा हूं ताकि पोर्ट 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
मुझे क्या याद आ रहा है या गलत कर रहा है?