TCPRegistered PortFirewall: Usually Closed
7443

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

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

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

Test connectivity

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

Open port in firewall

UFW (Ubuntu / Debian)
sudo ufw allow 7443/tcp
iptables
sudo iptables -A INPUT -p tcp --dport 7443 -j ACCEPT
firewalld (RHEL / CentOS)
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

Related Ports