TCPRegistered PortFirewall: Usually Closed
9443

Alternative HTTPS

What is Port 9443?

Port 9443 is used as an HTTPS alternative by various enterprise applications and management interfaces. IBM WebSphere Application Server uses port 9443 for its HTTPS transport. VMware vRealize and other VMware products use this port. Some API gateways and service mesh components use 9443 for their TLS-encrypted interfaces. The port is commonly found in enterprise Java environments and cloud management platforms. It's also used by some Kubernetes-related services as an alternative webhook or API endpoint.

Common Uses

  • IBM WebSphere HTTPS transport
  • VMware product management
  • API gateway HTTPS endpoints
  • Kubernetes webhook servers

Technical Details

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

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

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Standard HTTPS security practices apply. Use current TLS versions and strong cipher suites. Restrict access to authorized users and systems.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports