Forrest logo
back to the iptables tool

iptables:ai:73c79

/sbin/iptables -A INPUT -p tcp -i eth0 --dport 113 -j REJECT --reject-with tcp-reset
$ /sbin/iptables -A INPUT -p tcp -i eth0 --dport 113 -j REJECT --reject-with tcp-reset
try on your machine

This iptables command adds a rule to reject incoming TCP traffic on port 113 on the eth0 interface, and send a TCP reset response

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:

  • /sbin/iptables -A INPUT -p tcp -i eth0 --dport 113 -j REJECT --reject-with tcp-reset?
back to the iptables tool