I want to add Ubuntu iptables entries so only the following can access MySQL server on my droplet:
What iptables entries will make these secure restrictions possible?
Thanks in advance!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Make sure that in <strong>/etc/mysql/my.cnf</strong> you have the following entry: <br><pre>bind-address = 127.0.0.1</pre>
MySQL listens on the loopback interface by default so outer access to port 3306 will not be allowed (it will timeout as there’s nothing listening publicly on port 3306). <br> <br>You don’t have to set up any iptables rules as it’s pretty much secure by default as long as there are no users that are able to connect without a password.
Yes, everything is on the same droplet.
Are they on the same droplet?