Forrest logo
back to the iptables tool

iptables:ai:1df9a

/usr/sbin/iptables -A INPUT -s 127.0.0.0/8 -p tcp --dport 111 -j DROP
$ /usr/sbin/iptables -A INPUT -s 127.0.0.0/8 -p tcp --dport 111 -j DROP
try on your machine

This command adds a rule to the INPUT chain of the iptables firewall to drop all incoming TCP traffic on port 111 from the localhost (127.0.0.0/8)

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.

Questions that are answered by this command:

  • /usr/sbin/iptables -A INPUT -s 127.0.0.0/8 -p tcp --dport 111 -j DROP?
back to the iptables tool