That's easily solved with an iptables rule on the MySQL server. From the command prompt you could enter:



/sbin/iptables -I INPUT -p tcp ! -s 127.0.0.0/8 --dport 3306 -j REJECT
/sbin/iptables...