Disable remote connection to mysql (Debian,Firewall)
debian, firewall, mysql
Solution
The best way to disable external connections to your MySQL is setting `bind-address=127.0.0.1` in `my.cnf` configuration file. If you still need to block MySQL external access using firewall, you drop or reject all packets sending to 3306 port.
Problem
I want to disable outside connections to my mysql in debian, with firewall. i only know that it has to be inside the iptables.test.rules file Thanks in advance.