How to Install and Configure Squid Proxy Server for Private Connections on CentOS

How to Install and Configure Squid Proxy Server for Private Connections on CentOS

As server administrators and webmasters, we are often faced with the challenge of ensuring our connections remain private and secure. One solution to this problem is the use of a proxy server. A proxy server acts as an intermediary between your server and the internet, providing an additional layer of security and privacy.

One of the most popular proxy server software is Squid. Squid is a highly flexible, widely-used, caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages.

In this tutorial, we will guide you through the process of setting up Squid Proxy on a CentOS server. This setup will allow you to establish private connections, enhancing your security and privacy while online. Whether you’re using a dedicated, VPS, or cloud hosting machine, this guide will be applicable.

By the end of this tutorial, you will have a fully functional Squid Proxy server ready to use. This will not only enhance your server’s security but also improve its performance by caching and reusing frequently-requested web pages.

So, let’s dive in and start setting up your Squid Proxy for private connections on CentOS.

Step 1: Update Your System

The first step in setting up Squid Proxy on CentOS is to ensure that your system is up to date. This can be done by running the following command:

sudo yum update -y

This command will update all the packages on your CentOS system to their latest versions.

Step 2: Install Squid

Once your system is up to date, the next step is to install Squid. This can be done by running the following command:

sudo yum install squid -y

This command will install Squid on your CentOS system.

Step 3: Configure Squid

After installing Squid, the next step is to configure it. This involves editing the Squid configuration file, which is located at /etc/squid/squid.conf. You can open this file in a text editor by running the following command:

sudo nano /etc/squid/squid.conf

In the configuration file, you can specify the settings for your Squid Proxy server. For example, you can specify the port that Squid listens on, the maximum object size that can be cached, and the access control lists (ACLs) that determine who can access the proxy server.

See also  How to Fix "-bash: hdparm: command not found" on Linux CentOS 6.3

Once you have made the necessary changes to the configuration file, save and close the file.

Step 4: Start and Enable Squid

After configuring Squid, the next step is to start the Squid service and enable it to start on boot. This can be done by running the following commands:

sudo systemctl start squid
sudo systemctl enable squid

These commands will start the Squid service and enable it to start on boot.

Step 5: Verify Squid Installation

The final step in setting up Squid Proxy on CentOS is to verify that the installation was successful. This can be done by checking the status of the Squid service. Run the following command:

sudo systemctl status squid

If Squid has been installed and configured correctly, you should see an output indicating that the Squid service is active and running.

Squid Configuration Examples

Here are some examples of how you can configure Squid for different purposes:

1. Blocking Specific Websites

To block specific websites, you can add the following lines to your Squid configuration file:

acl blocked_websites dstdomain .facebook.com .youtube.com
http_access deny blocked_websites

This will block access to Facebook and YouTube.

2. Allowing Specific Websites Only

If you want to allow access to only specific websites, you can use the following configuration:

acl allowed_websites dstdomain .google.com .wikipedia.org
http_access deny all
http_access allow allowed_websites

This will only allow access to Google and Wikipedia, and deny all other websites.

3. Setting Up a Transparent Proxy

To set up a transparent proxy, add the following line to your Squid configuration file:

http_port 3128 transparent

This will set up Squid as a transparent proxy on port 3128.

4. Limiting Access to Specific IP Addresses

To limit access to specific IP addresses, use the following configuration:

acl allowed_ips src 192.168.1.0/24
http_access deny all
http_access allow allowed_ips

This will only allow access to the IP addresses in the range 192.168.1.0 to 192.168.1.255.

5. Setting Up a Cache

To set up a cache, add the following lines to your Squid configuration file:

cache_dir ufs /var/spool/squid 100 16 256

This will set up a cache directory at /var/spool/squid with a maximum size of 100 MB.

See also  How to Install PHP GD-library on Ubuntu

6. Logging Access

To log access, use the following configuration:

access_log /var/log/squid/access.log squid

This will log all access to /var/log/squid/access.log.

7. Disabling Caching

To disable caching, add the following lines to your Squid configuration file:

cache deny all

This will disable all caching.

8. Setting Up a Parent Proxy

To set up a parent proxy, use the following configuration:

cache_peer parentproxy.example.com parent 3128 0 no-query default

This will set up a parent proxy at parentproxy.example.com on port 3128.

9. Restricting Access by Time

To restrict access by time, use the following configuration:

acl work_hours time M T W T F 9:00-17:00
http_access deny all
http_access allow work_hours

This will only allow access during work hours (Monday to Friday, 9:00 to 17:00).

10. Setting Up Authentication

To set up authentication, add the following lines to your Squid configuration file:

auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/passwords
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
acl auth_users proxy_auth REQUIRED
http_access deny all
http_access allow auth_users

This will set up basic authentication with the usernames and passwords stored in /etc/squid/passwords.

11. Blocking Specific File Types

To block specific file types, use the following configuration:

acl blocked_files urlpath_regex .exe$ .mp3$ .torrent$
http_access deny blocked_files

This will block access to .exe, .mp3, and .torrent files.

12. Redirecting URLs

To redirect URLs, you can use the url_rewrite_program directive:

url_rewrite_program /usr/bin/redirect_script

This will redirect URLs based on the rules defined in the /usr/bin/redirect_script.

13. Enabling SSL Bump

To enable SSL Bump, add the following lines to your Squid configuration file:

http_port 3128 ssl-bump generate-host-certificates=on dynamic_cert_mem_cache_size=4MB cert=/etc/squid/ssl_cert/myCA.pem
ssl_bump allow all

This will enable SSL Bump on port 3128 with the certificate located at /etc/squid/ssl_cert/myCA.pem.

14. Setting Up a Reverse Proxy

To set up a reverse proxy, use the following configuration:

http_port 80 accel defaultsite=www.example.com vhost
cache_peer 192.168.1.10 parent 80 0 no-query originserver name=myAccel
acl our_sites dstdomain www.example.com
http_access allow our_sites
cache_peer_access myAccel allow our_sites

This will set up a reverse proxy for www.example.com.

15. Limiting Download Size

To limit the download size, use the following configuration:

reply_body_max_size 50 MB

This will limit the maximum download size to 50 MB.

See also  How to Block Websites with Specific Domain Extensions in Squid Proxy Server

Commands Mentioned:

  • yum install squid – Installs the Squid proxy server on CentOS.
  • systemctl start squid – Starts the Squid service.
  • systemctl enable squid – Enables the Squid service to start on boot.

Conclusion

Setting up Squid for private connections on CentOS adds an additional layer of security and privacy for your server’s internet connections.

Remember, the key to maintaining a secure and efficient server is regular updates and monitoring. Always keep your system and software up-to-date, and monitor your server’s performance regularly to ensure it’s running at its best.

Hope you found this tutorial helpful.

If you have any questions or run into any issues, feel free to leave a comment below.

FAQ

  1. What is Squid Proxy Server?

    Squid is a caching and forwarding HTTP web proxy that supports HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages.

  2. Why use Squid Proxy Server?

    Squid Proxy Server improves performance by caching and reusing frequently-requested web pages. It also provides security as it can limit the web access for certain users and hide users’ IP address.

  3. How to install Squid Proxy Server on CentOS?

    You can install Squid on CentOS using the command ‘yum install squid’. After the installation, start the service with ‘systemctl start squid’ and enable it to start on boot with ‘systemctl enable squid’.

  4. How to configure Squid Proxy Server?

    Squid Proxy Server can be configured by editing the Squid configuration file located at /etc/squid/squid.conf. You can define access control lists, set up caching parameters, and more.

  5. What is the difference between Squid Proxy Server and Apache HTTP Server?

    Squid is primarily a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages. On the other hand, Apache HTTP Server is a free and open-source web server that delivers web content through the internet. It is commonly referred to as Apache and after development, it quickly became the most popular HTTP client on the web.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *