Linux CLI - System Administration
What will be the result of running
sudo iptables -A INPUT -p tcp --dport 443 -j ACCEPT followed by sudo iptables -L?sudo iptables -A INPUT -p tcp --dport 443 -j ACCEPT followed by sudo iptables -L?iptables command-A INPUT appends a rule to the INPUT chain; -p tcp --dport 443 matches TCP traffic on port 443; -j ACCEPT accepts matching packets.iptables -Liptables -A INPUT adds accept rule for TCP port 443 [OK]-A to INPUT chain for incoming traffic [OK]-A deletes rules15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions