Rankings
Search
Advanced search Ctrl + K to open search

How to create an ARK Survival Ascended server

This guide walks you through creating your dedicated ARK Survival Ascended server step by step: SteamCMD installation, rate configuration, crossplay and CurseForge mods. Up to date as of July 2026.

Complete guide
Crossplay
CurseForge mods

1. Why create an ARK Survival Ascended server?

Running your own ARK Survival Ascended server lets you:

  • Play in a persistent 24/7 world, free of the tether distance that limits non-dedicated sessions.
  • Set your own rates: experience, harvesting, taming, breeding.
  • Choose your rules (PvP, PvE or PvX) and your CurseForge mods.
  • Bring PC, Xbox Series and PS5 players together on one server thanks to crossplay.

With nine maps available in early 2026, including Ragnarok, Valguero and the Lost Colony expansion, ARK Survival Ascended has never offered so much content to host. A well-tuned private server remains the best way to enjoy the game as a community.

2. Essential technical requirements

The ARK Survival Ascended server is demanding, especially on memory. Make sure your machine meets these requirements:

  • RAM : 16 GB minimum (the server uses 8 to 14 GB depending on the map), 32 GB recommended with mods and many players
  • CPU : 4 fast cores minimum, 8 cores recommended for a busy server
  • System : 64-bit Windows: there is no native Linux server (hosting providers use Wine/Proton)
  • Connection : Stable upload speed; the server communicates over UDP on port 7777
  • Hosting : Local PC for testing, dedicated server or specialised host for a 24/7 server
Tip : Allow about 30 GB of SSD/NVMe disk space: the installation weighs around ten GB, plus backups and mods.

3. Non-dedicated session or dedicated server?

Non-dedicated session (from the game)

Hosted directly from your own game. Simple, but your friends are limited by the tether distance that stops them from moving away from the host, and the world stops when you leave.

Dedicated server

A true persistent server, with no tether, available 24/7, with custom rates, mods and crossplay. That is what this guide covers.

Good to know : The dedicated server tool is free: it downloads through SteamCMD with an anonymous login, without even owning the game. Only your players need to own ARK Survival Ascended.

4. Installing the server via SteamCMD

The ARK Survival Ascended dedicated server (Steam app 2430930) installs with SteamCMD, Steam's command-line tool:

  1. Install SteamCMD (download it from the Valve website)
  2. Run the download command below (around ten GB)
SteamCMD
steamcmd +force_install_dir C:\asa-server +login anonymous +app_update 2430930 validate +quit
Info : The server executable then sits in ShooterGame\Binaries\Win64. Running this same command again later will update the server.

5. First server launch

The server launches from the command line, with the map and session parameters. Example for The Island:

PowerShell (ShooterGame\Binaries\Win64)
.\ArkAscendedServer.exe "TheIsland_WP?listen?SessionName=MyServer?ServerAdminPassword=AdminPassword" -port=7777 -WinLiveMaxPlayers=30
Parameters to know
  • TheIsland_WP - The map to load: TheIsland_WP, Ragnarok_WP, TheCenter_WP, ScorchedEarth_WP...
  • -port=7777 - The UDP listening port (7777 by default)
  • -WinLiveMaxPlayers - The maximum number of players (replaces the old MaxPlayers)
Info : The ServerAdminPassword parameter must stay last in the "?" chain. The first launch is long (shader compilation) and generates the ShooterGame/Saved/ folder tree: let it finish before configuring.

6. Configuring GameUserSettings.ini

The main configuration lives in GameUserSettings.ini, generated after the first launch. Rates and advanced options are set in the [ServerSettings] section:

File location:

Windows
ShooterGame\Saved\Config\WindowsServer\GameUserSettings.ini
  • SessionName - Server name shown in the session browser
  • ServerPassword - Access password (leave empty for a public server)
  • ServerAdminPassword - Administrator password, required for admin commands
  • XPMultiplier - Experience multiplier (1.0 = official)
  • TamingSpeedMultiplier - Dinosaur taming speed
  • HarvestAmountMultiplier - Amount of resources harvested
GameUserSettings.ini
[ServerSettings]
ServerPassword=
ServerAdminPassword=AdminPassword
XPMultiplier=2.0
TamingSpeedMultiplier=3.0
HarvestAmountMultiplier=2.0

[SessionSettings]
SessionName=MyServer
Warning : Breeding and mating multipliers are set in Game.ini, in the same folder. Every change requires a server restart.

7. Enabling crossplay (PC, Xbox, PS5)

ARK Survival Ascended supports full crossplay between PC, Xbox Series and PlayStation 5. To open your server to every platform:

1

Add the -ServerPlatform option to your launch command:

Full example
-ServerPlatform=ALL
2

Keep BattlEye enabled: console players cannot join a server launched with -NoBattlEye.

Warning : You can restrict platforms by listing them: -ServerPlatform=PC+XSX for PC and Xbox only, for example. ALL accepts them all.

8. Network: port, firewall and forwarding

ARK Survival Ascended communicates over UDP on port 7777 by default. For your server to be reachable from the Internet, this port must be open.

Ports to open
  • UDP 7777 (default, can be changed via -port)
  • Optional port: TCP 27020 for RCON, only if you enable it; the old ARK Survival Evolved QueryPort is no longer used
Firewall rule examples
Windows Defender:
PowerShell (Admin)
New-NetFirewallRule -DisplayName "ARK SA Server" -Direction Inbound -Protocol UDP -LocalPort 7777 -Action Allow
Linux UFW:
Terminal
sudo ufw allow 7777/udp
Linux iptables:
Terminal
sudo iptables -A INPUT -p udp --dport 7777 -j ACCEPT
Router : Behind a home router, add a forwarding rule for UDP port 7777 to the machine's local IP. With an ARK hosting provider, the port is already open.

9. Administration: commands, mods and backups

In game, open the console and authenticate with your administrator password to unlock the commands:

In-game console
enablecheats AdminPassword
Essential commands
  • cheat SaveWorld - Forces an immediate world save
  • cheat Broadcast - Broadcasts a message to all players
  • cheat KickPlayer / cheat BanPlayer - Kicks or bans a player
  • cheat DestroyWildDinos - Resets wild creatures (useful after adding a spawn mod)
Installing CurseForge mods

Add the -mods= option followed by the CurseForge IDs, separated by commas: the server downloads the mods automatically, and your players get them when they connect.

Full example
-mods=123456,789012
  • Backups: regularly copy the ShooterGame/Saved/ folder (world, players, configuration) off the machine. Automate it: manual backups always end up forgotten.
  • Updates: stop the server, then run the SteamCMD installation command again. Client and server must be on the same version.

10. Performance optimization

  • Watch RAM first: it is the main limit of an ARK Survival Ascended server. Keep headroom before adding a map, mods or players.
  • Schedule a daily restart with a save: memory usage grows over long sessions.
  • Limit the number of mods and keep an eye on structures and tamed creatures: they are the main load on a busy server.
  • Host on SSD/NVMe: world loading and saving times depend on it directly.

11. Quick FAQ

Yes. The server tool (Steam app 2430930) downloads for free through SteamCMD with an anonymous login, without owning the game. Your players, however, need to own ARK Survival Ascended to connect.

16 GB minimum: the server uses 8 to 14 GB depending on the map. With mods and many players, 32 GB gives you real headroom.

There is no native Linux server: the tool is provided for Windows only. On Linux it runs through Wine/Proton, a common solution among hosting providers but more technical for self-hosting.

Yes: launch the server with -ServerPlatform=ALL and keep BattlEye enabled. Xbox Series and PS5 players will then be able to join your server alongside PC players.

Through CurseForge, the official platform: add -mods= followed by the mod IDs to the launch command. The server downloads them automatically and players get them when they connect.

Is your ARK Survival Ascended server ready?

List your server on Top-Games to gain visibility and welcome your first players. You can also browse the community's best ARK Survival Ascended servers for inspiration.

12. Conclusion

Creating an ARK Survival Ascended server in 2026 mostly requires a solid machine: SteamCMD, a well-tuned GameUserSettings.ini, UDP port 7777 open, crossplay enabled and your favourite CurseForge mods. The real work starts afterwards: balancing your rates and growing your community. Listing your server on Top-Games will help from your very first players.

Information

Server Steam app: 2430930
Protocol: UDP
Default port: 7777
Crossplay: PC, Xbox, PS5
Server platforms: Windows

Quick checklist

  1. Install SteamCMD
  2. Download the server (app 2430930)
  3. Configure GameUserSettings.ini
  4. Open UDP port 7777
  5. Enable crossplay (-ServerPlatform)
  6. Launch the server and list it

Need help?

Have a question about configuring your ARK Survival Ascended server? Our team is here to help.