All ports
Port369/UDP
rpc2portmapPort
369
Protocol
UDP
Category
Well-Known
Service
rpc2portmap
What is port 369?
Port 369/UDP is a Well-Known port, assigned by IANA for widely recognized services. It is associated with the rpc2portmap service.
rpc2portmap
Useful commands
nmapnmap -p 369 -sV example.comnetcatnc -zv example.com 369curlcurl -v http://example.com:369/telnettelnet example.com 369bash(echo > /dev/udp/example.com/369) 2>/dev/nullFirewall commands
UFWAllow
sudo ufw allow 369/udpDeny
sudo ufw deny 369/udpiptablesAllow
sudo iptables -A INPUT -p udp --dport 369 -j ACCEPTDeny
sudo iptables -D INPUT -p udp --dport 369 -j ACCEPTfirewalldAllow
sudo firewall-cmd --permanent --add-port=369/udpWindowsAllow
netsh advfirewall firewall add rule name="Open Port 369" dir=in action=allow protocol=UDP localport=369Security 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 369/UDP?
Port 369/UDP is associated with the rpc2portmap service. rpc2portmap
Is it safe to expose port 369 to the Internet?
It depends on the service and configuration. Port 369 (rpc2portmap) 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 369 is open?
You can use nmap: `nmap -p 369 -sV example.com`, netcat: `nc -zv example.com 369`, or the bash command: `(echo > /dev/udp/example.com/369) 2>/dev/null && echo "Open" || echo "Closed"`.
How do I open or close port 369 on my firewall?
On Linux with UFW: `sudo ufw allow 369/udp` (open) or `sudo ufw deny 369/udp` (close). With iptables: `sudo iptables -A INPUT -p udp --dport 369 -j ACCEPT`. On Windows: `netsh advfirewall firewall add rule name="Open Port 369" dir=in action=allow protocol=UDP localport=369`.
What applications and services use port 369?
Port 369/UDP is used by the rpc2portmap service. Specific uses depend on the software and configuration. Check our related tools section for more information.