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
Copy-paste commands to check port 1433 (Microsoft SQL Server) from your terminal
Test connectivity
nc -zv example.com 1433
curl -v --max-time 5 http://example.com:1433/
telnet example.com 1433
nmap -p 1433 -sV example.com
(echo > /dev/tcp/example.com/1433) 2>/dev/null && echo "open" || echo "closed"
Open port in firewall
sudo ufw allow 1433/tcp
sudo iptables -A INPUT -p tcp --dport 1433 -j ACCEPT
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