Martin Wolff wrote: > I am trying to setup iptables to allow connections on port 8080, for an > apache webserver, but I can't seem to get the rule I need correct. > I tried > > iptables -A INPUT --p tcp --destination-port 8080 -j ACCEPT try with only one "-" iptables -A INPUT -p TCP --dport 8080 -j ACCEPT -Ken