TCPRegistered PortFirewall: Usually Closed
1433

Microsoft SQL Server

What is Port 1433?

Port 1433 is the default port for Microsoft SQL Server database connections. SQL Server is one of the most widely used relational database management systems in enterprise environments, powering countless business applications, data warehouses, and web backends. Clients connect to SQL Server on port 1433 using the TDS (Tabular Data Stream) protocol to execute queries, manage databases, and perform administrative operations. SQL Server supports both Windows Authentication (integrated with Active Directory) and SQL Server Authentication (username/password). SQL Server Express, Standard, Enterprise, and Azure SQL Database all use this port by default. The SQL Server Browser service on port 1434/UDP helps clients discover named instances that may run on different ports.

Common Uses

  • Enterprise application database backends
  • Business intelligence and data warehousing
  • Web application data storage
  • ERP and CRM system databases (SAP, Dynamics)

Technical Details

Port Number1433
ProtocolTCP
CategoryRegistered
Service NameMicrosoft SQL Server
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 1433 (Microsoft SQL Server) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

Never expose SQL Server port 1433 directly to the internet — it is a prime target for brute force attacks and SQL injection. Use Windows Authentication instead of SQL Authentication. Disable the SA account or use a strong password. Enable TLS encryption for connections. Use firewall rules to restrict access to application servers only. Implement SQL Server audit logging.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports