All ports

Port202/UDP

at-nbp

Port

202

Protocol

UDP

Category

Well-Known

Service

at-nbp

What is port 202?

Port 202/UDP is a Well-Known port, assigned by IANA for widely recognized services. It is associated with the at-nbp service.

AppleTalk Name Binding

Useful commands

nmapnmap -p 202 -sV example.com
netcatnc -zv example.com 202
curlcurl -v http://example.com:202/
telnettelnet example.com 202
bash(echo > /dev/udp/example.com/202) 2>/dev/null

Firewall commands

UFWAllow
sudo ufw allow 202/udp
Deny
sudo ufw deny 202/udp
iptablesAllow
sudo iptables -A INPUT -p udp --dport 202 -j ACCEPT
Deny
sudo iptables -D INPUT -p udp --dport 202 -j ACCEPT
firewalldAllow
sudo firewall-cmd --permanent --add-port=202/udp
WindowsAllow
netsh advfirewall firewall add rule name="Open Port 202" dir=in action=allow protocol=UDP localport=202

Security 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 202/UDP?

Port 202/UDP is associated with the at-nbp service. AppleTalk Name Binding

Is it safe to expose port 202 to the Internet?

It depends on the service and configuration. Port 202 (at-nbp) 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 202 is open?

You can use nmap: `nmap -p 202 -sV example.com`, netcat: `nc -zv example.com 202`, or the bash command: `(echo > /dev/udp/example.com/202) 2>/dev/null && echo "Open" || echo "Closed"`.

How do I open or close port 202 on my firewall?

On Linux with UFW: `sudo ufw allow 202/udp` (open) or `sudo ufw deny 202/udp` (close). With iptables: `sudo iptables -A INPUT -p udp --dport 202 -j ACCEPT`. On Windows: `netsh advfirewall firewall add rule name="Open Port 202" dir=in action=allow protocol=UDP localport=202`.

What applications and services use port 202?

Port 202/UDP is used by the at-nbp service. Specific uses depend on the software and configuration. Check our related tools section for more information.

Related ports