Is this safe on a production server?
- by Camran
I have a database application (or search engine) which is called Solr.
I connect to it via port 8983.
I do this from php code, so I add and remove records from it via php.
On my server I have a firewall.
I have set this firewall to only allow connections to and from this port (8983) from the ip adress of my own server. In other words, only allow servers IP to access this port.
Is that safe? Or am I thinking all wrong here? Will others be able to "simulate" my ip adress and act as the server?
This is because otherwise others may add/remove records as they want from their own ip adresses...
Thanks