0

I have a Dell PowerEdge Server and I want to make it into a whole site (location) proxy server so if anyone in the building uses our internet connection, they will have to go through this proxy to get out. I want to be able to block certain internet sites as well as monitor unproductive internet usage. (Search by user, date, time, site visited...) I would also like to restrict with username and password who is allowed to connect to the proxy.

I have a PowerEdge server running Ubuntu and an Ethernet switch. Do you know what hardware I need to do this and what software I need to be running and how to configure it? It would also be nice if it had a nice web interface and/or GUI to configure/search/monitor usage.

I have already looked into Squid, but it didn't seem like it did everything I am looking to do. Maybe I am not configuring it correctly or I need other software to run along side it?

Eliah Kagan
  • 119,640
Jason
  • 21

1 Answers1

0

How many users you need to support in total and concurrently will determine how much hardware you need. A single server can potentially handle many users but it depends on the number of users and the hardware capabilities.

I don't know of a turn-key solution on top of Ubuntu that does exactly what you are describing, but I think you are definitely right to look at Squid. As you saw Squid by itself does not do everything you want, but it has good authentication capabilities you can configure depending on your environment.

For content filtering and blocking Squid will work with Dan's Guardian which lets you block sites according to your own customization or pre-defined blacklists or keywords and such.

Finally, there are a number of ways to view and analyze the logs which are general or specific to Squid. /var/log/squid/access.log is in a plaintext format and you can view it in a nice graphical format with Squid-specific log viewers such as SqStat or Calamari (which seem to be no longer maintained) or SquidAnalyzer which looks like it is more current. You can even import it into Excel or OpenOffice Calc or similar to create a custom report based on the data.

Eliah Kagan
  • 119,640