Hiện tại, ipv6 sử dụng tương đối nhiều. Việc chuyển ipv4 có thể gây ra lỗi cho nhiều app. Tuy nhiên, trong vài trường hợp cần test, chuyển về ipv4 vẫn có hiệu quả về mặt kỹ thuật.
Disable IPv6 on Ubuntu via GRUB Boot Loader
Phương pháp này đã test, cho thấy hiệu quả tuyệt đối, hơn các phương pháp khác
# Edit the GRUB configuration file with a command-line text editor like Nano
$ sudo nano /etc/default/grub
# Find the following line
GRUB_CMDLINE_LINUX=""
# Change it to:
GRUB_CMDLINE_LINUX="ipv6.disable=1"
# Update GRUB boot menu.
$ sudo update-grub
# Reboot the computer
$ reboot
Tài liệu gốc: 2 Ways to Disable IPv6 on Ubuntu Desktop & Server - LinuxBabe