Alternative HTTPS
What is Port 7443?
Port 7443 is commonly used as an alternative HTTPS port for various web management interfaces and applications. It's frequently seen in enterprise environments where multiple HTTPS services run on the same server. Oracle WebLogic Server uses port 7443 for its admin console HTTPS access. Some VPN and security appliances use this port for their management interfaces. The port provides the same TLS-encrypted HTTP functionality as port 443 but on a non-standard port, often used to separate public-facing HTTPS traffic from internal management traffic.
Common Uses
- Oracle WebLogic admin console
- Enterprise management interfaces
- Alternative HTTPS endpoints
- Security appliance management
Technical Details
Copy-paste commands to check port 7443 (Alternative HTTPS) from your terminal
Test connectivity
nc -zv example.com 7443
curl -v --max-time 5 http://example.com:7443/
telnet example.com 7443
nmap -p 7443 -sV example.com
(echo > /dev/tcp/example.com/7443) 2>/dev/null && echo "open" || echo "closed"
Open port in firewall
sudo ufw allow 7443/tcp
sudo iptables -A INPUT -p tcp --dport 7443 -j ACCEPT
sudo firewall-cmd --permanent --add-port=7443/tcp && sudo firewall-cmd --reload
Security Considerations
Apply the same TLS security standards as port 443. Use strong cipher suites and current TLS versions. Restrict access to authorized administrators. Implement multi-factor authentication for management interfaces.
Popular Ports Reference
The most commonly used and referenced network ports