1 Answer
The command used for blocking outgoing of port number 443
/sbin/iptables -A OUTPUT -p tcp --dport 443 -j DROP
The command used for blocking incoming of port number 443
/sbin/iptables -A INPUT -p tcp --dport 443 -j DROP
after adding the rule save the iptables by using the following command
/sbin/service iptables save
Your Answer