← Back to all network ports
TCP
Unknown

8443 HTTPS Alternate

Port 8443 is a common TLS alternative for admin consoles, sidecar apps, and internal web tools.

Security Context

Port 8443 is context-dependent. Its risk depends on the daemon behind it, whether the traffic is encrypted, and how tightly the listener is scoped to trusted networks.

Nmap Check

Use a version probe first so you confirm whether the expected service is really what is listening on this port.

nmap -sV -p 8443 <host>

Firewall Commands

UFW
sudo ufw allow 8443/tcp
iptables
sudo iptables -A INPUT -p tcp --dport 8443 -j ACCEPT

Related TCP Ports