2302 UDPDayZ is an unforgiving open-world zombie survival game where players must scavenge for supplies, build bases, and survive against infected and other players. This standalone version is completely separate from the original DayZ Mod.
| Port | Protocol | Purpose | Status |
|---|---|---|---|
2302 |
UDP | Game Port - Primary connection | REQUIRED |
2303 |
UDP | Steam Query Port - Server browser | REQUIRED |
2304 |
UDP | Steam Port - Steam connectivity | REQUIRED |
2305 |
UDP | VON (Voice Over Network) | Optional |
27016 |
TCP | RCON - Remote administration | Optional |
# DayZ game ports
sudo ufw allow 2302:2305/udp comment 'DayZ Server'
# RCON port (if using)
sudo ufw allow 27016/tcp comment 'DayZ RCON'
sudo firewall-cmd --permanent --add-port=2302-2305/udp
sudo firewall-cmd --permanent --add-port=27016/tcp
sudo firewall-cmd --reload
New-NetFirewallRule -DisplayName "DayZ Server UDP" -Direction Inbound -Protocol UDP -LocalPort 2302-2305 -Action Allow
New-NetFirewallRule -DisplayName "DayZ RCON TCP" -Direction Inbound -Protocol TCP -LocalPort 27016 -Action Allow
DayZServer_x64.exe -config=serverDZ.cfg -port=2302 -profiles=SC -dologs -adminlog -netlog -freezecheck -mod=@CF;@VPPAdminTools
./DayZServer -config=serverDZ.cfg -port=2302 -profiles=SC -dologs -adminlog -netlog -freezecheck -mod=@CF;@VPPAdminTools
| Parameter | Description | Example |
|---|---|---|
-config= |
Path to serverDZ.cfg | -config=serverDZ.cfg |
-port= |
Game port | -port=2302 |
-profiles= |
Profile folder path | -profiles=SC |
-dologs |
Enable logging | Flag (no value) |
-adminlog |
Enable admin logging | Flag (no value) |
-netlog |
Enable network logging | Flag (no value) |
-freezecheck |
Enable freeze detection | Flag (no value) |
-mod= |
Mods to load (semicolon separated) | -mod=@CF;@VPP |
-cpuCount= |
CPU cores to use | -cpuCount=4 |
-limitFPS= |
Limit server FPS | -limitFPS=60 |
hostname = "Your DayZ Server";
password = ""; // Join password
passwordAdmin = "adminpass"; // Admin password
maxPlayers = 60;
// Missions
Missions = {
DayZ = {
template = "dayzOffline.chernarusplus"; // or enoch, livonia, takistanplus, namalsk
};
};
// Performance
disableVoN = 0; // Voice chat enabled
vonCodecQuality = 20; // Voice quality
disable3rdPerson = 0; // 0=allow 3rd person
disableCrosshair = 0;
// Persistence
storeHouseStateDisabled = false; // Save building states
storageAutoFix = 1; // Auto-fix corrupted storage
// Time acceleration
serverTime = "SystemTime"; // Or specific time
serverTimeAcceleration = 2; // 2x time speed
serverNightTimeAcceleration = 4; // 4x night speed
// Weather
serverTimePersistent = 1; // Persistent time
guaranteedUpdates = 1;
loginQueueConcurrentPlayers = 5;
loginQueueMaxPlayers = 500;
instanceId = 1; // Server instance ID
// Logging
lightingConfig = 0;
respawnTime = 5;
steamapps\workshop\content\221100\{modid}@ModName-mod=@CF;@VPPAdminToolskeys/ foldernetstatstoreHouseStateDisabled = falsestorageAutoFix = 1storage_X/data/*.bin files to reset economyprofiles/ folderkeys/ folder# Startup parameters for performance
-cpuCount=4 -limitFPS=60 -dologs -freezecheck
# In serverDZ.cfg
serverTimeAcceleration = 1; // Reduce if performance issues
guaranteedUpdates = 1;
loginQueueConcurrentPlayers = 3;
Popular server modifications compatible with DayZ Standalone:
Documentation Version: 1.0 | Last Updated: November 10, 2025
Sources: Bohemia Interactive Wiki, DayZ Forums, LinuxGSM, r/dayzservers
For the original DayZ Mod, see Arma 2: OA + DayZ Mod Guide.