with the following rules:
iptables -A INPUT --protocol tcp --dport 2222 -j ACCEPT iptables -t nat -A PREROUTING -p tcp --dport 2222 -j DNAT --to-destination
127.0.0.1:22
"ssh -p 2222 " doesn't go through and nmap shows port 2222 as being filtered (from within the DMZ). how can i open up the port?
thanks.