Are you new here? Subscribe to my RSS feed. Thanks for visiting!Here is a quick Linux tip to block incoming access to port 80 using iptables.
iptables -A INPUT -j DROP -p tcp –destination-port 80 -i eth0
The code above will drop all tcp packets coming into your Linux computer on device eth0 on port 80. […]
Popularity: 4% [?]

