1 of 1 Servers
DiscordWebsiteVPS Dashboard
1 of 1 Servers
1 of 1 Servers
  • Welcome to 1 of 1 Servers
  • 1 of 1 Knowledge Base
    • Customer Guides
      • Adding Developer Access
      • Connect to VPS via Visual Studio Code
      • Dedicated Server vs VPS
      • Product Addons
      • Server Transfers Guide for FiveM
      • What is a CDN | Proxy Cache
    • Networking Guides
      • Basic Network Troubleshoot
      • CloudFlare Proxy
        • Setup
        • DNS Settings
      • Disable UDP for RDP
      • How to run Wireshark
      • How to run Windows MTR
      • Opening your Windows Ports
      • Remote Desktop Connection
      • Speed Tests
      • SQL Issues
    • Troubleshooting Error Codes
      • Remote Desktop Connection Errors
      • VPS Server Errors
  • 1OF1 Set Up Guides
    • API
      • CDN API
      • DDoS Shield API
    • CDN | Proxy Cache
      • CDN | Proxy Cache Setup Guide
    • Dedicated Servers
      • Dedicated Server Setup Guide
        • After Purchase
        • Link Your Discord
        • Manage Your Dedicated Server
    • Graffana Logging
  • VPS Servers
    • VPS Setup Guide
      • After Purchase
      • Link Your Discord
      • Deploy your Operating System
      • Getting Your VPS Login Details
      • Remote Desktop & SSH Guides
        • Logging into Remote Desktop
        • Logging into VPS with Linux OS
          • Creating SSH Key for VPS Install
    • VPS Upgrade or Downgrade
  • 1OF1 Dashboards
    • Dedicated Dashboard
      • Client Area
      • Sever Management and Information
      • My Account
      • Logs
    • DDoS Dashboard
      • IP Management
      • Creating Rules
        • Creating Presets
      • Creating a Webhook
    • Game Server Dashboard
      • Login Creation & Linking Discord
      • System
        • Console
        • Server Details
        • SFTP Details
        • Audit Log
      • Management
        • File Manager
        • Database
        • Backups
        • Subusers
        • Allocations
      • Configuration
        • Startup Parameters
        • Schedules
        • Advanced
      • Tools
        • Modpack Manager
        • Plugin Manager
    • VPS Dashboard
      • Customer Area
      • Server Management
      • Media
      • Password Reset & VNC
      • Network
      • Storage
      • Backups
      • Sharing
  • 1OF1 Game Guides
    • FiveM
      • Car Pack Installation
      • Clothing Installation
      • Common Errors Troubleshoot
        • CURL 56 ERROR
        • CURL 28 ERROR
        • "Fetching server variables..."
        • "Downloading server manifest..."
        • “...are you allowing UDP Packets?”
        • Thread Hitch Warnings
      • External pma-voice server
      • External Zumble/Rust Mumble Server
      • FiveM Convars Definitions
        • FiveM Cities | Opinion Article
          • Population
          • Donations
          • Developing
          • Staff Members
          • Departments
        • MLO Installation
        • Two Servers in One
      • SQL Backup
    • Game Server Guides
  • 1OF1 IN THE COMMUNITY
    • Giveaways
    • 1OF1 Merch
    • Donations
    • Fivemerr
    • Project Sloth
    • Guilda Bot
    • NextV Codes
  • 1OF1 Discounts & Partners
    • Project Sloth
    • Snipe Scripts
    • UZStore
  • Kreativ Signs
Powered by GitBook
On this page
  • What are UDP Packets?
  • Common Causes & Fixes
  1. 1OF1 Game Guides
  2. FiveM
  3. Common Errors Troubleshoot

“...are you allowing UDP Packets?”

Allowing UDP packets (traffic) to flow to your server.

Previous"Downloading server manifest..."NextThread Hitch Warnings

Last updated 1 month ago

What are UDP Packets?

The error “...are you allowing UDP packets to flow?” in FiveM usually pops up when the client cannot communicate with the server via UDP, which is critical for FiveM to establish and maintain a connection.

The error is basically asking: "Is UDP traffic on port 30120 (or your server port) allowed through both your server and your network?"

Without UDP, FiveM cannot complete the connection, even if the server is technically online.

Common Causes & Fixes

Port Forwarding & Firewall

Port 30120 (UDP) Not Open or Forwarded

See how to properly open your FiveM server ports here:

Firewall Blocking UDP Packets

Windows Firewall or iptables is rejecting UDP traffic.

  • (Windows) Open PowerShell as admin and run:

New-NetFirewallRule -DisplayName "FiveM UDP" -Direction Inbound -Protocol UDP -LocalPort 30120 -Action Allow
  • (Linux) Check with:

sudo ufw allow 30120/udp
Hosting Provider-Level Restrictions
  • Create a ticket via your client portal and verify that we do not have preset rules on your IP.

Internet or Routing Issues

The client (player) can’t reach the server within the timeout period.
  • Restart router/modem.

  • Test with a different network or VPN.

  • Try connecting using direct IP (F8 console → connect <IP>:30120).

ISP routing delays, packet loss, blocking packets.
  • Check for packet loss using ping or tracert or MTR to the server IP.

FiveM Sever Misconfiguration

Incorrect endpoint_add_udp in server.cfg

endpoint_add_udp or endpoint_add_tcp in server.cfg is misconfigured or commented out.

  • Add or correct this line in server.cfg:

endpoint_add_udp "0.0.0.0:30120"
endpoint_add_tcp "0.0.0.0:30120"
  • Restart the FiveM server after changing.

See how to do these here: .

Opening your Windows Ports
Basic Network Troubleshoot