Tips Proxy Ubuntu Server 20.04: Cài đặt và cấu hình proxy trên Ubuntu Server.

TricksMMO

Administrator
Staff member
## Cách cài đặt và định cấu hình proxy trên máy chủ Ubuntu 20.04

Máy chủ proxy là một máy chủ hoạt động như một trung gian giữa máy khách và máy chủ.Nó có thể được sử dụng để cải thiện hiệu suất, bảo mật và quyền riêng tư.Trong hướng dẫn này, chúng tôi sẽ chỉ cho bạn cách cài đặt và định cấu hình máy chủ proxy trên máy chủ Ubuntu 20.04.

### Điều kiện tiên quyết

Để làm theo hướng dẫn này, bạn sẽ cần những điều sau đây:

* Phiên bản 20.04 của máy chủ Ubuntu
* Một người dùng có đặc quyền sudo
* Các gói sau được cài đặt:
* `apt-transport-https`
* `Ca chứng thực`
* `Curl`
* `gnupg`
* `-Phần mềm-Properies-Common`

### Cài đặt máy chủ proxy Squid

Bước đầu tiên là cài đặt máy chủ proxy Squid.Chúng ta có thể làm điều này bằng cách sử dụng lệnh sau:

`` `
SUDO apt-get install Squid
`` `

Sau khi cài đặt hoàn tất, chúng tôi cần bắt đầu dịch vụ SQUID và cho phép nó tự động khởi động:

`` `
sudo systemctl bắt đầu mực
sudo systemctl cho phép mực
`` `

### Cấu hình máy chủ proxy Squid

Máy chủ proxy Squid được cấu hình bằng tệp cấu hình được đặt tại `/etc/squid/squid.conf`.Chúng tôi có thể mở tệp này trong trình soạn thảo văn bản và thực hiện các thay đổi sau:

* Trong phần `[toàn cầu]`, thêm các dòng sau:

`` `
http_port 3128
bộ nhớ cache_dir/var/cache/squid 100 16 256
`` `

* Trong phần `[http]`, thêm các dòng sau:

`` `
ACL Localnet SRC 192.168.0.0/16
ACL tất cả SRC 0,0.0.0/0
http_access cho phép localnet
http_access từ chối tất cả
`` `

Những thay đổi này sẽ định cấu hình máy chủ proxy Squid để nghe trên cổng 3128 và nội dung bộ đệm cho máy khách trên mạng 192.168.0.0/16.Tất cả các máy khách khác sẽ bị từ chối truy cập vào máy chủ proxy.

### Kiểm tra máy chủ proxy Squid

Khi bạn đã cấu hình máy chủ proxy Squid, bạn có thể kiểm tra nó bằng cách sử dụng lệnh sau:

`` `
Curl -x Localhost: 3128 Google
`` `

Nếu máy chủ proxy hoạt động chính xác, bạn sẽ thấy trang chủ Google được hiển thị trong trình duyệt của bạn.

### Tài nguyên bổ sung

* [Tài liệu máy chủ proxy Squid] (https://www.squid-cache.org/doc/)
* [Cách thiết lập máy chủ proxy Squid trên Ubuntu] (https://www.digitalocean.com/community/tutorials/how-to-set-p04)

## hashtags

* #Ủy quyền
* #ubuntu
* #máy chủ
* #NetWorking
* #bảo vệ
=======================================
## How to Install and Configure Proxy on Ubuntu Server 20.04

A proxy server is a server that acts as an intermediary between a client and a server. It can be used to improve performance, security, and privacy. In this tutorial, we will show you how to install and configure a proxy server on Ubuntu Server 20.04.

### Prerequisites

To follow this tutorial, you will need the following:

* An Ubuntu Server 20.04 instance
* A user with sudo privileges
* The following packages installed:
* `apt-transport-https`
* `ca-certificates`
* `curl`
* `gnupg`
* `software-properties-common`

### Installing the Squid Proxy Server

The first step is to install the Squid proxy server. We can do this using the following command:

```
sudo apt-get install squid
```

Once the installation is complete, we need to start the Squid service and enable it to start automatically at boot:

```
sudo systemctl start squid
sudo systemctl enable squid
```

### Configuring the Squid Proxy Server

The Squid proxy server is configured using a configuration file located at `/etc/squid/squid.conf`. We can open this file in a text editor and make the following changes:

* In the `[global]` section, add the following lines:

```
http_port 3128
cache_dir /var/cache/squid 100 16 256
```

* In the `[http]` section, add the following lines:

```
acl localnet src 192.168.0.0/16
acl all src 0.0.0.0/0
http_access allow localnet
http_access deny all
```

These changes will configure the Squid proxy server to listen on port 3128 and cache content for clients on the 192.168.0.0/16 network. All other clients will be denied access to the proxy server.

### Testing the Squid Proxy Server

Once you have configured the Squid proxy server, you can test it by using the following command:

```
curl -x localhost:3128 Google
```

If the proxy server is working correctly, you should see the Google homepage displayed in your browser.

### Additional Resources

* [Squid Proxy Server Documentation](https://www.squid-cache.org/doc/)
* [How to Set Up a Squid Proxy Server on Ubuntu](https://www.digitalocean.com/community/tutorials/how-to-set-up-a-squid-proxy-server-on-ubuntu-20-04)

## Hashtags

* #Proxy
* #ubuntu
* #Server
* #NetWorking
* #Security
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top