Port 110 (POP3)
TCPPost Office Protocol v3 — POP3 listens on port 110 by default.
What is Port 110?
Port 110 is the default port for POP3 (Post Office Protocol version 3), a protocol used by email clients to retrieve messages from a mail server. POP3 downloads emails to the local device and typically removes them from the server.
POP3 on port 110 follows a simple download-and-delete model: the client connects, authenticates, downloads new messages, and optionally deletes them from the server. This makes it suitable for users who access email from a single device.
Port 110 POP3 transmits credentials and email content in plain text. For secure email retrieval, use POP3S on port 995 with TLS encryption. Many users now prefer IMAP (port 143) over POP3 as it supports multi-device synchronization and server-side message management.
Port 110 Security
POP3 on port 110 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 POP3 to the latest version to patch known vulnerabilities. Monitor port 110 for unauthorized access attempts and implement rate limiting where possible. Follow the principle of least privilege when configuring access permissions.
How to Check Port 110
To check if port 110 is open on a remote host, use nmap: 'nmap -p 110 hostname'. For a quick TCP connection test, use: 'telnet hostname 110' or 'nc -zv hostname 110'. On Windows PowerShell, use: 'Test-NetConnection -ComputerName hostname -Port 110'.
To check if port 110 is listening on your local machine, use: 'netstat -tlnp | grep 110' on Linux, or 'ss -tlnp | grep 110'. On Windows, use: 'netstat -an | findstr 110'. For a comprehensive scan, use: 'nmap -sV -p 110 hostname' to detect the service version running on the port.
Related Ports
Frequently Asked Questions
What is port 110 used for?
Port 110 is the default port for Post Office Protocol v3 (POP3). It is used for pop3 communication using the TCP protocol.
Is port 110 TCP or UDP?
Port 110 uses TCP. TCP is used because pop3 requires reliable, ordered data delivery.
Should port 110 be open?
Port 110 should only be open if you are actively running POP3. 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 110 is open?
Use 'nmap -p 110 hostname' to scan remotely, or 'netstat -tlnp | grep 110' to check locally on Linux. On Windows, use 'Test-NetConnection -Port 110 hostname' in PowerShell.
How do I secure port 110?
Secure port 110 by restricting access with firewall rules, using encryption (TLS/SSL) where supported, keeping POP3 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 →