TCPRegistered PortFirewall: Usually Closed
2082

cPanel (HTTP)

What is Port 2082?

Port 2082 is the default HTTP port for cPanel, the most widely used web hosting control panel. cPanel provides a graphical interface for website owners to manage their hosting accounts, including email, databases, file management, DNS, and SSL certificates. When accessing cPanel via port 2082, the connection is unencrypted. cPanel is installed on millions of web servers worldwide, particularly in shared hosting environments. The control panel allows users to perform hosting tasks without command-line knowledge — creating email accounts, managing MySQL databases, installing applications via Softaculous, and configuring domain settings. Web hosting providers like Bluehost, HostGator, and GoDaddy use cPanel extensively.

Common Uses

  • Web hosting account management
  • Email account creation and management
  • Database administration for hosted websites
  • SSL certificate installation and management

Technical Details

Port Number2082
ProtocolTCP
CategoryRegistered
Service NamecPanel (HTTP)
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 2082 (cPanel (HTTP)) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Port 2082 should never be used in production as it's unencrypted. Always use port 2083 (HTTPS) for cPanel access. Brute force attacks against cPanel login are common — implement cPHulk brute force protection, two-factor authentication, and IP-based access restrictions. Keep cPanel updated, as vulnerabilities are regularly discovered and patched.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports