Reputation: 3627
My client has Squid proxy server and it is working fine. But to see the access log and other changes, we have to go through only with Command prompt. Moreover I am new to the Squid server.
Client wants me to check for Administrative interface to see how many people are using Squid server? To get know the browser information they logging? And other data like Webalizer.
So my question is, is there any admin interface to install in Squid server?
Upvotes: 2
Views: 24913
Reputation: 3093
Squid cache provides a basic web interface for stats via Cache Manager.
Presuming you have a default install start by checking for the following file which you will need to edit to allow yourself access to the interface by setting the allow from
line;
/etc/httpd/conf.d/squid.conf
Once you have reloaded your web server config you should be able to navigate too; http://<your host>/cgi-bin/cachemgr.cgi
You should then be able to access a number of stats and counters.
If you prefer squid
also supports snmp
via the config file at; /etc/squid/squid.conf
where in you should add the following section (Customising as required)
snmp_port 3401
acl snmppublic snmp_community public
snmp_access allow snmppublic
snmp_access deny all
snmp_incoming_address 0.0.0.0
snmp_outgoing_address 255.255.255.255
Information and the OID values can be found in the docs here.
Upvotes: 2