Minecraft Bedrock Port 19132: Fix “Unable to Connect to World”
Bedrock Dedicated Server (BDS) uses UDP, with 19132 as the default IPv4 port and 19133 as the default IPv6 port. Opening TCP 19132 does not expose the normal Bedrock game listener. Microsoft's official BDS guide documents both defaults.
Fast isolation test
- Confirm the BDS process starts without a bind error.
- Join from a Windows or mobile Bedrock client on the same local network.
- Join from a Windows or mobile client on a different internet connection.
- Only after those work should you diagnose a console path.
This separates server/firewall problems from console UI restrictions.
1. Confirm the configured UDP ports
Stop the server and inspect server.properties:
server-port=19132
server-portv6=19133
If another process already owns the chosen port, BDS will log a bind failure. Either stop the conflicting process or choose a different UDP port and give players that port. Do not add Java-only properties such as server-ip to a BDS configuration.
2. Allow UDP through the host firewall
On Ubuntu with UFW, allow only the ports you intend to serve:
sudo ufw allow 19132/udp
sudo ufw allow 19133/udp
On Windows, create an inbound rule for the BDS executable or the configured UDP port. If a hosting provider has a separate network firewall or security group, it must also allow that UDP traffic. A local firewall rule cannot override a provider-level block.
3. Forward the port when self-hosting
For a home server, forward external UDP 19132 to UDP 19132 on the machine's stable local address. Test from outside the home network; joining the public address from inside can fail on routers without NAT loopback even when external players can connect.
If the router's public address differs from the address shown by an external IP check, the connection may be behind carrier-grade NAT. In that case normal inbound forwarding may be unavailable; ask the ISP for a public address, use a suitable tunnel that supports UDP, or move the server to a public host.
4. Match the Bedrock version
Update BDS and the client to compatible current versions. A reachable UDP port cannot translate an old server protocol into a new client protocol. If the server works until an add-on is enabled, restore the pre-change backup and test the packs one at a time using the Bedrock add-on installation guide.
5. Do not change movement authority to fix routing
Settings related to server-authoritative movement affect gameplay validation. They do not open UDP, repair NAT, or make a console discover a custom address. Keep gameplay settings at documented defaults while diagnosing connectivity so that one change does not create a second problem.
Console custom-server limitation
Windows and mobile Bedrock clients expose a custom-server address flow. Xbox, PlayStation, and Nintendo Switch commonly expose Realms and featured servers but not a reliable native custom-IP field. A missing “Add Server” button on console is therefore not proof of a firewall error and usually cannot be fixed by changing Microsoft family permissions.
Some communities use a LAN discovery bridge, friend-bot, or DNS-based workaround. These are unofficial, platform-sensitive, and may stop working after a game or console update. Minecraft's own overview advertises joining custom servers from mobile and PC, while Aternos documents a separate console bridge process. For the most reliable native console experience, use Realms or a featured server.
Symptom checklist
| Symptom | Likely area | Next check |
|---|---|---|
| BDS logs a bind error | Port conflict or permissions | Find the process using the UDP port or choose another port. |
| LAN works, internet does not | Router forwarding, provider firewall, CGNAT, or wrong public address | Test from cellular data and compare the router WAN address. |
| Windows/mobile works, console cannot add the address | Console client limitation | Use Realms/featured servers or evaluate an unofficial bridge. |
| No client works after an update | Version mismatch or failed BDS update | Read the startup log and confirm the current binary. |
| Only one world fails | World or add-on issue | Start a blank world, then restore and test packs individually. |
Related Bedrock guides
- Install behavior and resource packs
- Minecraft cross-platform and console options
- Compare BDS hosts, Realms, Aternos, and self-hosting
Host a Minecraft Bedrock server with Supercraft if you want a managed public BDS endpoint, backups, and file access.