TCPRegistered PortFirewall: Usually Closed
25565

Minecraft Server

What is Port 25565?

Port 25565 is the default port for Minecraft Java Edition game servers, one of the best-selling video games in history with over 300 million copies sold. Minecraft servers allow multiplayer gameplay where players can build, explore, and survive together in generated worlds. The Minecraft server software listens on port 25565 for client connections, handling game state, player interactions, and world persistence. Both the official Mojang server software and popular alternatives like Paper, Spigot, and Fabric use this port. Minecraft servers range from small private servers for friends to massive commercial networks like Hypixel hosting tens of thousands of concurrent players. The Minecraft modding community has built extensive plugins and modifications that extend server functionality.

Common Uses

  • Minecraft Java Edition multiplayer servers
  • Community and commercial game servers
  • Modded Minecraft server hosting
  • Educational Minecraft deployments

Technical Details

Port Number25565
ProtocolTCP
CategoryRegistered
Service NameMinecraft Server
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 25565 (Minecraft Server) from your terminal

Test connectivity

Netcat (nc)Check if TCP port is reachable
nc -zv example.com 25565
curl (HTTP)Test HTTP response on this port
curl -v --max-time 5 http://example.com:25565/
TelnetBasic TCP port connectivity check
telnet example.com 25565
nmapScan port 25565 with service detection
nmap -p 25565 -sV example.com
Bash /dev/tcpPure bash TCP check (no extra tools needed)
(echo > /dev/tcp/example.com/25565) 2>/dev/null && echo "open" || echo "closed"

Open port in firewall

UFW (Ubuntu / Debian)
sudo ufw allow 25565/tcp
iptables
sudo iptables -A INPUT -p tcp --dport 25565 -j ACCEPT
firewalld (RHEL / CentOS)
sudo firewall-cmd --permanent --add-port=25565/tcp && sudo firewall-cmd --reload

Security Considerations

!

Minecraft servers can be targets for DDoS attacks, griefing, and exploitation. Use whitelist mode for private servers. Install anti-cheat plugins. Keep server software updated to patch vulnerabilities. Use a DDoS-protected hosting provider for public servers. Don't run Minecraft servers on the same machine as critical services. Consider BungeeCord/Velocity for network-level protection.

Popular Ports Reference

The most commonly used and referenced network ports