View Single Post
  #1  
Old 09-09-2006, 01:57 PM
arew264
Fire Beetle
 
Join Date: Sep 2006
Posts: 22
Default Wiki Update under Secure Linux Server

Really don't know where this should go, but here:
http://www.eqemulator.net/wiki/wikka...Linux#firewall
the firewall rules would be:
block TCP to port 9000:
iptables -A INPUT -p TCP --dport 9000 -s localhost -j ACCEPT
iptables -A INPUT -p TCP --dport 9000 -j DROP

block mysql access (tcp port 3306):
iptables -A INPUT -p TCP --dport 3306 -s localhost -j ACCEPT
iptables -A INPUT -p TCP --dport 3306 -j DROP
Reply With Quote