Tắt IPv6 Debian 11 - Disable IPv6 Debian 11

Bài viết này sẽ là hướng dẫn cách tắt IPv6 Debian 11. IPv6 được tắt bằng cách sửa đổi tập tin sysctl.conf hoặc tạo tập tin .conf trong thư mục /etc/sysctl.d. Bên cạnh đó, bạn cũng có thể tắt IPv6 cho một bộ điều chỉnh mạng cụ thể. Các bước này sẽ hoạt động trên cả các phiên bản Debian trước đó như Debian 9 và 8, cũng như trên các phiên bản Ubuntu như Ubuntu 19.10, 19.04 và 18.10.

Tắt IPv6 Debian 11/Disable IPv6 Debian 11

Chắc chắn, trước khi tắt IPv6, hãy xem danh sách các bộ điều chỉnh mạng có sẵn trên hệ thống bằng cách sử dụng lệnh ifconfig.

enp0s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
              inet 192.168.0.10 netmask 255.255.255.0 broadcast 192.168.0.255
              inet6 2406:7400:bf:7cdd:a00:27ff:fe68:1c64 prefixlen 64 scopeid 0x0
              inet6 fe80::a00:27ff:fe68:1c64 prefixlen 64 scopeid 0x20
              inet6 2406:7400:bf:7cdd:882d:c9c6:df13:890 prefixlen 64 scopeid 0x0
              ether 08:00:27:68:1c:64 txqueuelen 1000 (Ethernet)
              RX packets 1174 bytes 80087 (78.2 KiB)
              RX errors 0 dropped 0 overruns 0 frame 0
              TX packets 372 bytes 46400 (45.3 KiB)
              TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
              inet 127.0.0.1 netmask 255.0.0.0
              inet6 ::1 prefixlen 128 scopeid 0x10
              loop txqueuelen 1000 (Local Loopback)
              RX packets 8 bytes 396 (396.0 B)
              RX errors 0 dropped 0 overruns 0 frame 0
              TX packets 8 bytes 396 (396.0 B)
              TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

Tắt IPv6 Debian 11 - Disable IPv6 Debian 11

Đầu ra của lệnh ifconfig trước khi tắt IPv6

Đầu ra trên xác nhận rằng IPv6 đã được kích hoạt cho cả hai bộ điều chỉnh mạng.

Phương pháp 1

Chỉnh sửa /etc/sysctl.conf.

sudo nano /etc/sysctl.conf

Để tắt IPv6 cho tất cả các bộ điều chỉnh mạng, thêm mục sau:

net.ipv6.conf.all.disable_ipv6 = 1

Để tắt IPv6 cho một bộ điều chỉnh mạng cụ thể có tên là "enp0s3," thêm mục sau:

net.ipv6.conf.enp0s3.disable_ipv6 = 1

Để áp dụng các thay đổi, thực thi lệnh sau:

sudo sysctl -p

Phương pháp 2

Để tạo một tệp có tên là "70-disable-ipv6.conf" trong thư mục "/etc/sysctl.d/", bạn có thể thực hiện các bước sau:

sudo nano /etc/sysctl.d/70-disable-ipv6.conf

Thêm mục sau để tắt IPv6 cho tất cả các bộ điều chỉnh mạng:

net.ipv6.conf.all.disable_ipv6 = 1

Thêm mục sau để tắt IPv6 cho một bộ điều chỉnh mạng cụ thể có tên là "enp0s3":

net.ipv6.conf.enp0s3.disable_ipv6 = 1

Chạy lệnh dưới đây để áp dụng các thay đổi:

sudo sysctl -p -f /etc/sysctl.d/70-disable-ipv6.conf

Xác minh IPv6 đã được vô hiệu hóa hay chưa

Xác minh rằng IPv6 đã bị vô hiệu hóa bằng lệnh ifconfig.

Tắt IPv6 Debian 11 - Disable IPv6 Debian 11

Đầu ra của lệnh ifconfig sau khi Tắt IPv6

Bạn có thể thấy rằng không có địa chỉ IPv6 trong đầu ra.

 

English: How to Disable IPv6 on Debian 10

In this article, we will provide detailed instructions on how to disable IPv6 on Debian 10 using two different methods. The first method involves modifying the sysctl.conf file, and the second method involves creating a .conf file in the /etc/sysctl.d directory. Additionally, we will show you how to disable IPv6 for a specific network interface. These steps are not only applicable to Debian 10 but also work on other Debian versions such as Debian 9 and 8. On Ubuntu, the steps are valid for versions 19.10, 19.04, and 18.10.

Disable IPv6 on Debian 11

Before disabling IPv6, make sure to review the list of available network interfaces on your system using the ifconfig command.

enp0s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
        inet 192.168.0.10 netmask 255.255.255.0 broadcast 192.168.0.255
        inet6 2406:7400:bf:7cdd:a00:27ff:fe68:1c64 prefixlen 64 scopeid 0x0
        inet6 fe80::a00:27ff:fe68:1c64 prefixlen 64 scopeid 0x20
        inet6 2406:7400:bf:7cdd:882d:c9c6:df13:890 prefixlen 64 scopeid 0x0
        ether 08:00:27:68:1c:64 txqueuelen 1000 (Ethernet)
        RX packets 1174 bytes 80087 (78.2 KiB)
        RX errors 0 dropped 0 overruns 0 frame 0
        TX packets 372 bytes 46400 (45.3 KiB)
        TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
        inet 127.0.0.1 netmask 255.0.0.0
        inet6 ::1 prefixlen 128 scopeid 0x10
        loop txqueuelen 1000 (Local Loopback)
        RX packets 8 bytes 396 (396.0 B)
        RX errors 0 dropped 0 overruns 0 frame 0
        TX packets 8 bytes 396 (396.0 B)
        TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

Tắt IPv6 Debian 11 - Disable IPv6 Debian 11

Output of ifconfig command before disabling IPv6

Method 1: Modifying the sysctl.conf file

Edit the file /etc/sysctl.conf using a text editor (e.g., nano).

sudo nano /etc/sysctl.conf

To disable IPv6 for all network interfaces, add the following line:

net.ipv6.conf.all.disable_ipv6 = 1

To disable IPv6 for a specific network interface named "enp0s3," add the following line:

net.ipv6.conf.enp0s3.disable_ipv6 = 1

Apply the changes by executing the following command:

sudo sysctl -p

Method 2: Creating a .conf file

To create a file named "70-disable-ipv6.conf" in the "/etc/sysctl.d/" directory, follow these steps:

sudo nano /etc/sysctl.d/70-disable-ipv6.conf

To disable IPv6 for all network interfaces, add the following line:

net.ipv6.conf.all.disable_ipv6 = 1

To disable IPv6 for a specific network interface named "enp0s3," add the following line:

net.ipv6.conf.enp0s3.disable_ipv6 = 1

Execute the following command to apply all changes:

sudo sysctl -p -f /etc/sysctl.d/70-disable-ipv6.conf

Verify IPv6 has been disabled

After completing the steps, you need to verify that IPv6 has been successfully disabled using the ifconfig command.

ifconfig

Tắt IPv6 Debian 11 - Disable IPv6 Debian 11

Output of ifconfig command after disabling IPv6

You should notice that there are no IPv6 addresses in the output.

Mọi người cũng tìm kiếm: disable ipv6 debian, debian 11 disable ipv6, debian disable ipv6, debian ipv6, tắt ipv6, disable ipv6 debian 11, debian 11 ipv6

Các gói dịch vụ Cloud VPS của KDATA mang đến cho bạn nhiều lựa chọn về hiệu suất cũng như khả năng lưu trữ, mọi nhu cầu về doanh nghiệp đều được đáp ứng. KDATA đảm bảo khả năng uptime lên đến 99,99%, toàn quyền quản trị và free backup hằng ngày. Tham khảo ngay các gói dịch vụ Cloud VPS:

https://kdata.vn/cloud-vps

👉 Liên hệ ngay KDATA hỗ trợ tận tình, support tối đa, giúp bạn trải nghiệm dịch vụ giá hời chất lượng tốt nhất