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
Copy-paste commands to check port 9443 (Alternative HTTPS) from your terminal
Test connectivity
nc -zv example.com 9443
curl -v --max-time 5 http://example.com:9443/
telnet example.com 9443
nmap -p 9443 -sV example.com
(echo > /dev/tcp/example.com/9443) 2>/dev/null && echo "open" || echo "closed"
Open port in firewall
sudo ufw allow 9443/tcp
sudo iptables -A INPUT -p tcp --dport 9443 -j ACCEPT
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