Este contenido no está disponible en el idioma seleccionado.

16.5. Configuring the Squid Service to Listen on a Specific Port or IP Address


By default, the Squid proxy service listens on the 3128 port on all network interfaces. This section describes how to change the port and configuring Squid to listen on a specific IP address.

Prerequisites

  • Squid is installed.

Procedure

  1. Edit the /etc/squid/squid.conf file:
    • To set the port on which the Squid service listens, set the port number in the http_port parameter. For example, to set the port to 8080, set:
      http_port 8080
      Copy to Clipboard Toggle word wrap
    • To configure on which IP address the Squid service listens, set the IP address and port number in the http_port parameter. For example, to configure that Squid listens only on the 192.0.2.1 IP address on port 3128, set:
      http_port 192.0.2.1:3128
      Copy to Clipboard Toggle word wrap
    Add multiple http_port parameters to the configuration file to configure that Squid listens on multiple ports and IP addresses:
    http_port 192.0.2.1:3128
    http_port 192.0.2.1:8080
    Copy to Clipboard Toggle word wrap
  2. If you configured that Squid uses a different port as the default (3128):
    1. Open the port in the firewall:
      # firewall-cmd --permanent --add-port=port_number/tcp
      # firewall-cmd --reload
      Copy to Clipboard Toggle word wrap
    2. If you run SELinux in enforcing mode, assign the port to the squid_port_t port type definition:
      # semanage port -a -t squid_port_t -p tcp port_number
      Copy to Clipboard Toggle word wrap
      If the semanage utility is not available on your system, install the policycoreutils-python-utils package.
  3. Restart the squid service:
    # systemctl restart squid
    Copy to Clipboard Toggle word wrap
Red Hat logoGithubredditYoutubeTwitter

Aprender

Pruebe, compre y venda

Comunidades

Acerca de la documentación de Red Hat

Ayudamos a los usuarios de Red Hat a innovar y alcanzar sus objetivos con nuestros productos y servicios con contenido en el que pueden confiar. Explore nuestras recientes actualizaciones.

Hacer que el código abierto sea más inclusivo

Red Hat se compromete a reemplazar el lenguaje problemático en nuestro código, documentación y propiedades web. Para más detalles, consulte el Blog de Red Hat.

Acerca de Red Hat

Ofrecemos soluciones reforzadas que facilitan a las empresas trabajar en plataformas y entornos, desde el centro de datos central hasta el perímetro de la red.

Theme

© 2026 Red Hat
Volver arriba