By paulalford51
Hi,
I have a Wordpress web app on a droplet in nyc2 and a MySQL server in the same DC. Both have private networking enabled and the web app works great with the backend DB server.
I know the DB server can’t be reached from outside the DC, but I want to make sure that internally only my web app can access the MySQL instance on port 3306 and that I can access the VPS from my local machine. I’m not sure if I have setup the iptables 100% correctly, so I’m looking for confirmation.
Below is my current iptables config where xxx is the external IP address of my local machine and yyy is the private network address of the MySQL instance.
If someone could cast an eye over that config I’d be very grateful.
Many thanks in advance.
:INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [113:20356] -A INPUT -i lo -j ACCEPT -A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT -A INPUT -p tcp -s xxx.xxx.xxx.xxx/32 --dport 22 -j ACCEPT -A INPUT -p tcp -m tcp -s yyy.yyy.yyy.yyy/32 --dport 3306 -j ACCEPT -A INPUT -j DROP COMMIT
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Sorry, mistake in the above. yyy is the IP address of the Wordpress web app instance and not the database server.
Looks fine to me. <br> <br>One thing I would suggest is deleting the rule <code>-A INPUT -j DROP </code>: <br><pre>iptables -D INPUT -j DROP</pre> <br>And setting <code>INPUT</code>'s default policy to <code>DROP</code> instead: <br><pre>iptables -P INPUT DROP</pre>
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.