MySQL Forums
Forum List  »  Newbie

Re: MySql Database access restricted by IP address?
Posted by: Bill Jour
Date: October 03, 2017 10:23AM

I found a document in the etc/apache2/sites-enabled folder named 000-default. Contained within that document was the following:
-------------------------------------------------------
Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
Allow from 192.168.1.201
Allow from 192.168.1.202
Allow from 192.168.1.203
Allow from 192.168.1.204
Allow from 192.168.1.205
</Directory>
--------------------------------------------------------
The /var/www/ directory is where the PHP search page is stored.

So it appears that the only workstations that can access are from 201 to 205 which is pretty close to what I initially thought 200 to 205.

I guess the next question is how to change that configuration so that all workstations are allowed and none are denied?

Options: ReplyQuote


Subject
Written By
Posted
Re: MySql Database access restricted by IP address?
October 03, 2017 10:23AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.