Apr 152012
 

I recently had some issues trying to access Cacti on my server.
After some messing around, I had to remove all the access configuration to get it going, I added the ones I needed back in to get it going.

I wanted to lock down some access to cacti from the external intarwebs, so had a few extra rules that caused some issues.

I had the following in the config file

Alias /cacti /usr/share/cacti/site


Options +FollowSymLinks
AllowOverride None
order deny,allow
allow from 10.1.1.0/24
deny from all

I had to comment out the lines, restart apache, then re-add them one by one restarting apache after each addition just to make sure it works.


Alias /cacti /usr/share/cacti/site


Options +FollowSymLinks
# AllowOverride None
# order deny,allow
# allow from 10.1.1.0/24
# deny from all

Share