We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Block incoming port (Solr) 8983 except for IP address 127.0.0.1
iptables -A INPUT -p tcp -i eth0 ! -s 127.0.0.1 --dport 8983 -j DROP
Block incoming port (MySQL) 3306 except for IP address 127.0.0.1
iptables -A INPUT -p tcp -i eth0 ! -s 127.0.0.1 --dport 3306 -j DROP