All ports
Port685/TCP
mdc-portmapperPort
685
Protocol
TCP
Category
Well-Known
Service
mdc-portmapper
What is port 685?
Port 685/TCP is a Well-Known port, assigned by IANA for widely recognized services. It is associated with the mdc-portmapper service.
MDC Port Mapper
Useful commands
nmapnmap -p 685 -sV example.comnetcatnc -zv example.com 685curlcurl -v http://example.com:685/telnettelnet example.com 685bash(echo > /dev/tcp/example.com/685) 2>/dev/nullFirewall commands
UFWAllow
sudo ufw allow 685/tcpDeny
sudo ufw deny 685/tcpiptablesAllow
sudo iptables -A INPUT -p tcp --dport 685 -j ACCEPTDeny
sudo iptables -D INPUT -p tcp --dport 685 -j ACCEPTfirewalldAllow
sudo firewall-cmd --permanent --add-port=685/tcpWindowsAllow
netsh advfirewall firewall add rule name="Open Port 685" dir=in action=allow protocol=TCP localport=685Security Risks
- Unauthorized access to the service
- Data exposure if the service is unauthenticated
- Outdated versions with vulnerabilities
- Incorrect service configuration
Frequently Asked Questions
What service runs on port 685/TCP?
Port 685/TCP is associated with the mdc-portmapper service. MDC Port Mapper
Is it safe to expose port 685 to the Internet?
It depends on the service and configuration. Port 685 (mdc-portmapper) is a Well-Known port. If you need to expose it, keep the service updated, use strong authentication, and configure a firewall. It's always recommended to restrict access by IP when possible.
How do I check if port 685 is open?
You can use nmap: `nmap -p 685 -sV example.com`, netcat: `nc -zv example.com 685`, or the bash command: `(echo > /dev/tcp/example.com/685) 2>/dev/null && echo "Open" || echo "Closed"`.
How do I open or close port 685 on my firewall?
On Linux with UFW: `sudo ufw allow 685/tcp` (open) or `sudo ufw deny 685/tcp` (close). With iptables: `sudo iptables -A INPUT -p tcp --dport 685 -j ACCEPT`. On Windows: `netsh advfirewall firewall add rule name="Open Port 685" dir=in action=allow protocol=TCP localport=685`.
What applications and services use port 685?
Port 685/TCP is used by the mdc-portmapper service. Specific uses depend on the software and configuration. Check our related tools section for more information.