Answers for "iptables port forwarding"

4

iptables open port

sudo iptables -A INPUT -p tcp --dport xxxx -j ACCEPT
Posted by: Guest on August-17-2020
0

iptables block incoming port

iptables -A INPUT -p tcp --dport 8000 -s 1.2.3.4 -j ACCEPT
iptables -A INPUT -p tcp --dport 8000 -j DROP
Posted by: Guest on July-02-2020

Browse Popular Code Answers by Language