Restricting MySQL 3306 port to localhost with IPTABLES

后端 未结 3 1214
后悔当初
后悔当初 2021-02-01 10:22

I am trying to restrict MySQL 3306 port on a linux machine from making any connections to anything other than localhost to prevent outside attacks. i have the following code, i

相关标签:
3条回答
  • 2021-02-01 10:55
    iptables -A INPUT -p tcp --dport 3306 -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
    

    The above rule is for converting two lines into single one.

    Answer to your second question:

    If you do not want to provide mysql access from other than localhost, then it is perfect to configure this way. Simple. :-)

    0 讨论(0)
  • 2021-02-01 11:04
    iptables -A INPUT -p tcp --dport 3306 -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
    iptables -A INPUT -p tcp --dport 3306 -j DROP
    

    If you want to remove the filtering, use this:

    iptables -D INPUT -p tcp --dport 3306 -s 127.0.0.1 -d 127.0.0.1 -j ACCEPT
    iptables -D INPUT -p tcp --dport 3306 -j DROP
    

    Note: Both might require root, so: sudo iptables (...)

    0 讨论(0)
  • 2021-02-01 11:09

    Why not just turn off networking with MySQL?

    Add to my.cnf:

    skip-networking

    It's supposed to also give a negligible performance improvement by forcing connection through pipes, which skips over lots of tests used for the networking section. Please note you will need to use localhost, not 127.0.0.1, after the change.

    0 讨论(0)
提交回复
热议问题