TCPRegistered PortFirewall: Usually Closed
8500

HashiCorp Consul HTTP

What is Port 8500?

Port 8500 is the default HTTP API port for HashiCorp Consul's client interface. Consul provides a REST API on this port for service registration, health checking, key/value storage, DNS interface configuration, and cluster management. The Consul web UI is also accessible on this port, providing a visual interface for viewing registered services, node health, key/value data, and ACL management. Applications interact with Consul primarily through this HTTP API — registering services, discovering other services, reading configuration data, and acquiring distributed locks. Consul's HTTP API is comprehensive, offering endpoints for all Consul functionality.

Common Uses

  • Consul service registration and discovery API
  • Consul web UI for cluster management
  • Key/value configuration storage
  • Health check endpoint management

Technical Details

Port Number8500
ProtocolTCP
CategoryRegistered
Service NameHashiCorp Consul HTTP
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 8500 (HashiCorp Consul HTTP) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Enable Consul ACLs to restrict API access. Use HTTPS (port 8501) for encrypted API communication. The Consul UI should be protected with authentication. Restrict access to the HTTP API from authorized services only. Enable audit logging for API operations.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports