Forrest logo
back to the iptables tool

iptables:ai:b7864

Allow incoming TCP and UDP traffic on port 443 via eth0 interface
$ /sbin/iptables -A INPUT -p tcp -i eth0 --dport 443 -j ACCEPT /sbin/iptables -A INPUT -p udp -i eth0 --dport 443 -j ACCEPT
try on your machine

Allow incoming TCP and UDP traffic on port 443 via eth0 interface

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 443 -j ACCEPT /sbin/iptables -A INPUT -p udp -i eth0 --dport 443 -j ACCEPT?
back to the iptables tool