TCPRegistered PortFirewall: Usually Closed
2083

cPanel (HTTPS)

What is Port 2083?

Port 2083 is the default HTTPS port for cPanel, providing encrypted access to the web hosting control panel. All cPanel access should use port 2083 instead of the unencrypted port 2082. When you navigate to https://yourdomain.com:2083, you access the cPanel interface over a TLS-encrypted connection, protecting your login credentials and session data. cPanel on HTTPS supports the same full range of hosting management features — file manager, email configuration, database management, domain management, and security settings. Most modern hosting providers automatically redirect cPanel access from port 2082 to 2083.

Common Uses

  • Secure web hosting control panel access
  • Encrypted management of hosting resources
  • Remote website administration
  • Hosting provider customer portal

Technical Details

Port Number2083
ProtocolTCP
CategoryRegistered
Service NamecPanel (HTTPS)
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 2083 (cPanel (HTTPS)) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Always use port 2083 over 2082 for cPanel. Enable two-factor authentication, set up IP-based access restrictions, and use cPHulk protection. Regularly audit cPanel user accounts and permissions. Ensure TLS certificates are valid and up to date. Monitor access logs for suspicious login attempts.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports