How to disable IPv6


Iternal
Last Updated: 1 year ago

At the moment, we recommend using IPv4 instead of IPv6.
This is because IPv6 traffic is currently being redirected (tunneled) to the IPv4 network. Such routing may cause additional latency and affect connection quality.
Using IPv4 directly ensures a more stable connection and a better gaming experience.
We are working on optimizing IPv6, but for now we recommend disabling it for stable gameplay.

Windows 10/11:

  1. Open Control PanelNetwork and Sharing CenterChange adapter settings.

  2. Right-click your active network connection and select Properties.

  3. Uncheck Internet Protocol Version 6 (TCP/IPv6).

  4. Click OK and restart your computer.

macOS:

  1. Open Terminal.

  2. Run the following command:

    networksetup -listallnetworkservices 
  3. Identify the active interface (e.g., Wi-Fi or Ethernet), then run:

    networksetup -setv6off "Wi-Fi" 

    Replace "Wi-Fi" with the name of your interface.

Linux (Ubuntu/Debian):

  1. Open Terminal.

  2. Edit the GRUB config:

    sudo nano /etc/default/grub 
  3. Find the line starting with GRUB_CMDLINE_LINUX and add:

    ipv6.disable=1 

    Example:

    GRUB_CMDLINE_LINUX="ipv6.disable=1" 
  4. Save the file and run:

    sudo update-grub sudo reboot


Was this article helpful?