📚 Quick Navigation

Overview 🔌 Ports Installation Configuration ⚙️ Startup Parameters Mods 🔧 Troubleshooting Performance Resources

DayZ Standalone Server Guide

Quick Information

DayZ 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.

🔌 Server Ports

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

Firewall Configuration

UFW (Ubuntu/Debian)

# DayZ game ports
sudo ufw allow 2302:2305/udp comment 'DayZ Server'
# RCON port (if using)
sudo ufw allow 27016/tcp comment 'DayZ RCON'

FirewallD (CentOS/RHEL)

sudo firewall-cmd --permanent --add-port=2302-2305/udp
sudo firewall-cmd --permanent --add-port=27016/tcp
sudo firewall-cmd --reload

Windows Firewall

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

⚙️ Startup Parameters

Windows Startup

DayZServer_x64.exe -config=serverDZ.cfg -port=2302 -profiles=SC -dologs -adminlog -netlog -freezecheck -mod=@CF;@VPPAdminTools

Linux Startup

./DayZServer -config=serverDZ.cfg -port=2302 -profiles=SC -dologs -adminlog -netlog -freezecheck -mod=@CF;@VPPAdminTools

Key Parameters

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

Configuration Files

serverDZ.cfg

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;

Mods & Workshop

Popular DayZ Mods

Installing Mods from Workshop

  1. Subscribe to mod on Steam Workshop
  2. Copy from workshop folder to server:
    steamapps\workshop\content\221100\{modid}
  3. Rename folder to @ModName
  4. Add to startup: -mod=@CF;@VPPAdminTools
  5. Copy required .bikey files to keys/ folder

Mod Load Order

🔧 Troubleshooting

Server Won't Start

Players Can't Connect

Persistence Issues

Mod Conflicts

Performance Optimization

Server Configuration

# Startup parameters for performance
-cpuCount=4 -limitFPS=60 -dologs -freezecheck

# In serverDZ.cfg
serverTimeAcceleration = 1;         // Reduce if performance issues
guaranteedUpdates = 1;
loginQueueConcurrentPlayers = 3;

Hardware Recommendations

Popular server modifications compatible with DayZ Standalone:

📚 Resources

Important Notes


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.