Connecting

If you cannot connect to the servers, check if you have some anti virus or firewall blocking the connection.

Bots: 0 Allocated bots

Feed Key c

Split Key x

Freeze Key v

Follow Mod - key: z

Bot control

Feed Key c

Split Key x

Freeze youself Key v

You are the new champion !

Your score 0

Enter a victory message that you whould like all other players to see

Unraid Reset Network Settings Install ⟶

To reset your Unraid network settings to the default state, you must delete the configuration file from your boot flash drive. This forces Unraid to regenerate a standard DHCP configuration upon the next boot. The Direct Fix

  1. Shutdown the Unraid server (hold the power button or pull the plug if it is truly frozen/unresponsive).
  2. Remove the USB Flash Drive and plug it into your Windows/Mac computer.
  3. Open the USB drive in your file explorer.
  4. Locate the file named config (inside the root of the drive, specifically look for config/network.cfg or the folder config).
  5. Open the file named network.cfg with a text editor (like Notepad).
  6. Look for the following lines:
    IPADDR="192.168.1.50"
    NETMASK="255.255.255.0"
    GATEWAY="192.168.1.1"
    
  7. Reset Method A (Wipe): Delete these lines or replace the content with default DHCP settings: Change it to look like this (or just delete the specific IP lines to force DHCP):
    # Network settings
    USE_DHCP="yes"
    IPADDR=""
    NETMASK=""
    GATEWAY=""
    
  8. Save the file and safely eject the USB drive.
  9. Plug the drive back into the Unraid server and power it on. It will now boot using DHCP and grab an automatic IP from your router.
  • Check current kernel module:
    lsmod | grep <module_name>
    
  • If module not loaded, try loading it:
    modprobe <module_name>
    
  • If the driver is missing or incompatible (common after kernel updates), install the appropriate driver plugin or package:

    To reset your Unraid network settings to the installation defaults (DHCP), you need to remove the configuration files from your boot flash drive. Unraid will automatically regenerate these files with default settings upon the next boot. Method 1: Using Another Computer (Easiest)

    : If possible, shut down your server via the GUI. If the GUI is inaccessible, a brief press of the power button usually triggers a clean shutdown. Avoid pulling the plug to prevent data corruption. Access the Flash Drive

    ip addr add 192.168.1.50/24 dev eth0
    ip link set eth0 up
    ip route add default via 192.168.1.1
    

    Unraid maps specific MAC addresses to interface names (eth0, eth1, etc.). If your hardware changes, Unraid might see the new card as eth1 but the config file is trying to set an IP on eth0 (which doesn't exist).