TCPRegistered PortFirewall: Usually Closed
1723

PPTP

What is Port 1723?

Port 1723 is used by the Point-to-Point Tunneling Protocol (PPTP), one of the earliest VPN protocols developed by Microsoft in the 1990s. PPTP creates a VPN tunnel by encapsulating PPP frames within GRE (Generic Routing Encapsulation) packets, using port 1723 for the control channel. PPTP was built into every version of Windows since Windows 95 and was the most common VPN protocol for years due to its ease of setup. However, PPTP's encryption (MPPE based on MS-CHAPv2) has been completely broken by security researchers. Tools exist to crack PPTP authentication in minutes. Despite being deprecated for security use, PPTP is still encountered in legacy systems and environments where security is not the primary concern.

Common Uses

  • Legacy VPN connections in older systems
  • Simple VPN setup where security is not critical
  • Backward compatibility with Windows NT/2000 era systems
  • Testing and educational environments

Technical Details

Port Number1723
ProtocolTCP
CategoryRegistered
Service NamePPTP
Default FirewallUsually Closed
Port Test Commands

Copy-paste commands to check port 1723 (PPTP) from your terminal

Test connectivity

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

Open port in firewall

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

Security Considerations

!

PPTP is cryptographically broken and should never be used for securing sensitive data. MS-CHAPv2 authentication can be cracked to a single DES key, and the MPPE encryption it provides is therefore compromised. Migrate all PPTP VPNs to IKEv2/IPSec, OpenVPN, or WireGuard. If PPTP must remain temporarily, limit access and plan for rapid migration.

Popular Ports Reference

The most commonly used and referenced network ports

Related Ports