TCPRegistered PortFirewall: Usually Closed
4443

Alternative HTTPS

What is Port 4443?

Port 4443 is commonly used as an alternative HTTPS port when the standard port 443 is unavailable or when running multiple TLS-encrypted services on the same host. Many applications and services use port 4443 as their default HTTPS port, including some VPN solutions, web application firewalls, management interfaces, and development environments. Docker containers, reverse proxies, and cloud services frequently map internal HTTPS services to port 4443 to avoid conflicts with the primary web server on port 443. Some Kubernetes ingress controllers and service meshes use port 4443 for their internal HTTPS endpoints. The port is also commonly used by security appliances and IoT device management interfaces.

Common Uses

  • Alternative HTTPS for secondary web services
  • Management interfaces for network appliances
  • Kubernetes internal HTTPS endpoints
  • Development HTTPS testing

Technical Details

Port Number4443
ProtocolTCP
CategoryRegistered
Service NameAlternative HTTPS
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 4443 (Alternative HTTPS) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Apply the same TLS security practices as port 443 — strong cipher suites, TLS 1.2+, valid certificates, and HSTS. Ensure the service running on 4443 is intended to be accessible. If it's a management interface, restrict access via firewall rules and implement strong authentication.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports