---
title: "Hướng dẫn cài đặt Proxy IPv6 trên Cloud Server"
description: "Hướng dẫn cài đặt Proxy IPv6 trên Cloud Server"
url: https://cloudfly.vn/docs/su-dung-cac-tinh-nang-nang-cao/huong-dan-cai-dat-proxy-ipv6-tren-cloud-server
image: https://media.cloudfly.vn/posts/proxy-ipv6.webp
---

# Hướng dẫn cài đặt Proxy IPv6 trên Cloud Server

<$>[info]
**Yêu cầu:** Cloud Server cài đặt image hệ điều hành CentOS 7.9 trên cụm máy chủ Việt Nam 03 và Việt Nam 01.
<$>
**Bước 1: Enable IPv6 Range**
* Kích hoạt cho dải địa chỉ IPv6 /64 trên Cloud Server của bạn trên trang quản trị https://my.cloudfly.vn như hình dưới: 
![Kích hoạt IPv6 range](https://media.cloudfly.vn/posts/enable_ipv6_range.png)

**Bước 2: Cấu hình IPv6**
* Lấy thông tin IPv6 trong mục **Public IPv6 Network** ở **Bước 1**, trong trường hợp này:

<$>[info]
**Address IPv6** là 2001:ef7:c200:11:f816:3eff:fe8e:68a1

**Gateway** là 2001:ef7:c200:11::1
<$>
* Đăng nhập SSH vào máy chủ CentOS chạy 4 lệnh dưới
```command
sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
echo "sslverify=false" >> /etc/yum.conf
```
* Thay thông tin IPv6 đã lấy ở trên vào 2 lệnh dưới
```
IPV6ADDR=<Address IPv6>
IPV6_DEFAULTGW=<Gateway>
```
Trong trường hợp này bạn sẽ có lệnh chạy như sau:
```command
IPV6ADDR=2001:ef7:c200:11:f816:3eff:fe8e:68a1
```
```command
IPV6_DEFAULTGW=2001:ef7:c200:11::1
```

* Tiếp theo copy toàn bộ lệnh dưới vào máy chủ để chạy cấu hình IPv6:

```command
echo "IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
IPV6ADDR=$IPV6ADDR/64
IPV6_DEFAULTGW=$IPV6_DEFAULTGW" >> /etc/sysconfig/network-scripts/ifcfg-eth0
service network restart
```

* Kiểm tra cấu hình IPv6 thành công bằng cách chạy lệnh:
```command
ping6 google.com.vn -c4
```
```
[secondary_label Output]
[root@instance-001 ~]# ping6 google.com.vn -c4
PING google.com.vn(hkg12s28-in-x03.1e100.net (2404:6800:4005:81c::2003)) 56 data bytes
64 bytes from hkg12s28-in-x03.1e100.net (2404:6800:4005:81c::2003): icmp_seq=1 ttl=114 time=26.8 ms
64 bytes from hkg12s28-in-x03.1e100.net (2404:6800:4005:81c::2003): icmp_seq=2 ttl=114 time=25.7 ms
64 bytes from hkg12s28-in-x03.1e100.net (2404:6800:4005:81c::2003): icmp_seq=3 ttl=114 time=25.8 ms
64 bytes from hkg12s28-in-x03.1e100.net (2404:6800:4005:81c::2003): icmp_seq=4 ttl=114 time=25.8 ms

--- google.com.vn ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3005ms
rtt min/avg/max/mdev = 25.781/26.064/26.813/0.447 ms
```
<$>[info]
Nếu ping trả về gói tin thì cấu hình IPv6 đã thành công như trên và tiếp tục chuyển sang bước 3
<$>

**Bước 3. Cài đặt Proxy IPv6 Range /64**

* ***Trường hợp Proxy có Username và Password khác nhau***
```command
curl -sO https://raw.githubusercontent.com/cloudfly-vn/3proxy/main/ipv6-with-port-password.sh && chmod +x ipv6-with-port-password.sh && bash ipv6-with-port-password.sh
```

* ***Trường hợp Proxy có Username và Password giống nhau***
```command
curl -sO https://raw.githubusercontent.com/cloudfly-vn/3proxy/main/ipv6-with-port-same-username-password.sh && chmod +x ipv6-with-port-same-username-password.sh && bash ipv6-with-port-same-username-password.sh
```

**Bước 4: Lấy thông tin và sử dụng**
* Lấy thông tin tài khoản tại đường dẫn /home/cloudfly,  mở file proxy.txt để lấy các thông tin đăng nhập.
```command
cat /home/cloudfly/proxy.txt
```
