Port 1723 (PPTP)
TCPPoint-to-Point Tunneling Protocol — PPTP listens on port 1723 by default.
What is Port 1723?
Port 1723 is used by PPTP (Point-to-Point Tunneling Protocol), one of the earliest VPN protocols developed by Microsoft. PPTP establishes a control channel on TCP port 1723 and uses GRE (Generic Routing Encapsulation) for data tunneling.
PPTP on port 1723 was widely adopted due to its built-in support in Windows operating systems and ease of configuration. The protocol encapsulates PPP frames within GRE packets, providing a tunnel for secure communication. PPTP supports password-based authentication via MS-CHAPv2.
PPTP's encryption (MPPE) has been cryptographically broken, and MS-CHAPv2 can be cracked in under 24 hours. PPTP should not be used for any security-sensitive applications. Modern alternatives include WireGuard, IKEv2/IPsec, and OpenVPN.
Port 1723 Security
PPTP on port 1723 should be secured with appropriate access controls and monitoring. Ensure the service is only accessible from trusted networks by configuring firewall rules to restrict access. If the protocol supports encryption, enable TLS/SSL to protect data in transit.
Regularly update PPTP to the latest version to patch known vulnerabilities. Monitor port 1723 for unauthorized access attempts and implement rate limiting where possible. Follow the principle of least privilege when configuring access permissions.
How to Check Port 1723
To check if port 1723 is open on a remote host, use nmap: 'nmap -p 1723 hostname'. For a quick TCP connection test, use: 'telnet hostname 1723' or 'nc -zv hostname 1723'. On Windows PowerShell, use: 'Test-NetConnection -ComputerName hostname -Port 1723'.
To check if port 1723 is listening on your local machine, use: 'netstat -tlnp | grep 1723' on Linux, or 'ss -tlnp | grep 1723'. On Windows, use: 'netstat -an | findstr 1723'. For a comprehensive scan, use: 'nmap -sV -p 1723 hostname' to detect the service version running on the port.
Related Ports
Frequently Asked Questions
What is port 1723 used for?
Port 1723 is the default port for Point-to-Point Tunneling Protocol (PPTP). It is used for pptp communication using the TCP protocol.
Is port 1723 TCP or UDP?
Port 1723 uses TCP. TCP is used because pptp requires reliable, ordered data delivery.
Should port 1723 be open?
Port 1723 should only be open if you are actively running PPTP. Close unused ports to reduce your attack surface. If needed, restrict access to trusted IP addresses using firewall rules.
How do I check if port 1723 is open?
Use 'nmap -p 1723 hostname' to scan remotely, or 'netstat -tlnp | grep 1723' to check locally on Linux. On Windows, use 'Test-NetConnection -Port 1723 hostname' in PowerShell.
How do I secure port 1723?
Secure port 1723 by restricting access with firewall rules, using encryption (TLS/SSL) where supported, keeping PPTP updated, using strong authentication, and monitoring for unauthorized access attempts.
🔍 Check Your IP Address
While you're here, find out your public IP address, location, and ISP details instantly.
Check My IP →