list_of_tcp_and_udp_port_numbers

List of TCP and UDP port numbers

Port (Computer Networking)

In computer networking, a port serves as a communication endpoint for a specific process or service within a system. Ports are used in conjunction with IP addresses to differentiate between multiple services or applications running on a device. While the IP address identifies the machine on the network, the port number specifies which service or application on that machine is receiving or sending data. This allows multiple network services to run on the same machine simultaneously. The concept of ports in TCP/IP networking is defined in RFC 6335, which outlines port allocation and registration processes.

Ports in the TCP/IP protocol suite are categorized into three ranges: well-known ports (0-1023), registered ports (1024-49151), and dynamic or private ports (49152-65535). Well-known ports are reserved for essential and widely-used services like HTTP (Port 80) and SMTP (Port 25), while registered and dynamic ports are used by specific applications and processes, including user-defined services or temporary connections. This structure is necessary to organize network traffic efficiently, preventing conflicts between services and ensuring that the correct data reaches the intended application.

One of the most important functions of ports is facilitating transport layer protocols such as TCP (Transmission Control Protocol) and UDP (User Datagram Protocol). These protocols use port numbers to establish connections between clients and servers, ensuring that data is transmitted reliably or quickly, depending on the protocol used. In a typical connection, a client sends a request to a server's IP address and a specific port number. The server listens on that port, processes the request, and sends a response back to the client. For example, a web browser connecting to a website via HTTPS will use Port 443 for secure communications, as defined in RFC 2818.

In TCP, ports play a crucial role in establishing a reliable connection. During the TCP three-way handshake process, the client and server exchange SYN and ACK packets, specifying the port numbers for the connection. Once the handshake is complete, data is transmitted between the specified ports, ensuring that each packet reaches its intended application. Ports also help manage multiple simultaneous connections, enabling a server to handle numerous clients at once by assigning each connection a unique combination of IP address and port number.

Unlike TCP, which establishes a connection-oriented communication model, UDP is a connectionless protocol that sends data without guaranteeing delivery or order. Despite this difference, UDP also uses ports to direct traffic to the appropriate application or service. Common services that rely on UDP include DNS (Domain Name System) on Port 53 and streaming services that prioritize low latency over reliability. The lack of connection establishment in UDP makes port numbers especially important for routing data efficiently without the overhead of TCP handshakes.

Port management and assignment are overseen by the IANA (Internet Assigned Numbers Authority), which maintains a registry of well-known and registered port numbers, as described in RFC 6335. When developers create new network applications, they can request a registered port number from IANA to ensure that their application has a unique and non-conflicting port. However, dynamic or private ports are typically assigned automatically by the operating system for temporary or ephemeral connections, such as when a web browser initiates multiple simultaneous requests to a server.

In addition to their use in managing network connections, ports play a critical role in security. Network administrators often use firewalls to block or allow traffic based on port numbers, preventing unauthorized access to services. For instance, a firewall might block all incoming traffic on Port 23, which is used by Telnet, a protocol known for its lack of security. Modern security practices often involve closing unused ports and only allowing traffic on ports that are necessary for the organization’s operations, thereby reducing the attack surface available to malicious actors.

One of the challenges with ports in networking is the potential for port scanning attacks, where attackers scan a target system’s open ports to identify running services and potential vulnerabilities. By detecting which ports are open, attackers can infer the presence of specific services or applications, which might have unpatched vulnerabilities. Tools like Nmap (Network Mapper) are commonly used for both legitimate network diagnostics and malicious reconnaissance. To mitigate the risks posed by open ports, organizations employ various security measures, such as intrusion detection systems (IDS) and network monitoring tools.

Ports are also essential for NAT (Network Address Translation) in modern networking, particularly in environments where multiple devices share a single public IP address. NAT uses port numbers to differentiate between internal devices, allowing multiple devices behind a NAT router to communicate with external servers using the same public IP address. This process, known as port forwarding, ensures that incoming traffic is routed to the correct internal device based on the port number, effectively multiplexing connections through a single public IP.

Another aspect of ports in networking is their role in supporting QoS (Quality of Service) and traffic prioritization. By classifying traffic based on port numbers, network administrators can assign priority to certain types of traffic, such as video conferencing or VoIP (Voice over IP), ensuring that these services receive sufficient bandwidth and reduced latency. Ports are therefore instrumental in managing network resources and delivering a consistent quality of service to end-users, especially in bandwidth-constrained environments.

Conclusion

Ports in computer networking, as defined in RFC 6335 and other related RFCs, are essential for managing and directing network traffic to the appropriate services or applications. By associating specific port numbers with different protocols and services, the TCP/IP model enables efficient communication across networks, whether for web traffic, email, file transfers, or security. Ports not only facilitate the transport layer protocols like TCP and UDP, but also play a critical role in network security, resource management, and traffic prioritization. As networking continues to evolve, ports remain a fundamental component in ensuring the smooth operation and security of internet communications.


Snippet from Wikipedia: Port (computer networking)

In computer networking, a port or port number is a number assigned to uniquely identify a connection endpoint and to direct data to a specific service. At the software level, within an operating system, a port is a logical construct that identifies a specific process or a type of network service. A port at the software level is identified for each transport protocol and address combination by the port number assigned to it. The most common transport protocols that use port numbers are the Transmission Control Protocol (TCP) and the User Datagram Protocol (UDP); those port numbers are 16-bit unsigned numbers.

A port number is always associated with a network address of a host, such as an IP address, and the type of transport protocol used for communication. It completes the destination or origination address of a message. Specific port numbers are reserved to identify specific services so that an arriving packet can be easily forwarded to a running application. For this purpose, port numbers lower than 1024 identify the historically most commonly used services and are called the well-known port numbers. Higher-numbered ports are available for general use by applications and are known as ephemeral ports.

Ports provide a multiplexing service for multiple services or multiple communication sessions at one network address. In the client–server model of application architecture, multiple simultaneous communication sessions may be initiated for the same service.

Most Common TCP/IP Ports

In the TCP/IP model, ports are essential for enabling different types of communication between devices over a network. Ports allow a computer to differentiate between multiple services running on the same machine, such as web servers, email servers, or file transfer services. Each service on a server is assigned a port number, which allows incoming traffic to be routed to the correct application. RFC 6335 specifies the port numbers used for various services, and these port numbers are divided into three ranges: well-known ports (0-1023), registered ports (1024-49151), and dynamic or private ports (49152-65535).

The most common TCP/IP ports are part of the well-known port range (0-1023) and are reserved for essential and widely used services. These include ports for web traffic, email, file transfers, and network management. Each of these ports has a specific function, and they are essential for maintaining smooth communication across networks.

One of the most widely recognized ports is Port 80, which is used for HTTP (Hypertext Transfer Protocol) traffic. HTTP, defined in RFC 2616, is the protocol used for transmitting web pages from web servers to clients, such as browsers. However, while Port 80 is used for unencrypted web traffic, its encrypted counterpart, Port 443, is used for HTTPS traffic, which secures the connection between the client and server using TLS (Transport Layer Security). RFC 2818 outlines the use of HTTPS and its importance in encrypting data sent over the web.

Another critical port is Port 25, which is used for SMTP (Simple Mail Transfer Protocol), the protocol responsible for sending email. SMTP is defined in RFC 5321, and it is the standard protocol for transferring emails between mail servers. Port 25 is primarily used for mail relay between servers, while client-to-server email submission typically occurs on Port 587, as defined in RFC 6409. IMAP (Internet Message Access Protocol), used for retrieving emails from a server, runs on Port 143 and is outlined in RFC 3501, while POP3 (Post Office Protocol version 3), which also retrieves emails, runs on Port 110 as described in RFC 1939.

For file transfers, FTP (File Transfer Protocol) uses Port 21 to control the connection, while actual data transfer occurs over separate ports. FTP is defined in RFC 959 and allows for both uploading and downloading of files over a network. In contrast, SFTP (SSH File Transfer Protocol), which provides secure file transfers, runs over Port 22, which is the same port used by SSH (Secure Shell), a protocol used for securely accessing remote servers and systems. SSH is specified in RFC 4251 and is widely used for secure login and command execution on remote systems.

DNS (Domain Name System), responsible for translating domain names into IP addresses, operates over Port 53. DNS is essential for internet communication, as it allows users to access websites using human-readable domain names rather than IP addresses. DNS can use either TCP or UDP, depending on the size of the DNS query. RFC 1035 specifies the use of DNS and its structure.

Another important port is Port 23, used by Telnet, a protocol that allows for remote command-line interface access. However, due to the lack of encryption in Telnet, it has largely been replaced by SSH for secure remote access. Telnet is specified in RFC 854, but its usage has declined significantly due to security vulnerabilities.

DHCP (Dynamic Host Configuration Protocol), which assigns IP addresses to devices on a network, operates over Port 67 (server) and Port 68 (client). DHCP is defined in RFC 2131 and is a crucial service in networks where devices need to obtain an IP address automatically rather than being assigned a static address.

Port 3389 is used for RDP (Remote Desktop Protocol), a protocol developed by Microsoft for remote access to Windows systems. RDP allows users to connect to a remote desktop and interact with the graphical interface of the system. While not in the well-known port range, Port 3389 is commonly used for remote system access and management.

In network management, SNMP (Simple Network Management Protocol), used for monitoring and managing network devices, operates on Port 161 for sending management queries and Port 162 for receiving SNMP trap messages. SNMP is defined in RFC 1157 and is widely used in enterprise environments for managing network infrastructure.

Conclusion

Common TCP/IP ports, as specified in RFC 6335 and other relevant RFCs, serve as the backbone for communication across different services and applications on the internet. Ports like Port 80 and Port 443 for web traffic, Port 25 for email, and Port 21 for file transfers are integral to the functioning of networked services. Whether used for web traffic, email, file transfers, or network management, each port plays a critical role in facilitating communication across the internet. Understanding the use and function of these ports is crucial for network administrators and anyone involved in network management.



List of Common Ports

This is a list of TCP and UDP port numbers used by protocols of the Internet protocol suite for operation of network applications.

The Transmission Control Protocol (TCP) and the User Datagram Protocol (UDP) needed only one port for full-duplex, bidirectional traffic. The Stream Control Transmission Protocol (SCTP) and the Datagram Congestion Control Protocol (DCCP) also use port numbers. They usually use port numbers that match the services of the corresponding TCP or UDP implementation, if they exist.

The Internet Assigned Numbers Authority (IANA) is responsible for maintaining the official assignments of port numbers for specific uses.<ref name=“IANA”>

</ref> However, many unofficial uses of both well-known and registered port numbers occur in practice. Similarly many of the official assignments refer to protocols that were never or are no longer in common use. This article lists port numbers and their associated protocols that have experienced significant uptake.

Table legend

{]] | class="wikitable" | + Legend of TCP and UDP protocol table cells for port numbers | - ! scope="col" | Cell ! scope="col" | Description | - | {{Yes}} | Described protocol ''is'' standardized, specified or widely used for the port number. | - | {{No}} | Described protocol ''is not'' standardized, specified or widely used for the port number. | - | {{Maybe | Assigned}} | Port number is assigned by IANA for protocol use,<ref name="IANA"/> but may not be standardized, specified or widely used for such. | - | {{Yes-No}} | Port number may use the protocol conditionally only, or alternate its use (fallback if the other protocol fails). | - | {{Yes-No | Port 22}} | Port number doesn't use the protocol, but may use the protocol on another specified port (e.g., port 22). | - | {{N/A}} | Not applicable or currently unassigned port number. For unassigned ports, the port number may be available for assignment upon requesting assignment by IANA.<ref name="rfc6335"/> | - | {{N/A | Reserved}} | Protocol is reserved by IANA<ref name="IANA"/> for future use or special purposes.<ref name="rfc6335"/><ref name="rfc7605">{{Cite IETF | title=Recommendations on Using Assigned Transport Port Numbers | rfc=7605 | bcp=165 | last1=Touch | first1=Joe | date=August 2015 | doi=10.17487/RFC7605 | publisher=[[Internet Engineering Task Force | IETF ]] | accessdate=2018-04-08}}</ref> See "N/A" above. | - | {{Dunno}} | Protocol use by port number is unknown or unverified. | } ==Well-known ports== <!-- [[Well-known ports and similar redirect here. –>

The port numbers in the range from 0 to 1023 (0 to 210 − 1) are the well-known ports or system ports.<ref name=“rfc6335”>

</ref> They are used by system processes that provide widely used types of network services. On Unix-like operating systems, a process must execute with superuser privileges to be able to bind a network socket to an IP address using one of the well-known ports.<ref name=“man-5-services-die.net”>

. “…&nbsp;Port numbers below 1024 (so-called “low numbered” ports) can only be bound to by root&nbsp;…&nbsp;Well-known port numbers specified by the IANA are normally located in this root-only space.&nbsp;…”</ref>

<!– In this table, the Port number, TCP and UDP columns are lined up

    using spaces as padding. The reason for this is for wiki markup readability only.
    It does not affect the browser rendering of the page. -->
{]] | class="wikitable sortable collapsible" | + Well-known ports | - ! scope="col" | Port ! scope="col" | TCP ! scope="col" | UDP ! scope="col" | IANA status<ref name="IANA" /> ! scope="col" | Description !SCTP | - | " | 0 <!--0--> | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | " <!--0--> | {{n/a}} | list_of_tcp_and_udp_port_numbers | {{n/a}} | list_of_tcp_and_udp_port_numbers | Unofficial | In programming APIs (not in communication between hosts), requests a system-allocated (dynamic) port<ref name="Port 0 Linux">{{cite web | //lxr.free-electrons.com/source/net/ipv4/inet_connection_sock.c | title=Linux/net/ipv4/inet_connection_sock.c | date= | publisher=LXR | url-status=dead | //lxr.free-electrons.com/source/net/ipv4/inet_connection_sock.c | archive-date=2015-04-02 | accessdate=2015-01-17}}</ref> | list_of_tcp_and_udp_port_numbers | - | 1 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[TCP Port Service Multiplexer (TCPMUX). Historic. Both TCP and UDP have been assigned to TCPMUX by IANA,<ref name=“IANA” /> but by design only TCP is specified.<ref name=“rfc1078”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 5 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Remote Job Entry<ref name=“rfc407”>

</ref> was historically using socket 5 in its History | old socket form, while MIB PIM has identified it as TCP/5<ref name=“rfc2896”>

</ref> and IANA has assigned both TCP and UDP 5 to it. ]] | list_of_tcp_and_udp_port_numbers | - | 7 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Echo Protocol<ref name=“rfc862”>

</ref><ref name=“apple-kb-HT202944”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | " | 9 <!--9--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Discard Protocol<ref name=“rfc863”>

</ref> ]] | Yes <ref name="rfc4960">{{Cite IETF | title=Stream Control Transmission Protocol | rfc=4960 | pages=135–136 | editor1-last=Stewart | editor1-first=Randall R. | date=September 2007 | publisher=[[Internet Engineering Task Force | IETF ]] | doi=10.17487/RFC4960 | accessdate=2016-09-27}}</ref> | " <!--9--> | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | [[Wake-on-LAN<ref name=“msft-tn-bb632665”>

</ref>]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 11 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Active Users ([[Systat (protocol) | systat service)<ref name=“systat-netstat”>

</ref><ref name=“RFC866”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 13 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Daytime Protocol<ref name=“rfc867”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | " | 15 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | Previously [[netstat service<ref name=“IANA” /><ref name=“systat-netstat” /> ]] | list_of_tcp_and_udp_port_numbers | - | 17 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[QOTD | Quote of the Day (QOTD)<ref name=“rfc865”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 18 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Message Send Protocol<ref name=“rfc1159”>

</ref><ref name=“rfc1312”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 19 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Character Generator Protocol (CHARGEN)<ref name=“rfc864”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 20 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[File Transfer Protocol (FTP) data transfer<ref name=“apple-kb-HT202944” /> ]] | Yes <ref name="rfc4960" /> | - | 21 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[File Transfer Protocol (FTP) control (command)<ref name=“apple-kb-HT202944”/><ref name=“rfc4960”/><ref name=“rfc765”>

</ref><ref name=“rfc959”>

</ref> ]] | Yes<ref name="rfc4960"/> | - | 22 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Secure Shell (SSH),<ref name=“apple-kb-HT202944”/> secure logins, file transfers (secure copy | scp, SSH file transfer protocol | sftp) and port forwarding ]] | Yes <ref name="rfc4960"/> | - | 23 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Telnet protocol—unencrypted text communications<ref name=“apple-kb-HT202944”/><ref name=“rfc854”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 25 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Simple Mail Transfer Protocol (SMTP),<ref name=“apple-kb-HT202944”/><ref name=“rfc821”>

</ref> used for email routing between mail servers ]] | list_of_tcp_and_udp_port_numbers | - | 37 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Time Protocol<ref name=“rfc868”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 42 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[ARPA Host Name Server Protocol | Host Name Server Protocol<ref name=“ien116”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 43 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[WHOIS protocol<ref name=“rfc812”>

</ref><ref name=“rfc954”>

</ref><ref name=“rfc3912”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 47 | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 49 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[TACACS Login Host protocol.<ref name=“rfc1492”>

</ref> TACACS+, still in draft which is an improved but distinct version of TACACS, only uses TCP 49.<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 51 | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Historically used for [[Interface Message Processor logical address management,<ref name=bbnreport5256>

</ref> entry has been removed by IANA on 2013-05-25 ]] | list_of_tcp_and_udp_port_numbers | - | 52 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Xerox Network Systems (XNS) Time Protocol. Despite this port being assigned by IANA, the service is meant to work on Sequenced Packet Protocol | SPP (ancestor of IPX/SPX), instead of TCP/IP.<ref name=xns>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 53 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Domain Name System (DNS)<ref name=“rfc1035”>

</ref><ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 54 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Xerox Network Systems (XNS) Clearinghouse (Name Server). Despite this port being assigned by IANA, the service is meant to work on [[Sequenced Packet Protocol | SPP (ancestor of IPX/SPX), instead of TCP/IP.<ref name=“xns”/> ]] | list_of_tcp_and_udp_port_numbers | - | 56 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Xerox Network Systems (XNS) Authentication Protocol. Despite this port being assigned by IANA, the service is meant to work on [[Sequenced Packet Protocol | SPP (ancestor of IPX/SPX), instead of TCP/IP.<ref name=“xns”/> ]] | list_of_tcp_and_udp_port_numbers | - | 58 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Xerox Network Systems (XNS) Mail. Despite this port being assigned by IANA, the service is meant to work on [[Sequenced Packet Protocol | SPP (ancestor of IPX/SPX), instead of TCP/IP.<ref name=“xns”/> ]] | list_of_tcp_and_udp_port_numbers | - | 61 | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Historically assigned to the [[NIFTP-Based Mail protocol,<ref name=rfc1060>

</ref> but was never documented in the related Internet Experiment Note | IEN.<ref name=“ien169”>

</ref> The port number entry was removed from IANA's registry on 2017-05-18.<ref name=“IANA”/> ]] | list_of_tcp_and_udp_port_numbers | - | 67 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Bootstrap Protocol (BOOTP) server;<ref name=“apple-kb-HT202944”/> also used by Dynamic Host Configuration Protocol (DHCP) ]] | list_of_tcp_and_udp_port_numbers | - | 68 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | <ref name="apple-kb-HT202944"/> also used by Dynamic Host Configuration Protocol (DHCP) | list_of_tcp_and_udp_port_numbers | - | 69 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Trivial File Transfer Protocol (TFTP)<ref name=“apple-kb-HT202944”/><ref name=“ien133”>

</ref><ref name=“rfc783”>

</ref><ref name=“rfc1350”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 70 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Gopher (protocol) | Gopher protocol<ref name=“rfc1436”>

]] | first1=Farhad | last2=McCahill | first2=M. | authorlink2=Mark P. McCahill | last3=Lindner | first3=Paul | last4=Johnson | first4=David | last5=Torrey | first5=Daniel | last6=Alberti | first6=Bob | date=March 1993 | publisher=[[Internet Engineering Task Force | IETF ]] | doi=10.17487/RFC1436 | accessdate=2016-10-16 | ...}}</ref> | list_of_tcp_and_udp_port_numbers | - | 71–74 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[NETRJS protocol<ref name=“rfc88”>

</ref><ref name=“rfc740”>

</ref><ref name=“rfc820”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 79 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Finger protocol<ref name=“apple-kb-HT202944”/><ref name=“rfc742”>

</ref><ref name=“rfc1288”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 80 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Hypertext Transfer Protocol (HTTP)<ref name=“rfc7230”>

</ref><ref name=“rfc7540”>

</ref> uses TCP in versions 1.x and 2. HTTP/3 uses QUIC<ref name=“quic”>

</ref>, a transport protocol on top of UDP. ]] | Yes <ref name="rfc4960"/> | " | 81 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[TorPark onion routing

]] | list_of_tcp_and_udp_port_numbers | " | 82 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[TorPark control

]] | list_of_tcp_and_udp_port_numbers | - | 83 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | MIT ML Device, networking file system <ref>{{Cite web | title=ASSIGNED NUMBERS | //www.rfc-editor.org/rfc/rfc750.html | publisher=IETF | date=1978-09-28 | accessdate= 2019-09-24}}</ref> | list_of_tcp_and_udp_port_numbers | - | 88 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Kerberos (protocol) | Kerberos<ref name=“apple-kb-HT202944” /><ref name=“rfc1510”>

</ref><ref name=“rfc4120”>

</ref> authentication system ]] | list_of_tcp_and_udp_port_numbers | " | 90 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[PointCast (dotcom)<ref name=“IANA” />

]] | list_of_tcp_and_udp_port_numbers | - | 95 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | SUPDUP, terminal-independent remote login <ref>{{Cite IETF | title=SUPDUP Protocol | rfc=734 | pages=15 | last1=Crispin | first1=Mark | date=7 October 1977 | publisher=[[Internet Engineering Task Force | IETF ]] | accessdate=2019-09-24}}</ref> | list_of_tcp_and_udp_port_numbers | - | 101 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NIC, InterNIC, IANA and ICANN | NIC Hostname | host name<ref name=“rfc953”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 102 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[International Organization for Standardization | ISO Transport Service Access Point (TSAP) Class 0 protocol;<ref name=“rfc983”>

</ref><ref name=“rfc1006”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 104 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Digital Imaging and Communications in Medicine (DICOM; also port 11112) ]] | list_of_tcp_and_udp_port_numbers | - | 105 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[CCSO Nameserver<ref name=“rfc2378”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 107 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Rtelnet | Remote User Telnet Service (RTelnet)<ref name=“rfc818”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 108 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | IBM [[Systems Network Architecture (SNA) gateway access server ]] | list_of_tcp_and_udp_port_numbers | - | 109 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Post Office Protocol, version 2 (POP2)<ref name=“rfc937”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 110 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Post Office Protocol, version 3 (POP3)<ref name="apple-kb-HT202944" /><ref name="rfc1081">{{Cite IETF | Version 3 | rfc=1081 | pages=2, 13 | last1=Rose | first1=Marshall | author1-link=Marshall Rose | date=November 1988 | publisher=[[Internet Engineering Task Force | IETF ]] | doi=10.17487/RFC1081 | accessdate=2016-10-17 | ...}}</ref><ref name="rfc1939">{{Cite IETF | title=Post Office Protocol - Version 3 | rfc=1939 | std=53 | pages=3, 19 | last1=Myers | first1=John G. | last2=Rose | first2=Marshall T. | author2-link=Marshall Rose | date=May 1996 | publisher=[[Internet Engineering Task Force | IETF ]] | doi=10.17487/RFC1939 | accessdate=2016-10-17 | ...}}</ref> | list_of_tcp_and_udp_port_numbers | - | 111 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Open Network Computing Remote Procedure Call (ONC RPC, sometimes referred to as Sun RPC) ]] | list_of_tcp_and_udp_port_numbers | - | " | 113 <!--113--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Ident protocol | Ident, authentication service/identification protocol,<ref name=“apple-kb-HT202944” /><ref name=“rfc1413”>

</ref> used by Internet Relay Chat | IRC servers to identify users ]] | list_of_tcp_and_udp_port_numbers | - <!--113--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | Authentication Service (auth), the predecessor to ''identification protocol''. Used to determine a user's identity of a particular TCP connection.<ref name="rfc931">{{Cite IETF | title=Authentication Server | rfc=931 | page=1 | last1=St. Johns | first1=Michael C. | date=January 1985 | publisher=[[Internet Engineering Task Force | IETF]] | doi=10.17487/RFC0931 | accessdate=2016-10-17 | ...}}</ref> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 115 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Simple File Transfer Protocol<ref name=“apple-kb-HT202944” /><ref name=“rfc913”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 117 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[UUCP Mapping Project (path service)

]] | list_of_tcp_and_udp_port_numbers | - | 118 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Structured Query Language ([[SQL) Services

]] | list_of_tcp_and_udp_port_numbers | - | 119 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Network News Transfer Protocol (NNTP),<ref name=“apple-kb-HT202944” /> retrieval of newsgroup messages<ref name=“rfc977”>

</ref><ref name=“rfc3977”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 123 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Network Time Protocol (NTP), used for time synchronization<ref name=“apple-kb-HT202944” /> ]] | list_of_tcp_and_udp_port_numbers | - | 126 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Formerly [[Unisys Unitary Login, renamed by Unisys to NXEdit. Used by Unisys Programmer's Workbench for Clearpath MCP, an IDE for Unisys MCP programming languages | Unisys MCP software development ]] | list_of_tcp_and_udp_port_numbers | - | " | 135 <!--135--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Distributed Computing Environment | DCE Communication endpoint | endpoint resolution ]] | list_of_tcp_and_udp_port_numbers | - <!--135--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | [[Microsoft EPMAP (End Point Mapper), also known as DCE/Remote procedure call | RPC Locator service,<ref>

</ref> used to remotely manage services including DHCP server, Domain Name System | DNS server and Windows Internet Name Service | WINS. Also used by Distributed Component Object Model | DCOM]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 137 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[NetBIOS Name Service, used for name registration and Name resolution (computer systems) | resolution<ref name=“rfc1001”>

</ref><ref name=“rfc1002”>

</ref><!– XXX: Citation cleanup required to target to specific RFC pages for NetBIOS, also for NetBIOS ports below –><!– XXX: Instead of “author” parameter for the working group, we should use “collaboration” like in Cite web. Unfortunately this is not yet supported by Cite IETF as of October 2016. –> ]] | list_of_tcp_and_udp_port_numbers | - | 138 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NetBIOS Datagram Service<ref name="apple-kb-HT202944" /><ref name="rfc1001" /><ref name="rfc1002" /> | list_of_tcp_and_udp_port_numbers | - | 139 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NetBIOS Session Service<ref name="rfc1001" /><ref name="rfc1002" /> | list_of_tcp_and_udp_port_numbers | - | 143 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Internet Message Access Protocol (IMAP),<ref name=“apple-kb-HT202944” /> management of Email | electronic mail messages on a server<ref name=“rfc3501”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 152 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Background File Transfer Program (BFTP)<ref name=“rfc1068”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 153 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Simple Gateway Monitoring Protocol (SGMP), a protocol for remote inspection and alteration of gateway management information<ref name=“rfc1028”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 156 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Structured Query Language ([[SQL) Service

]] | list_of_tcp_and_udp_port_numbers | - | 158 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Distributed Mail System Protocol (DMSP, sometimes referred to as Pcmail)<ref name=“rfc1056”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 161 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Simple Network Management Protocol (SNMP)<ref name=“rfc1157”>

</ref>

<ref name=“apple-kb-HT202944” /> ]] | list_of_tcp_and_udp_port_numbers | - | 162 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Simple Network Management Protocol Trap (SNMPTRAP)<ref name=“rfc1157” /><ref name=“cisco-support-7244”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 170 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Network [[PostScript print server ]] | list_of_tcp_and_udp_port_numbers | - | 177 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[X Display Manager Control Protocol (XDMCP), used for remote logins to an X display manager (program type) | X Display Manager server<ref name=“X11R7.6-doc-xdmcp”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 179 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Border Gateway Protocol (BGP),<ref name=“rfc4271”>

</ref> used to exchange routing and reachability information among Autonomous system (Internet) | autonomous systems (AS) on the Internet ]] | Yes <ref name="rfc4960" /> | - | 194 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Internet Relay Chat (IRC)<ref name=“rfc7194”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 199 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[SNMP Unix Multiplexer (SMUX)<ref name=“rfc1227”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 201 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[AppleTalk Routing Maintenance ]] | list_of_tcp_and_udp_port_numbers | - | 209 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Quick Mail Transfer Protocol<ref name=“qmtp.txt”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 210 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[ANSI Z39.50 ]] | list_of_tcp_and_udp_port_numbers | - | 213 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Internetwork Packet Exchange (IPX) ]] | list_of_tcp_and_udp_port_numbers | - | 218 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Message posting protocol (MPP) | list_of_tcp_and_udp_port_numbers | - | 220 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Internet Message Access Protocol (IMAP), version 3 ]] | list_of_tcp_and_udp_port_numbers | - | 225–241 | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 249–255 | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 259 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Efficient Short Remote Operations (ESRO) | list_of_tcp_and_udp_port_numbers | - | 262 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Arcisdms | list_of_tcp_and_udp_port_numbers | - | 264 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Border Gateway Multicast Protocol (BGMP) ]] | list_of_tcp_and_udp_port_numbers | - | 280 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | http-mgmt | list_of_tcp_and_udp_port_numbers | " | 300 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[ThinLinc Web Access ]] | list_of_tcp_and_udp_port_numbers | - | 308 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Novastor Online Backup | list_of_tcp_and_udp_port_numbers | - | 311 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Mac OS X Server Admin<ref name=“apple-kb-HT202944” /> (officially AppleShare IP Web administration<ref name=“IANA” />) ]] | list_of_tcp_and_udp_port_numbers | - | 318 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | PKIX [[Time Stamp Protocol (TSP) ]] | list_of_tcp_and_udp_port_numbers | - | 319 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Precision Time Protocol (PTP) event messages ]] | list_of_tcp_and_udp_port_numbers | - | 320 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Precision Time Protocol (PTP) general messages ]] | list_of_tcp_and_udp_port_numbers | - | 350 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Mapping of Airline Traffic over Internet Protocol (MATIP) type A ]] | list_of_tcp_and_udp_port_numbers | - | 351 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | MATIP type B | list_of_tcp_and_udp_port_numbers | - | 356 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | cloanto-net-1 (used by Cloanto Amiga Explorer and VMs) | list_of_tcp_and_udp_port_numbers | - | 366 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | On-Demand Mail Relay (ODMR) | list_of_tcp_and_udp_port_numbers | - | 369 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Rpc2portmap | list_of_tcp_and_udp_port_numbers | - | " | 370 <!--370--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | codaauth2, Coda authentication server | list_of_tcp_and_udp_port_numbers | - <!--370--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | securecast1, outgoing packets to [[McAfee | NAI's SecureCast servers<ref name=“SecureCast”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 371 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | ClearCase albd | list_of_tcp_and_udp_port_numbers | - | 383 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | HP data alarm manager | list_of_tcp_and_udp_port_numbers | - | 384 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | A Remote Network Server System | list_of_tcp_and_udp_port_numbers | - | 387 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | AURP ([[AppleTalk Update-based Routing Protocol)<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 388 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Local Data Manager | Unidata LDM near real-time data distribution protocol<ref>

</ref>

<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 389 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Lightweight Directory Access Protocol (LDAP)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 399 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Digital Equipment Corporation DECnet+ (Phase V) over TCP/IP (RFC1859) ]] | list_of_tcp_and_udp_port_numbers | - | 401 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Uninterruptible power supply (UPS) ]] | list_of_tcp_and_udp_port_numbers | - | 427 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Service Location Protocol (SLP)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 433 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NNSP, part of [[Network News Transfer Protocol ]] | list_of_tcp_and_udp_port_numbers | - | 434 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Mobile IP Agent (RFC 5944) ]] | list_of_tcp_and_udp_port_numbers | - | 443 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Hypertext Transfer Protocol (HTTP)<ref name=“rfc7230”>

</ref><ref name=“rfc7540”>

</ref> uses TCP in versions 1.x and 2. HTTP/3 uses QUIC<ref name=“quic”>

</ref>, a transport protocol on top of UDP.]] | list_of_tcp_and_udp_port_numbers | Yes <ref name="rfc4960"/> | - | 444 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Simple Network Paging Protocol (SNPP), RFC 1568 ]] | list_of_tcp_and_udp_port_numbers | - | " | 445 <!--445--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Microsoft-DS (Directory Services) [[Active Directory,<ref name=“msft-tn-dd772723”>

</ref> Windows shares ]] | list_of_tcp_and_udp_port_numbers | - <!--445--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | Microsoft-DS (Directory Services) [[Server Message Block | SMB<ref name=“apple-kb-HT202944” /> file sharing]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 464 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Kerberos (protocol) | Kerberos Change/Set password ]] | list_of_tcp_and_udp_port_numbers | - | " | 465 <!--465--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | URL Rendezvous Directory for SSM (Cisco protocol){{Importance inline | date=April 2018}} | list_of_tcp_and_udp_port_numbers | - <!--465--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | Official | Authenticated [[Simple Mail Transfer Protocol | SMTP<ref name=“apple-kb-HT202944” /> over Transport Layer Security | TLS/SSL (SMTPS)<ref name=“theregister-2018-02-01-rfc8314”>

</ref>]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 475 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | tcpnethaspsrv, [[Aladdin Knowledge Systems Hasp services ]] | list_of_tcp_and_udp_port_numbers | " | 491 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[GO-Global | GO-Global remote access and application publishing software ]] | list_of_tcp_and_udp_port_numbers | - | 497 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Retrospect (software) | Retrospect ]] | list_of_tcp_and_udp_port_numbers | - | 500 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Internet Security Association and Key Management Protocol (ISAKMP) / Internet Key Exchange (IKE)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 502 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Modbus Protocol ]] | list_of_tcp_and_udp_port_numbers | - | 504 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Citadel/UX | Citadel, multiservice protocol for dedicated clients for the Citadel groupware system ]] | list_of_tcp_and_udp_port_numbers | - | 510 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | FirstClass Protocol (FCP), used by [[FirstClass client/server groupware system ]] | list_of_tcp_and_udp_port_numbers | - | " | 512 <!--512--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Remote Process Execution | Rexec, Remote Process Execution ]] | list_of_tcp_and_udp_port_numbers | - <!--512--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | comsat, together with [[Biff (Unix) | biff ]] | list_of_tcp_and_udp_port_numbers | - | " | 513 <!--513--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[rlogin ]] | list_of_tcp_and_udp_port_numbers | - <!--513--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | Who<ref name="rfc1340">{{cite web | //www.ietf.org/rfc/rfc1340.txt | title=RFC 1340, Assigned Numbers | publisher=IETF | accessdate=2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | " | 514 <!--514--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[Remote Shell, used to execute non-interactive commands on a remote system (Remote Shell, rsh, remsh) ]] | list_of_tcp_and_udp_port_numbers | - <!--514--> | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | [[Syslog,<ref name=“apple-kb-HT202944” /> used for system logging ]] | list_of_tcp_and_udp_port_numbers | - | 515 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Line Printer Daemon protocol | Line Printer Daemon (LPD),<ref name=“apple-kb-HT202944”/> print service ]] | list_of_tcp_and_udp_port_numbers | - | 517 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Talk | list_of_tcp_and_udp_port_numbers | - | 518 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NTalk | list_of_tcp_and_udp_port_numbers | - | " | 520 <!--520--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | efs, extended file name server | list_of_tcp_and_udp_port_numbers | - <!--520--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | [[Routing Information Protocol (RIP)]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 521 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[RIPng | Routing Information Protocol Next Generation (RIPng) ]] | list_of_tcp_and_udp_port_numbers | - | 524 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[NetWare Core Protocol (NCP) is used for a variety things such as access to primary NetWare server resources, Time Synchronization, etc. ]] | list_of_tcp_and_udp_port_numbers | - | 525 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Timed, [[Timeserver ]] | list_of_tcp_and_udp_port_numbers | - | 530 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Remote procedure call (RPC) ]] | list_of_tcp_and_udp_port_numbers | - | 532 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | netnews<ref name="apple-kb-HT202944"/> | list_of_tcp_and_udp_port_numbers | - | 533 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | netwall, For Emergency Broadcasts | list_of_tcp_and_udp_port_numbers | - | 540 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Unix-to-Unix Copy Protocol ([[UUCP) ]] | list_of_tcp_and_udp_port_numbers | - | 542 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[commerce (Commerce Applications) ]] | list_of_tcp_and_udp_port_numbers | - | 543 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | klogin, [[Kerberos (protocol) | Kerberos login ]] | list_of_tcp_and_udp_port_numbers | - | 544 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | kshell, [[Kerberos (protocol) | Kerberos Remote shell ]] | list_of_tcp_and_udp_port_numbers | - | 546 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[DHCPv6 client ]] | list_of_tcp_and_udp_port_numbers | - | 547 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[DHCPv6 server ]] | list_of_tcp_and_udp_port_numbers | - | 548 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Apple Filing Protocol (AFP) over Transmission Control Protocol | TCP<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 550 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | new-rwho, new-who<ref name="rfc1340" /> | list_of_tcp_and_udp_port_numbers | - | 554 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Real Time Streaming Protocol (RTSP)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 556 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Remotefs, [[Remote File System | RFS, rfs_server ]] | list_of_tcp_and_udp_port_numbers | - | 560 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | rmonitor, Remote Monitor | list_of_tcp_and_udp_port_numbers | - | 561 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | monitor | list_of_tcp_and_udp_port_numbers | - | 563 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[NNTP over Transport Layer Security | TLS/SSL (NNTPS) ]] | list_of_tcp_and_udp_port_numbers | " | 564 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[9P (protocol) | 9P (Plan 9 from Bell Labs | Plan 9) ]] | list_of_tcp_and_udp_port_numbers | " | 585 | list_of_tcp_and_udp_port_numbers | {{Yes-No | Port 993}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | Legacy use of [[Internet Message Access Protocol over Transport Layer Security | TLS/SSL (IMAPS), now in use at port 993.<ref name=“oreilly-fire-2ndEd”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 587 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Mail submission agent | email message submission<ref name=“apple-kb-HT202944”/><ref>

</ref> (Simple Mail Transfer Protocol | SMTP) ]] | list_of_tcp_and_udp_port_numbers | - | 591 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[FileMaker 6.0 (and later) Web Sharing (HTTP Alternate, also see port 80) ]] | list_of_tcp_and_udp_port_numbers | - | 593 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | HTTP RPC Ep Map, [[Remote procedure call over Hypertext Transfer Protocol, often used by Distributed Component Object Model services and Microsoft Exchange Server ]] | list_of_tcp_and_udp_port_numbers | - | 601 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Reliable [[Syslog Service — used for system logging ]] | list_of_tcp_and_udp_port_numbers | - | 604 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | TUNNEL profile,<ref>{{cite web | //www.ietf.org/rfc/rfc3620.txt | title=RFC 3620, The TUNNEL Profile | publisher=IETF | accessdate= 2014-05-27}}</ref> a protocol for [[BEEP Peer-to-peer | peers to form an application layer Tunneling protocol | tunnel ]] | list_of_tcp_and_udp_port_numbers | - | 623 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | ASF Remote Management and Control Protocol (ASF-RMCP) & IPMI Remote Management Protocol | list_of_tcp_and_udp_port_numbers | " | 625 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | Open Directory Proxy (ODProxy)<ref name="apple-kb-HT202944"/> | list_of_tcp_and_udp_port_numbers | - | " | 631 <!--631--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Internet Printing Protocol (IPP)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | " <!--631--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | [[Common Unix Printing System (CUPS) administration console (extension to IPP)]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 635 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | RLZ DBase | list_of_tcp_and_udp_port_numbers | - | 636 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Lightweight Directory Access Protocol over Transport Layer Security | TLS/SSL (LDAPS)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 639 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | MSDP, [[Multicast Source Discovery Protocol ]] | list_of_tcp_and_udp_port_numbers | - | 641 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | SupportSoft Nexus Remote Command (control/listening), a proxy gateway connecting remote control traffic | list_of_tcp_and_udp_port_numbers | - | 643 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | SANity | list_of_tcp_and_udp_port_numbers | - | 646 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Label Distribution Protocol (LDP), a routing protocol used in Multiprotocol Label Switching | MPLS networks ]] | list_of_tcp_and_udp_port_numbers | - | 647 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Reliability | DHCP Failover protocol<ref>INTERNET DRAFT, DHCP Failover Protocol (expired: September 2003)</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 648 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Registry Registrar Protocol (RRP)<ref>{{cite web | //tools.ietf.org/rfc/rfc3632.txt | title=RFC 3632, VeriSign Registry Registrar Protocol (RRP) Version 2.0.0 | publisher=IETF | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | - | 651 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | IEEE-MMS | list_of_tcp_and_udp_port_numbers | - | 653 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | SupportSoft Nexus Remote Command (data), a proxy gateway connecting remote control traffic | list_of_tcp_and_udp_port_numbers | - | 654 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Media Management System (MMS) Media Management Protocol (MMP)<ref>{{cite web | //standards.ieee.org/reading/ieee/std_public/new_desc/storage/1244.3-2000.html | title=IEEE Standard (1244.3-2000) for Media Management System (MMS) Media Management Protocol (MMP) | publisher=IEEE | date=2001-04-26 | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | - | 655 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Tinc (protocol) | Tinc VPN daemon ]] | list_of_tcp_and_udp_port_numbers | - | 657 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[IBM RMC (Remote monitoring and Control) protocol, used by IBM System p | System p5 IBM AIX | AIX Integrated Virtualization Manager (IVM)<ref>

</ref> and IBM Hardware Management Console | Hardware Management Console to connect managed LPAR | logical partitions (LPAR) to enable dynamic partition reconfiguration ]] | list_of_tcp_and_udp_port_numbers | - | 660 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Mac OS X Server administration,<ref name=“IANA”/> version 10.4 and earlier<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | " | [[Number of the Beast | 666 <!–666–> ]] | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Doom (game) | Doom, first online first-person shooter ]] | list_of_tcp_and_udp_port_numbers | " <!--666--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | //www.aircrack-ng.org/doku.php's server for remote-controlling wireless devices ]] | list_of_tcp_and_udp_port_numbers | - | 674 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Application Configuration Access Protocol (ACAP) ]] | list_of_tcp_and_udp_port_numbers | - | 688 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | REALM-RUSD (ApplianceWare Server Appliance Management Protocol) | list_of_tcp_and_udp_port_numbers | - | 690 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Velneo Application Transfer Protocol (VATP) | list_of_tcp_and_udp_port_numbers | - | 691 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Microsoft | MS Microsoft Exchange Server | Exchange Routing ]] | list_of_tcp_and_udp_port_numbers | - | 694 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Linux-HA high-availability heartbeat ]] | list_of_tcp_and_udp_port_numbers | - | 695 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[IEEE Media Management System over Transport Layer Security | SSL (IEEE-MMS-SSL)<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 698 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Optimized Link State Routing protocol | Optimized Link State Routing (OLSR) ]] | list_of_tcp_and_udp_port_numbers | - | 700 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Extensible Provisioning Protocol (EPP), a protocol for communication between domain name registry | domain name registries and domain name registrar | registrars (RFC 5734) ]] | list_of_tcp_and_udp_port_numbers | - | 701 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Link Management Protocol (LMP),<ref>{{cite web | //www.ietf.org/rfc/rfc4204.txt | title=RFC 4204, Link Management Protocol | publisher=IETF | accessdate= 2014-05-27}}</ref> a protocol that runs between a pair of [[Node (networking) | nodes and is used to manage Teletraffic engineering | traffic engineering (TE) Telecommunications link | links ]] | list_of_tcp_and_udp_port_numbers | - | 702 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | IRIS<ref>{{cite web | //tools.ietf.org/rfc/rfc3981.txt | The Internet Registry Information Service (IRIS) Core Protocol | publisher=IETF | //www.verisign.com/research/Internet_Registry_Information_Service/index.html Internet Registry Information Service (IRIS)] {{webarchive | //www.verisign.com/research/Internet_Registry_Information_Service/index.html | date=February 1, 2009 }}</ref> (Internet Registry Information Service) over [[BEEP (Blocks Extensible Exchange Protocol)<ref>

</ref> (RFC 3983) ]] | list_of_tcp_and_udp_port_numbers | - | 706 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[SILC (protocol) | Secure Internet Live Conferencing (SILC) ]] | list_of_tcp_and_udp_port_numbers | - | 711 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Cisco Tag Distribution Protocol<ref>

</ref><ref>

</ref><ref>Cisco IOS Software Release 11.1CT New Features

</ref>—being replaced by the MPLS Label Distribution Protocol<ref>Cisco IOS Software Releases 12.0 S, MPLS Label Distribution Protocol (LDP)

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 712 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Topology Broadcast based on Reverse-Path Forwarding routing protocol (TBRPF; RFC 3684) ]] | list_of_tcp_and_udp_port_numbers | - | 749 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Kerberos (protocol) administration<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | 750 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | kerberos-iv, [[Kerberos (protocol) | Kerberos version IV ]] | list_of_tcp_and_udp_port_numbers | " | 751 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | kerberos_master, [[Kerberos (protocol) | Kerberos authentication ]] | list_of_tcp_and_udp_port_numbers | " | 752 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | passwd_server, [[Kerberos (protocol) | Kerberos password (kpasswd) server ]] | list_of_tcp_and_udp_port_numbers | - | " | 753 <!--753--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Reverse Routing Header (RRH)<ref>{{cite web | //patentscope.wipo.int/search/en/detail.jsf | //patentscope.wipo.int/search/en/detail.jsf | url-status=live | archive-date=2017-05-19 | title=ARRANGEMENT IN A ROUTER OF A MOBILE NETWORK FOR OPTIMIZING USE OF MESSAGES CARRYING REVERSE ROUTING HEADERS | publisher=[[World Intellectual Property Organization | WIPO ]] | publication-date=2004-07-01 | date=2003-12-11 | Use {{Cite patent}} | list_of_tcp_and_udp_port_numbers | " <!--753--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | userreg_server, [[Kerberos (protocol) | Kerberos userreg server ]] | list_of_tcp_and_udp_port_numbers | - | " | 754 <!--754--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | tell send | list_of_tcp_and_udp_port_numbers | " <!--754--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | krb5_prop, [[Kerberos (protocol) | Kerberos v5 slave propagation]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | " | 760 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | krbupdate [kreg], [[Kerberos (protocol) | Kerberos registration ]] | list_of_tcp_and_udp_port_numbers | " | 782 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[Conserver serial-console management server ]] | list_of_tcp_and_udp_port_numbers | " | 783 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[SpamAssassin spamd daemon ]] | list_of_tcp_and_udp_port_numbers | - | 800 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | mdbs-daemon | list_of_tcp_and_udp_port_numbers | - | 802 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Modbus | MODBUS/TCP Security<ref name=“mbap-s”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | " | 808 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | Microsoft Net.TCP Port Sharing Service | list_of_tcp_and_udp_port_numbers | - | 829 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Certificate Management Protocol<ref name=“rfc4210”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 830 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[NETCONF over Secure Shell | SSH ]] | list_of_tcp_and_udp_port_numbers | - | 831 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NETCONF over [[BEEP ]] | list_of_tcp_and_udp_port_numbers | - | 832 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NETCONF for [[SOAP over HTTPS ]] | list_of_tcp_and_udp_port_numbers | - | 833 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | NETCONF for SOAP over [[BEEP ]] | list_of_tcp_and_udp_port_numbers | " | 843 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[Adobe Flash<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 847 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Reliability | DHCP Failover protocol ]] | list_of_tcp_and_udp_port_numbers | - | 848 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | Group Domain Of Interpretation (GDOI) protocol | list_of_tcp_and_udp_port_numbers | - | 853 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Domain Name System | DNS over Transport Layer Security | TLS (RFC 7858) ]] | list_of_tcp_and_udp_port_numbers | - | 860 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[iSCSI (RFC 3720) ]] | list_of_tcp_and_udp_port_numbers | - | 861 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | OWAMP control (RFC 4656) | list_of_tcp_and_udp_port_numbers | - | 862 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | TWAMP control (RFC 5357) | list_of_tcp_and_udp_port_numbers | - | 873 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[rsync file synchronization protocol ]] | list_of_tcp_and_udp_port_numbers | " | " | 888 <!--888--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | cddbp, [[CD database | CD DataBase (CDDB) protocol (CDDBP) ]] | list_of_tcp_and_udp_port_numbers | " <!--888--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | IBM Endpoint Manager Remote Control | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | " | 897 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[Brocade Communications Systems | Brocade SMI-S RPC ]] | list_of_tcp_and_udp_port_numbers | " | 898 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | Brocade SMI-S RPC SSL | list_of_tcp_and_udp_port_numbers | " | 902 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[VMware ESXi<ref name=“vmware-kb-1022256”>

</ref><ref name=“vmware-kb-1005189”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | " | 903 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | VMware ESXi<ref name="vmware-kb-1022256"/><ref name="vmware-kb-1005189"/> | list_of_tcp_and_udp_port_numbers | - | 953 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[BIND remote name daemon control (RNDC)<ref name=“centos-5-deployment-rndc”>

</ref><ref name=“man-rndc.8”>

. “…&nbsp;TCP port&nbsp;…&nbsp;BIND 9's default control channel port, 953.&nbsp;…”</ref> ]] | list_of_tcp_and_udp_port_numbers | " | 981 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | Remote HTTPS management for firewall devices running embedded [[Check Point VPN-1 software<ref name=“fw-1-ports-ng”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | " | 987 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[Microsoft Remote Web Workplace, a feature of Windows Small Business Server<ref name=“msft-tn-cc52751”>

… ]] | df= }}</ref> | list_of_tcp_and_udp_port_numbers | - | 989 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[FTPS Protocol (data), FTP over Transport Layer Security | TLS/SSL ]] | list_of_tcp_and_udp_port_numbers | - | 990 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[FTPS Protocol (control), FTP over Transport Layer Security | TLS/SSL ]] | list_of_tcp_and_udp_port_numbers | - | 991 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Netnews Administration System (NAS)<ref>RFC 4707</ref> ]] | list_of_tcp_and_udp_port_numbers | - | 992 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Telnet protocol over Transport Layer Security | TLS/SSL ]] | list_of_tcp_and_udp_port_numbers | - | 993 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Internet Message Access Protocol over Transport Layer Security | TLS/SSL (IMAPS)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | - | " | 994 <!--994--> | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | " <!--994--> | {{Maybe}} | list_of_tcp_and_udp_port_numbers | {{Maybe}} | list_of_tcp_and_udp_port_numbers | Unofficial | [[Internet Relay Chat over Transport Layer Security | TLS/SSL (IRCS). Previously assigned, but not used in common practice.]] | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | 995 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | [[Post Office Protocol 3 over Transport Layer Security | TLS/SSL (POP3S)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | " | 1010 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Unofficial | list_of_tcp_and_udp_port_numbers | [[ThinLinc web-based administration interface<ref name=“cendio-docs-tag-tcp-ports”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | - | 1011–1020 | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | {{n/a | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | - | " | 1023 <!--1023--> | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | Official | <ref name="IANA" /> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | " <!--1023--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Unofficial | [[z/OS Network File System (NFS) (potentially ports 991–1023) <ref name=“rfc7194” />

<ref name=“rfc1227” />

<ref name=“ibm-zos-surpp”>

port is available.&nbsp;…&nbsp;When specifying secure(udp) or proto(udp), the z/OS client uses the privileged UDP ports to communicate with the NFS servers. When specifying proto(tcp) the z/OS client uses the privileged TCP ports to communicate the MOUNT RPC or UNMOUNT RPC with the NFS server. However, the z/OS client uses the ephemeral TCP ports to communicate NFS RPC with the NFS server.&nbsp;…]] | access-date=2018-04-20 | //www-304.ibm.com/servers/resourcelink/svc00100.nsf/pages/zosv2r3sc236883/$file/idan400_v2r3.pdf | archive-date=2018-04-20 | url-status=dead | df=}}{{Self-published source | date=April 2018 | ABOUTSELF=y}}</ref>{{Self-published source | date=April 2018 | ABOUTSELF=y}} | list_of_tcp_and_udp_port_numbers | } ==Registered ports== {{Dynamic list}} The range of port numbers from 1024 to 49151 (2<sup>10</sup> to 2<sup>14</sup> + 2<sup>15</sup> − 1) are the [[registered ports. They are assigned by Internet Assigned Numbers Authority | IANA for specific service upon application by a requesting entity.<ref name=IANA /> On most systems, registered ports can be used without superuser privileges.

<!– In this table, the Port number, TCP and UDP columns are lined up

    using spaces as padding. This is for wiki markup readability only.
    It does not affect the browser rendering of the page. -->
{]] | class="wikitable sortable collapsible" | + Registered ports | - ! scope="col" | Port ! scope="col" class="unsortable" | TCP ! scope="col" class="unsortable" | UDP ! scope="col" | Description ! scope="col" | IANA status<ref name="IANA" /> | - | 1024 | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | Reserved | list_of_tcp_and_udp_port_numbers | Official | - | " | 1027 <!--1027--> | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Reserved | list_of_tcp_and_udp_port_numbers | Official | - <!--1027--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Native IPv6 behind IPv4-to-IPv4 NAT Customer Premises Equipment (6a44)<ref name="rfc6751">{{Cite IETF | title=Native IPv6 behind IPv4-to-IPv4 NAT Customer Premises Equipment (6a44) | date=October 2012 | publisher=[[Internet Engineering Task Force | IETF ]] | rfc=6751 | last1=Carpenter | first1=Brian | last2=Dan | first2=Wing | last3=Jiang | first3=Sheng Jiang | editor1-last=Despres | editor1-first=Remi | doi=10.17487/RFC6751 | issn=2070-1721 | access-date=2016-08-28}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 1028 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Deprecated | list_of_tcp_and_udp_port_numbers | Official | " | 1029 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Microsoft [[Distributed Component Object Model | DCOM services ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1058 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | nim, [[IBM IBM AIX | AIX Network Installation Manager (NIM) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1059 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | nimreg, IBM AIX Network Installation Manager (NIM) | list_of_tcp_and_udp_port_numbers | Official | - | 1080 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[SOCKS proxy ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1085 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[WebObjects<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1098 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | rmiactivation, [[Java remote method invocation (RMI) activation ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1099 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | rmiregistry, Java remote method invocation (RMI) registry | list_of_tcp_and_udp_port_numbers | Official | - | " | 1109 <!--1109--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Reserved – IANA | list_of_tcp_and_udp_port_numbers | Official | " <!--1109--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Kerberos (protocol) | Kerberos Post Office Protocol (Kerberized Post Office Protocol | KPOP)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1113 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}}<ref group="note">Deployment typically occurs only directly over UDP, but other underlying protocol layers which meet the requirements described in the specification are possible.</ref><ref>{{Cite IETF | title=Licklider Transmission Protocol - Specification | rfc=5326 | publisher=[[Internet Engineering Task Force | IETF ]] | last=Ramadas | first1=Manikantan | last2=Burleigh | first2=Scott C. | last3=Farrell | first3=Stephen | section=5 | page=23}}</ref> | list_of_tcp_and_udp_port_numbers | {{yes}}<ref>{{Cite IETF | title=Licklider Transmission Protocol - Specification | rfc=5326 | publisher=[[Internet Engineering Task Force | IETF ]] | last=Ramadas | first1=Manikantan | last2=Burleigh | first2=Scott C. | last3=Farrell | first3=Stephen | section=10.1 | page=51}}</ref> | list_of_tcp_and_udp_port_numbers | [[Licklider Transmission Protocol (LTP) delay tolerant networking protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1119 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Battle.net chat/game protocol, used by Blizzard Entertainment | Blizzard's games<ref name=“blizzard” /> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1167 | list_of_tcp_and_udp_port_numbers | {{yes | Yes, and SCTP}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Cisco [[IP SLA (Service Assurance Agent) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1194 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Networking | OpenVPN ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1198 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | The [[cajo project Free dynamic transparent distributed computing in Java ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1214 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Kazaa ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1218 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | William POWER | list_of_tcp_and_udp_port_numbers | Official | - | 1220 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[QuickTime Streaming Server administration<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 1234 <!--1234--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Infoseek search agent ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--1234--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[VLC media player default port for UDP/RTP stream ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1241 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Nessus (software) | Nessus Security Scanner ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1270 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Microsoft [[System Center Operations Manager (SCOM) (formerly Microsoft Operations Manager (MOM)) agent ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1293 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Internet Protocol Security ([[IPSec) ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 1311 <!--1311--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Windows <code>RxMon.exe</code> | list_of_tcp_and_udp_port_numbers | Official | " <!--1311--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Dell [[OpenManage HTTPS<ref name=“dell-opnmang-srvr-admin”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1314 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Festival Speech Synthesis System server<ref name=“festival_7”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | [[Leet | 1337 <!–1337–> ]] | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Neo4j | neo4j-shell

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--1337--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Strapi<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--1337--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{dunno}} | list_of_tcp_and_udp_port_numbers | [[Sails.js default port<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--1337--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[WASTE Encrypted File Sharing Program

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1341 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Qubes ([[Manufacturing Execution System) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1344 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Internet Content Adaptation Protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1352 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | IBM [[Lotus Notes/IBM Lotus Domino | Domino Remote procedure call | (RPC) protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1360 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Mimer SQL ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1414 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[IBM WebSphere MQ (formerly known as MQSeries) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1417 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Timbuktu (software) | Timbuktu Service 1 Port ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1418 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Timbuktu Service 2 Port | list_of_tcp_and_udp_port_numbers | Official | - | 1419 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Timbuktu Service 3 Port | list_of_tcp_and_udp_port_numbers | Official | - | 1420 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Timbuktu Service 4 Port | list_of_tcp_and_udp_port_numbers | Official | - | 1431 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Reverse Gossip Transport Protocol (RGTP), used to access a General-purpose Reverse-Ordered Gossip Gathering System (GROGGS) bulletin board system | bulletin board, such as that implemented on the University of Cambridge | Cambridge University's Phoenix (computer) | Phoenix system ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1433 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Microsoft SQL Server database management system (MSSQL) server ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1434 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Microsoft SQL Server database management system (MSSQL) monitor | list_of_tcp_and_udp_port_numbers | Official | - | 1481 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | AIRS data interchange. | list_of_tcp_and_udp_port_numbers | Official | " | 1492 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Sid Meier's CivNet, a multiplayer remake of the original Sid Meier's Civilization game

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1494 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Citrix [[Independent Computing Architecture (ICA)<ref name=“citrixblogger”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1500 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM Tivoli Storage Manager server<ref name=“ibm-support-swg21625297”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1501 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | IBM Tivoli Storage Manager client scheduler<ref name="ibm-support-swg21625297"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1503 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Windows Live Messenger (Whiteboard and Application Sharing)<ref name=“msft-kb-927847”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1512 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Microsoft's [[Windows Internet Name Service (WINS) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 1513 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Garena game client

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 1521 <!--1521--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[nCUBE License Manager ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--1521--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Oracle database default listener, in future releases

<ref>

</ref> official port 2483 (TCP/IP) and 2484 (TCP/IP with SSL) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1524 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ingreslock, [[Ingres (database) | ingres ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 1527 <!--1527--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Oracle Net Services, formerly known as SQL*Net<ref name=“toadworld-1635”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--1527--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Derby Network Server | Apache Derby Network Server<ref name=“apache-derby-into”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1533 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[IBM Sametime Virtual Places Chat ]] | list_of_tcp_and_udp_port_numbers | Official | " | 1534 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Eclipse Target Communication Framework <ref name="Eclipse Foundation">{{cite web | //www.eclipse.org/tcf/ | accessdate=26 June 2018 | title=eclipse.org}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1540 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Enterprise server agent (ragent)<ref name=“enterprise1c-ports”>

</ref><ref name=“enterprise1c-admin-guide”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1541 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Enterprise master cluster manager (rmngr)<ref name="enterprise1c-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1542 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Enterprise configuration repository server<ref name="enterprise1c-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1545 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Enterprise cluster administration server (RAS)<ref name="enterprise1c-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1547 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Laplink ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 1550 <!--1550--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Enterprise debug server<ref name="enterprise1c-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--1550--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Gadu-Gadu (direct client-to-client)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1560–1590 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Enterprise cluster working processes<ref name="enterprise1c-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 1581 <!--1581--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Combat-net radio | MIL STD 2045-47001 VMF ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--1581--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM Tivoli Storage Manager web client<ref name=“ibm-support-swg21625297”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1582–1583 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | IBM Tivoli Storage Manager server web interface<ref name="ibm-support-swg21625297"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1583 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Pervasive PSQL<ref name=“PSQLVx_SP3_readme”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1589 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Cisco VLAN Query Protocol ([[VQP) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 1604 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[DarkComet remote administration tool (RAT)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1626 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[iSketch<ref name=“isketch-help”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1627 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | iSketch<ref name="isketch-help"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1628 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[LonTalk normal ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1629 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | LonTalk urgent | list_of_tcp_and_udp_port_numbers | Official | " | 1645 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Early deployment of [[RADIUS before RFC standardization was done using UDP port number 1645. Enabled for compatibility reasons by default on Cisco

and Juniper Networks RADIUS servers.<ref name=“juniper-radius-overview”>

</ref> Official port is 1812. TCP port 1645 must not be used.<ref name=“rfc6613”>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1646 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Old <code>radacct</code> port,{{when | date=August 2016}} RADIUS accounting protocol. Enabled for compatibility reasons by default on [[Cisco

and Juniper Networks RADIUS servers.<ref name=“juniper-radius-overview”/> Official port is 1813. TCP port 1646 must not be used.<ref name=“rfc6613”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1666 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Perforce<ref name=“perforce-cmdref-p4port”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1677 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Novell GroupWise clients in client/server access mode ]] | list_of_tcp_and_udp_port_numbers | Official | " | 1688 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Microsoft [[Key Management Service (KMS) for Windows Activation<ref name=“msft-tn-ee939272”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 1701 <!--1701--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Layer 2 Forwarding Protocol (L2F) ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--1701--> | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Layer 2 Tunneling Protocol (L2TP)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 1707 <!--1707--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Windward Studios games (vdmplay) ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--1707--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | L2TP/IPsec, for establish an initial connection<ref name="rfc3193">{{Cite IETF | title=Securing L2TP using IPsec | rfc=3193 | pages=8–14, 23–26 | last1=Patel | first1=Baiju V. | last2=Aboda | first2=Bernard | last3=Dixon | first3=William | last4=Zorn | first4=Glen | last5=Booth | first5=Skip | others=Thanks to Gurdeep Singh Pall, David Eitelbach, Peter Ford, Sanjay Anand, John Richardson, Rob Adams | date=November 2001 | publisher=[[Internet Engineering Task Force | IETF ]] | doi=10.17487/RFC3193 | access-date=2016-08-28}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1716 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[America's Army, a massively multiplayer online game (MMO)<ref name=“aa-manual-ls”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1719 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[H.323 registration and alternate communication ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1720 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[H.323 call signaling ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1723 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[Point-to-Point Tunneling Protocol (PPTP)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1755 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Microsoft Media Services (MMS,

ms-streaming

) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 1761 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Novell ZENworks<ref name=“novell-kb-3880659”>

</ref><ref name=“novell-zen11-b18151xi”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1783 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{sic | Decom | issioned}} Port 04/14/00, ms | list_of_tcp_and_udp_port_numbers | Official | - | 1801 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Microsoft Message Queuing ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1812 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[RADIUS authentication protocol,

radius

]] | list_of_tcp_and_udp_port_numbers | Official | - | 1813 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[RADIUS accounting protocol,

radius-acct

]] | list_of_tcp_and_udp_port_numbers | Official | - | 1863 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Microsoft Notification Protocol (MSNP), used by the Microsoft Messenger service and a number of instant messaging Official clients | Messenger clients ]] | list_of_tcp_and_udp_port_numbers | Official | " | 1880 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Node-RED<ref name=“nodered-docs-config”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1883 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[MQTT (formerly MQ Telemetry Transport) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1900 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[Simple Service Discovery Protocol (SSDP),<ref name=“apple-kb-HT202944”/> discovery of Universal Plug and Play | UPnP devices ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 1935 <!--1935--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Macromedia Flash Communications Macromedia Studio MX | Server MX, the precursor to Adobe Flash Media Server before Macromedia's acquisition by Adobe Inc | Adobe on December 3, 2005 ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--1935--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Real Time Messaging Protocol (RTMP)

, primarily used in Adobe Flash<ref name=“adobe-helpx-ports-firewalls”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1965 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | Gemini protocol, a lightweight, collaboratively designed protocol, striving to fill the gap between Gopher and HTTP<ref name="gemini-specification">{{Cite web | //gemini.circumlunar.space/docs/specification.html | access-date=2020-08-27 | date=2020-07-02 | quote=When Gemini is served over TCP/IP, servers should listen on port 1965 (the first manned Gemini mission, Gemini 3, flew in March '65). This is an unprivileged port, so it's very easy to run a server as a "nobody" user, even if e.g. the server is written in Go and so can't drop privileges in the traditional fashion | title=Gemini protocol specification }}{{Self-published source | date=July 2020 | ABOUTSELF=y}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 1967 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Cisco IOS IP Service Level Agreements ([[IP SLAs) Control Protocol

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 1970 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Netop Remote Control ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1972 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[InterSystems Caché ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1984 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Big Brother (software) | Big Brother ]] | list_of_tcp_and_udp_port_numbers | Official | - | 1985 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Cisco [[Hot Standby Router Protocol (HSRP)<ref name=“cisco-support-hsrp-faq”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Official | - | 1998 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Cisco X.25 over TCP (XOT) service ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2000 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Cisco [[Skinny Client Control Protocol (SCCP) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2010 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Spaceship Bridge Simulator<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2033 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Civilization IV multiplayer<ref name=“2k-support-201333253”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2049 | list_of_tcp_and_udp_port_numbers | {{yes | Yes, and SCTP}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Network File System (NFS)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2056 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Civilization IV multiplayer<ref name="2k-support-201333253"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2080 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Autodesk NLM (FLEXlm) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2082 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[cPanel default<ref name=“cpanel-ckb-login”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 2083 <!--2083--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Secure [[RADIUS Service (radsec) ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--2083--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | cPanel default [[Secure Sockets Layer | SSL<ref name=“cpanel-ckb-login”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 2086 <!--2086--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[GNUnet ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--2086--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[WHM | WebHost Manager default<ref name=“cpanel-ckb-login”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2087 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | WebHost Manager default [[Secure Sockets Layer | SSL<ref name=“cpanel-ckb-login”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2095 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | cPanel default web mail<ref name="cpanel-ckb-login"/> | list_of_tcp_and_udp_port_numbers | Official | " | 2096 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | cPanel default [[Secure Sockets Layer | SSL web mail<ref name=“cpanel-ckb-login”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2100 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Warzone 2100 multiplayer

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2101 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Networked Transport of RTCM via Internet Protocol (NTRIP)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2102 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Zephyr (protocol) | Zephyr Notification Service server ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2103 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Zephyr Notification Service <code>serv-hm</code> connection | list_of_tcp_and_udp_port_numbers | Official | - | 2104 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Zephyr Notification Service hostmanager | list_of_tcp_and_udp_port_numbers | Official | - | 2123 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[GPRS Tunnelling Protocol | GTP control messages (GTP-C) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2142 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[TDMoIP (TDM over IP) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2152 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[GPRS Tunnelling Protocol | GTP user data messages (GTP-U) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2159 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Gdbserver | GDB remote debug port ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 2181 <!--2101--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[EForward-document transport system ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--2101--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache ZooKeeper default client port

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2195 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apple Push Notification Service<ref name=“apple-kb-HT202944”/><ref name=“apple-kb-HT203609”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2196 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Apple Push Notification Service, feedback service<ref name="apple-kb-HT202944"/><ref name="apple-kb-HT203609"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2210 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[National Weather Service | NOAAPORT Broadcast Network ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2211 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[EMWIN ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2221 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[ESET anti-virus updates<ref name=“eset_user_guide_5_2”>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 2222 <!--2222--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[EtherNet/IP implicit messaging for IO data ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--2222--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[DirectAdmin Access<ref name=“directadmin-help-71”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2222–2226 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ESET Remote administrator<ref name="eset_user_guide_5_2" /> | list_of_tcp_and_udp_port_numbers | Official | - | 2240 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[General Dynamics Remote Encryptor Configuration Information Protocol (RECIPe) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2261 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[CoMotion master ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2262 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | CoMotion backup | list_of_tcp_and_udp_port_numbers | Official | " | " | 2302 <!--2302--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[ArmA multiplayer

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--2302--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Combat Evolved multiplayer host<ref name=“msft-kb-829469”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 2303 <!--2303--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ArmA multiplayer ''(default port for game +1)''{{Citation needed | date=August 2016}} | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--2303--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Combat Evolved multiplayer listener<ref name="msft-kb-829469"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2305 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ArmA multiplayer ''(default port for game +3)''{{Citation needed | date=August 2016}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2351 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[AOL Instant Messenger | AIM game LAN network port

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2368 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Ghost (blogging platform)<ref name=“gfb-config”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2369 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for [[BMC Control-M | BMC Control-M/Server Configuration Agent ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2370 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for BMC Control-M/Server, to allow the Control-M/Enterprise Manager to connect to the Control-M/Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2372 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for [[K9 Web Protection/parental controls, content filtering agent

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2375 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | [[Docker (software) | Docker REST API (plain) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2376 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | Docker REST API (SSL) | list_of_tcp_and_udp_port_numbers | Official | - | 2377 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | Docker Swarm cluster management communications<ref name="docker-swarm-tutorial">{{cite web | open-protocols-and-ports-between-the-hosts | title=Getting started with swarm mode | website=Docker Documentation | language=en-US | access-date=2018-05-08}}{{Self-published source | date=May 2018 | ABOUTSELF=y}}</ref>{{Self-published source | date=May 2018 | ABOUTSELF=y}} | list_of_tcp_and_udp_port_numbers | Official | - | " | 2379 <!--2379--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | CoreOS [[etcd client communication ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--2379--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[KGS Go Server<ref name=“gokgs-prefs”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2380 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | CoreOS etcd server communication | list_of_tcp_and_udp_port_numbers | Official | - | 2389 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | OpenView Session Mgr | list_of_tcp_and_udp_port_numbers | Official | - | 2399 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[FileMaker Data Access Layer (ODBC/JDBC) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2401 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Concurrent Versions System | CVS version control system password-based server ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2404 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[IEC 60870-5-104, used to send electric power telecontrol messages between two systems via directly connected data circuits ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2424 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[OrientDB database listening for binary client connections<ref name=“orientdb-docs-dbserver”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2427 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Media Gateway Control Protocol (MGCP) media gateway ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2447 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ovwdb—[[OpenView Network Node Manager (NNM) daemon ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2459 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Xrp | XRPL ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2480 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[OrientDB database listening for HTTP client connections<ref name=“orientdb-docs-dbserver”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2483 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Oracle database listening for insecure client connections to the listener, replaces port 1521

]] | list_of_tcp_and_udp_port_numbers | Official | - | 2484 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Oracle database listening for [[Secure Sockets Layer | SSL client connections to the listener ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2500 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | NetFS communication<ref>{{cite web | //aminet.net/package/comm/net/NetFS-revised | title=Remote filesystem and AREXX between Amigas | website=Aminet | language=en-US | access-date=2019-08-29}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2501 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | NetFS probe | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2535 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Multicast Address Dynamic Client Allocation Protocol (MADCAP).<ref name=“rfc2730-port”>

</ref> All standard messages are UDP datagrams.<ref name=“rfc2730-udp”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Wikilinks to full references" --> | - | 2541 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[LonTalk/IP ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2546–2548 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[EVault data protection services ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2593 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Ultima Online servers

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2598 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Citrix [[Independent Computing Architecture (ICA) with Session Reliability; port 1494 without session reliability<ref name=“citrixblogger”>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 2599 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Ultima Online'' servers{{Citation needed | date=August 2016}} | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2628 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[DICT <ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2638 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[SQL Anywhere database server<ref>

</ref><ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2710 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[XBT Tracker.<ref name=“sf-xbtt-port”>

</ref> UDP tracker extension is considered experimental.<ref name=“sf-xbtt-udp”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2727 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Media Gateway Control Protocol (MGCP) media gateway controller (call agent) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2775 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Short Message Peer-to-Peer (SMPP)

]] | list_of_tcp_and_udp_port_numbers | Official | - | 2809 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | iiop URL, per the [[CORBA 3.0.3 specification ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2811 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | gsi ftp, per the [[GridFTP specification ]] | list_of_tcp_and_udp_port_numbers | Official | " | 2827 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[I2P BOB Bridge<ref name=“geti2p-ports”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 2944 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Megaco text H.248 ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2945 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Megaco binary (ASN.1) H.248 | list_of_tcp_and_udp_port_numbers | Official | - | 2947 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[gpsd, GPS daemon ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2948 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Wireless Application Protocol | WAP push Multimedia Messaging Service (MMS) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 2949 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | WAP push secure (MMS) | list_of_tcp_and_udp_port_numbers | Official | - | 2967 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Symantec AntiVirus | Symantec System Center agent (SSC-AGENT) ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 3000 <!--3000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Cloud9 IDE server

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--3000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Ruby on Rails development default<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--3000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Meteor (web framework) | Meteor development default<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--3000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Resilio Sync,<ref name=“getsync-kb-204754759”>

</ref> spun from BitTorrent Sync. ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--3000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Distributed Interactive Simulation (DIS)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3004 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[iSync<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3020 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Common Internet File System (CIFS). See also port 445 for Server Message Block (SMB), a dialect of CIFS. ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3050 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | gds-db ([[Interbase/Firebird (database server) | Firebird databases) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3052 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[APC by Schneider Electric | APC PowerChute | PowerChute Network ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3074 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Xbox LIVE and [[Games for Windows – Live ]] | list_of_tcp_and_udp_port_numbers | Official | " | 3101 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[BlackBerry Enterprise Server communication protocol<ref name=“blkbr-kb-3735”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3128 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Squid (software) | Squid caching web proxy<ref name=“squid-doc-http_port”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3225 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Fibre Channel over IP (FCIP) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3233 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[WhiskerControl research control protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3260 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[iSCSI ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3268 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | msft-gc, Microsoft Global Catalog ([[LDAP service which contains data from Active Directory forests) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3269 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | msft-gc-ssl, Microsoft Global Catalog over [[Secure Sockets Layer | SSL (similar to port 3268, LDAP over Secure Sockets Layer | SSL) ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 3283 <!--3283--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Net Assistant'',<ref name="apple-kb-HT202944"/> a predecessor to ''Apple Remote Desktop'' | list_of_tcp_and_udp_port_numbers | Official | " <!--3283--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Apple Remote Desktop 2.0 or later<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3290 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[VATSIM | Virtual Air Traffic Simulation (VATSIM) network voice communication

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3305 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[OFTP | Odette File Transfer Protocol (OFTP) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3306 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[MySQL database system<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 3323 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[DECE GEODI Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3332 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Thundercloud DataPath Overlay Control | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 3333 <!--3333--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Eggdrop, an IRC bot default port<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--3333--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Network Caller ID server]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--3333--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[CruiseControl.rb<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3351 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Pervasive PSQL<ref name=“PSQLVx_SP3_readme”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3386 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[GTP' 3GPP GSM/UMTS Call detail record | CDR logging protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3389 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Microsoft Terminal Server ([[Remote Desktop Protocol | RDP) officially registered as Windows Based Terminal (WBT)<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3396 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Novell NDPS Printer Agent ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3412 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | xmlBlaster | list_of_tcp_and_udp_port_numbers | Official | - | 3423 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Xware xTrm Communication Protocol | list_of_tcp_and_udp_port_numbers | Official | - | 3424 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Xware xTrm Communication Protocol over SSL | list_of_tcp_and_udp_port_numbers | Official | - | 3455 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Resource Reservation Protocol (RSVP) ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 3478 <!--3478--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[STUN, a protocol for NAT traversal<ref name=STUN>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--3478--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Traversal Using Relay NAT | TURN, a protocol for NAT traversal<ref name=TURN>

</ref> (extension to STUN) ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--3478--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | STUN Behavior Discovery.<ref name="rfc5780">{{Cite IETF | title=NAT Behavior Discovery Using Session Traversal Utilities for NAT (STUN) | rfc=5780 | sectionname=Port Numbers and SRV Registry | section=9.2 | page=25 | last1=MacDonald | first1=Derek C. | last2=Lowekamp | first2=Bruce B. | others=Thanks to Dan Wing, Cullen Jennings, and Magnus Westerlund for detailed comments. | date=May 2010 | publisher=[[Internet Engineering Task Force | IETF ]] | accessdate=2017-07-28 | ...}}</ref> See also port 5349. | list_of_tcp_and_udp_port_numbers | Official | " | 3479 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[PlayStation Network<ref name=“playstation-manual-ps4-nw_test”>

&nbsp;…}}</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3480 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | PlayStation Network<ref name="playstation-manual-ps4-nw_test"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 3483 <!--3483--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Slim Devices discovery protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--3483--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Slim Devices SlimProto protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3493 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Network UPS Tools (NUT) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3516 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Smartcard Port | list_of_tcp_and_udp_port_numbers | Official | - | 3527 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Microsoft Message Queuing ]] | list_of_tcp_and_udp_port_numbers | Official | " | 3535 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[SMTP alternate<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3544 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Teredo tunneling ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3632 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[Distcc, distributed compiler<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3645 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Cyc ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 3659 <!--3659--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Apple [[Simple Authentication and Security Layer | SASL, used by Mac OS X Server Password Server<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--3659--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Battlefield 4 | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3667 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Information Exchange | list_of_tcp_and_udp_port_numbers | Official | - | 3689 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[Digital Audio Access Protocol (DAAP), used by Apple Inc. | Apple's iTunes and AirPlay<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3690 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Subversion (software) | Subversion (SVN)<ref name=“apple-kb-HT202944”/> version control system ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3702 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Web Services Dynamic Discovery (WS-Discovery), used by various components of Windows Vista and later ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 3724 <!--3724--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Some [[Blizzard Entertainment | Blizzard games<ref name=“blizzard” >

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--3724--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Club Penguin Disney online game for kids ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3725 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Netia NA-ER Port | list_of_tcp_and_udp_port_numbers | Official | - | 3749 | {{yes}} | {{yes}} | //www.cimcor.com/cimtrak/ CimTrak] registered port | Official | - | 3768 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | RBLcheckd server daemon | list_of_tcp_and_udp_port_numbers | Official | - | 3784 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Bidirectional Forwarding Detection (BFD)for IPv4 and IPv6 (Single Hop) (RFC 5881) | list_of_tcp_and_udp_port_numbers | Official | " | 3785 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | VoIP program used by [[Ventrilo ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3799 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[RADIUS change of authorization ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3804 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Harman Professional [[HiQnet protocol ]] | list_of_tcp_and_udp_port_numbers | Official | " | 3825 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | RedSeal Networks client/server connection{{citation needed | date=November 2011}} | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 3826 <!--3826--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | WarMUX game server | list_of_tcp_and_udp_port_numbers | Official | " <!--3826--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | RedSeal Networks client/server connection{{citation needed | date=November 2011}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3835 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | RedSeal Networks client/server connection{{citation needed | date=November 2011}} | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3830 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | System Management Agent, developed and used by Cerner to monitor and manage solutions | list_of_tcp_and_udp_port_numbers | Official | " | 3856 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ERP Server Application used by F10 Software | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3880 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | IGRS | list_of_tcp_and_udp_port_numbers | Official | - | 3868 | list_of_tcp_and_udp_port_numbers | {{yes | Yes, and SCTP}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Diameter (protocol) | Diameter base protocol (RFC 3588) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3872 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Oracle Enterprise Manager Remote Agent ]] | list_of_tcp_and_udp_port_numbers | Official | - | 3900 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | udt_os, [[IBM U2 | IBM UniData UDT OS<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 3960 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Warframe online interaction

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3962 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Warframe'' online interaction{{Citation needed | date=August 2016 | reason=Unreliable user-generated sources exist, with an official forum statement from a Warframe staff member pointing to UDP ports 4950 and 4955.}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3978 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[OpenTTD game (masterserver and content service) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 3979 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''OpenTTD'' game | list_of_tcp_and_udp_port_numbers | Unofficial | - | 3999 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Norman distributed scanning service | list_of_tcp_and_udp_port_numbers | Official | " | 4000 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Diablo II game ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 4001 <!--4001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Microsoft Ants game ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--4001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | CoreOS [[etcd client communication ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4018 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Protocol information and warnings{{clarify | date=September 2015}} | list_of_tcp_and_udp_port_numbers | Official | " | 4035 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM Rational Developer for System z Remote System Explorer Daemon ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4045 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Solaris (operating system) | Solaris lockd NFS lock daemon/manager ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4050 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Mud Master Chat protocol (MMCP) - Peer-to-peer communications between [[MUD clients.<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4069 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Minger Email Address Verification Protocol<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 4070 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Amazon Echo Dot (Amazon Alexa) streaming connection with Spotify<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4089 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | OpenCORE Remote Control Service | list_of_tcp_and_udp_port_numbers | Official | - | 4090 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Kerio Technologies | Kerio ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4093 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | PxPlus Client server interface [[ProvideX ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4096 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Ascom (company) | Ascom Timeplex Bridge Relay Element (BRE) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4105 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Shofar (ShofarNexus) | list_of_tcp_and_udp_port_numbers | Official | - | 4111 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[Xgrid<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4116 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Smartcard-TLS | list_of_tcp_and_udp_port_numbers | Official | " | 4125 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Microsoft Remote Web Workplace administration ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4172 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Teradici PCoIP ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4190 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ManageSieve<ref>{{cite web | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml | title=Service Name and Transport Protocol Port Number Registry | publisher=Iana.org | date= | accessdate= 2013-10-08}}</ref> | list_of_tcp_and_udp_port_numbers | Official | " | 4198 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Couch Potato Android app<ref>{{cite web | //github.com/rarcher/Couch-Potato-Server/blob/master/Communications%20Protocol/src/codes/soloware/couchpotato/settings/Network.java | title=Couch-Potato-Server/Network.java at master · rarcher/Couch-Potato-Server}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4201 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[TinyMUD and various derivatives ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4222 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | NATS server default port<ref>{{cite web | title=Install and Run NATS Server | //nats.io/documentation/tutorials/gnatsd-install/}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4226 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Aleph One (computer game) | Aleph One, a computer game ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 4242 <!--4242--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Orthanc (software) | OrthancDICOM server<ref name=“orthanc-book-configuration”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--4242--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Quassel distributed IRC client ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 4243 <!--4243--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Docker (software) | Docker implementations, redistributions, and setups default<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--4243--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[CrashPlan ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4244 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Viber<ref name=“viber”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4303 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Simple Railroad Command Protocol (SRCP) | list_of_tcp_and_udp_port_numbers | Official | - | 4307 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[TrueConf Client - TrueConf Server media data exchange<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4321 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[RWhois | Referral Whois (RWhois) Protocol<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 4444 <!--4444--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Oracle Corporation | Oracle WebCenter Content: Content Server—Intradoc Socket port. (formerly known as Oracle Universal Content Management). ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--4444--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Metasploit's default listener port<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--4444--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Xvfb X server virtual frame buffer service ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4444–4445 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[I2P HTTP/S proxy ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4486 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Integrated Client Message Service (ICMS) | list_of_tcp_and_udp_port_numbers | Official | - | 4488 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Apple Wide Area Connectivity Service, used by [[Back to My Mac<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4500 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[IPsec Passthrough | IPSec NAT Traversal<ref name=“apple-kb-HT202944”/> (RFC 3947, RFC 4306) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4502–4534 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Microsoft Silverlight connectable ports under non-elevated trust | list_of_tcp_and_udp_port_numbers | Official | " | 4505–4506 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Salt (software) | Salt master ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4534 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Armagetron Advanced server default ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4560 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | default [[Log4j socketappender port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4567 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Sinatra (software) | Sinatra default server port in development mode (HTTP) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4569 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Inter-Asterisk eXchange (IAX2)]] | list_of_tcp_and_udp_port_numbers | Official | - | 4604 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Identity Registration Protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4605 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Direct End to End Secure Chat Protocol ]] | list_of_tcp_and_udp_port_numbers | Official | " | 4610–4640 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[QualiSystems TestShell Suite Services ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 4662 <!--4662--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | OrbitNet Message Service | list_of_tcp_and_udp_port_numbers | Official | " <!--4662--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for older versions of [[eMule<ref name=“eMule”>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4664 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Google Desktop | Google Desktop Search ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4672 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Default for older versions of [[eMule<ref name=“eMule” />]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4711 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[eMule optional web interface<ref name=“eMule” /> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 4713 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[PulseAudio sound server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4728 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Computer Associates Desktop and Server Management (DMP)/Port Multiplexer<ref name="SANS">{{cite web | //isc.sans.edu/port.html | title=Port Details - Port 4728 | publisher=SANS}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 4730 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Gearman's job server ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4739 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[IP Flow Information Export ]] | list_of_tcp_and_udp_port_numbers | Official | " | 4747 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apprentice (software) | Apprentice ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4753 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | SIMON (service and discovery) | list_of_tcp_and_udp_port_numbers | Official | - | 4789 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Virtual eXtensible Local Area Network ([[Virtual Extensible LAN | VXLAN) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4791 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[RDMA over Converged Ethernet | IP Routable RocE (RoCEv2) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4840 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | OPC UA Connection Protocol (TCP) and OPC UA Multicast Datagram Protocol (UDP) for [[OPC Unified Architecture from OPC Foundation ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4843 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | OPC UA TCP Protocol over TLS/SSL for [[OPC Unified Architecture from OPC Foundation ]] | list_of_tcp_and_udp_port_numbers | Official | - | 4847 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Web Fresh Communication, Quadrion Software & Odorless Entertainment | list_of_tcp_and_udp_port_numbers | Official | " | 4848 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Java, Glassfish Application Server administration default | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4894 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[LysKOM Protocol A ]] | list_of_tcp_and_udp_port_numbers | Official | " | 4944 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[DrayTek DSL Status Monitoring<ref name=“draytek-support-5365”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 4949 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Munin Resource Monitoring Tool | list_of_tcp_and_udp_port_numbers | Official | - | 4950 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Cylon Controls UC32 Communications Port | list_of_tcp_and_udp_port_numbers | Official | " | " | 5000 <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Universal Plug and Play | UPnP—Windows network device interoperability ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[VTun, VPN Software ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[ASP.NET_Core — Development Webserver ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[FlightGear multiplayer<ref name=“auto”>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Synology Inc. Management Console, File Station, Audio Station ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Flask (web framework) | Flask Development Webserver ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Heroku console access ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Docker (software) | Docker Registry<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[AT&T U-verse public, educational, and government access (PEG) streaming over Hypertext Transfer Protocol | HTTP<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[High-Speed SECS Message Services

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[3CX Phone System Legacy Management Console ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5000–5500 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | ''[[League of Legends, a multiplayer online battle arena video game<ref name=“riotgames-kb-201752664”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 5001 <!--5001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Slingbox and Slingplayer ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Iperf (Tool for measuring TCP and UDP bandwidth performance) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Synology Inc. Secured Management Console, File Station, Audio Station ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[3CX Phone System Secured Management Console, Secure API ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5002 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | //www.assa.se/Other/ASSA/Products/Broschyrer%20Svenska/Passersystem/ARX-Passersystem.pdf ARX Passersystem, Användarmanual] {{webarchive | //www.assa.se/Other/ASSA/Products/Broschyrer%20Svenska/Passersystem/ARX-Passersystem.pdf | date=August 21, 2010 }}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5003 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[FileMaker – name binding and transport<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5004 | list_of_tcp_and_udp_port_numbers | {{yes | Yes, and DCCP}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Real-time Transport Protocol media data (RTP) (RFC 3551, RFC 4571) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5005 | list_of_tcp_and_udp_port_numbers | {{yes | Yes, and DCCP}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[RTP Control Protocol | Real-time Transport Protocol control protocol (RTCP) (RFC 3551, RFC 4571) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 5007 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Palo Alto Networks - User-ID agent | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5010 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | TelePath (the IBM FlowMark [[workflow-management system messaging platform)<ref name=“Hill”>

</ref><br />The TCP port is now used for: IBM WebSphere MQ Workflow ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5011 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | TelePath (the IBM FlowMark [[workflow-management system messaging platform)<ref name=“Hill” /> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5025 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | scpi-raw [[Standard Commands for Programmable Instruments ]] | list_of_tcp_and_udp_port_numbers | Official | " | 5029 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | Sonic Robo Blast 2 and Sonic Robo Blast 2 Kart servers | Unofficial | " | 5031 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | AVM CAPI-over-TCP ([[ISDN over Ethernet tunneling)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5037 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Android ADB server | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5044 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Standard port in Filebeats/Logstash implementation of Lumberjack protocol. | list_of_tcp_and_udp_port_numbers | Official | - | 5048 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Texai Message Service | list_of_tcp_and_udp_port_numbers | Official | " | 5050 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Yahoo! Messenger ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5051 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ita-agent [[NortonLifeLock | Symantec Intruder Alert<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5060 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Session Initiation Protocol (SIP)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5061 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Session Initiation Protocol (SIP) over Transport Layer Security | TLS ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5062 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Localisation access | list_of_tcp_and_udp_port_numbers | Official | - | 5064 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[EPICS Channel Access server<ref name=“epics-r3.14-reference-manual”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5065 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | EPICS Channel Access repeater beacon<ref name="epics-r3.14-reference-manual"/> | list_of_tcp_and_udp_port_numbers | Official | " | 5070 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | [[Binary Floor Control Protocol (BFCP)<ref name=“rfc4582”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5084 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[EPCglobal Low Level Reader Protocol (LLRP) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5085 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | EPCglobal Low Level Reader Protocol ([[LLRP) over Transport Layer Security | TLS ]] | list_of_tcp_and_udp_port_numbers | Official | " | 5090 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[3CX Phone System 3CX Tunnel Protocol, 3CX App API, 3CX Session Border Controller ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5093 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[SafeNet | SafeNet, Inc Sentinel LM, Sentinel RMS, License Manager, client-to-server ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5099 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | SafeNet, Inc Sentinel LM, Sentinel RMS, License Manager, server-to-server | list_of_tcp_and_udp_port_numbers | Official | " | 5104 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM IBM Tivoli Framework | Tivoli Framework NetCOOL/Impact<ref>

</ref> HTTP Service ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5121 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Neverwinter Nights ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5124 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | TorgaNET ([[Micronational Darknet) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5125 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | TorgaNET ([[Micronational Intelligence Darknet) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5150 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ATMP Ascend Tunnel Management Protocol<ref>{{cite web | //tools.ietf.org/html/rfc2167 | title=RFC 2107, Ascend Tunnel Management Protocol | publisher=IETF | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | " | 5151 <!--5151--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Environmental Systems Research Institute | ESRI SDE Instance ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--5151--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ESRI SDE Remote Start | list_of_tcp_and_udp_port_numbers | Official | - | 5154 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[BZFlag ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5172 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | PC over IP Endpoint Management<ref>{{cite web | //www.speedguide.net/port.php | title=Port 5172 (tcp/udp) | access-date=2016-07-25}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 5190 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[AOL Instant Messenger protocol.<ref name=“apple-kb-HT202944”/> The chat app is defunct

.<ref name=“vice-rip-aim”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 5198 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Echolink | EchoLink VoIP Amateur Radio Software (Voice) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5199 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | EchoLink VoIP Amateur Radio Software (Voice) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5200 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | EchoLink VoIP Amateur Radio Software (Information) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5201 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Iperf3 (Tool for measuring TCP and UDP bandwidth performance) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5222 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | [[Extensible Messaging and Presence Protocol (XMPP) client connection<ref name=“apple-kb-HT202944”/><ref name=“rfc3920”>

</ref><ref name=“rfc6120”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 5223 <!--5223--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apple Push Notification Service<ref name=“apple-kb-HT202944”/><ref name=“apple-kb-HT203609”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5223--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Extensible Messaging and Presence Protocol (XMPP) client connection over [[Secure Sockets Layer | SSL ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 5228 <!--5228--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | HP Virtual Room Service | list_of_tcp_and_udp_port_numbers | Official | " <!--5228--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Google Play, Android Cloud to Device Messaging Service, Google Cloud Messaging ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5242 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Viber<ref name=“viber” /> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5243 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Viber<ref name="viber" /> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5246 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Control And Provisioning of Wireless Access Points ([[CAPWAP) CAPWAP control<ref name=“rfc5415”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5247 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Control And Provisioning of Wireless Access Points (CAPWAP) CAPWAP data<ref name=rfc5415 /> | list_of_tcp_and_udp_port_numbers | Official | - | 5269 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Extensible Messaging and Presence Protocol (XMPP) server-to-server connection<ref name="apple-kb-HT202944"/><ref name=rfc3920 /><ref name=rfc6120 /> | list_of_tcp_and_udp_port_numbers | Official | - | 5280 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Extensible Messaging and Presence Protocol (XMPP)<ref>{{cite web | //xmpp.org/extensions/xep-0124.html | title=Bidirectional-streams Over Synchronous HTTP (BOSH) | first1=Ian | last1=Paterson | first2=Dave | last2=Smith | first3=Peter | last3=Saint-Andre | first4=Jack | last4=Moffitt | first5=Lance | last5=Stout | first6=Winfried | last6=Tilanus | date=16 November 2016 | website=xmpp.org}}</ref> | list_of_tcp_and_udp_port_numbers | Official | " | 5281 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Extensible Messaging and Presence Protocol (XMPP)<ref>{{cite web | //xmpp.org/extensions/xep-0124.html | Bidirectional-streams Over Synchronous HTTP (BOSH) with SSL | publisher=Xmpp.org | date= | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5298 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Extensible Messaging and Presence Protocol (XMPP)<ref>{{cite web | //xmpp.org/extensions/xep-0174.html | Serverless Messaging | publisher=Xmpp.org | date= | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 5310 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | ''[[Outlaws (1997 video game) | Outlaws, a 1997 first-person shooter video game

]] | list_of_tcp_and_udp_port_numbers | Official | - | 5318 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | [[Certificate Management over CMS<ref name=“rfc6402”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 5349 <!--5349--> | {{Yes-No}} | list_of_tcp_and_udp_port_numbers | {{Yes-No}} | list_of_tcp_and_udp_port_numbers | [[STUN over Transport Layer Security | TLS/Datagram Transport Layer Security | DTLS, a protocol for NAT traversal<ref name=STUN /> ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--5349--> | {{Yes-No}} | list_of_tcp_and_udp_port_numbers | {{Yes-No}} | list_of_tcp_and_udp_port_numbers | [[Traversal Using Relay NAT | TURN over TLS/DTLS, a protocol for NAT traversal<ref name=TURN /> ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--5349--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | STUN Behavior Discovery over TLS.<ref name="rfc5780"/> See also port 3478. | list_of_tcp_and_udp_port_numbers | Official | - | 5351 | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[NAT Port Mapping Protocol and Port Control Protocol—client-requested configuration for connections through Network Address Translation | network address translators and Firewall (computing) | firewalls ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5353 | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Multicast DNS (mDNS)<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5355 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[LLMNR | Link-Local Multicast Name Resolution (LLMNR), allows Host (network) | hosts to perform Hostname resolution | name resolution for hosts on the same Local area network | local link (only provided by Windows Vista and Server 2008) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 5357 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Web Services for Devices (WSDAPI) (only provided by Windows Vista, Windows 7 and Server 2008) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5358 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Web Services for Devices | WSDAPI Applications to Use a Secure Channel (only provided by Windows Vista, Windows 7 and Server 2008) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5394 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Kega Fusion, a Sega multi-console emulator<ref name="Niobium">{{cite web | //www.arcadezone.org/emulation/genesis/Readme.txt | title=Kega Fusion Mini-Manual | no by-line.--> | date=2010-01-16 | website=arcadezone.org | publisher=Niobium's Arcade Zone | accessdate=2013-10-26 | url-status=dead | //www.arcadezone.org/emulation/genesis/Readme.txt | archivedate=October 29, 2013 }}</ref><ref>{{cite web | //gamingpwnage.webs.com/PC/archive/fusion_manual.txt | title=Kega Fusion Mini-Manual | no by-line.--> | website=gamingpwnage.webs.com | publisher=GamingPwnage | accessdate=2013-10-26 | url-status=dead | //gamingpwnage.webs.com/PC/archive/fusion_manual.txt | archivedate=October 29, 2013 }}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5402 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Multicast File Transfer Protocol (MFTP)<ref name=“draft-miller-mftp-spec-03”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Official | - | 5405 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[NetSupport Manager ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5412 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[IBM Rational Synergy (Telelogic Synergy) (Continuus CM) Message Router ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5413 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Wonderware SuiteLink service ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5417 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | SNS Agent | list_of_tcp_and_udp_port_numbers | Official | - | 5421 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[NetSupport Manager ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5432 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[PostgreSQL<ref name=“apple-kb-HT202944”/> database system ]] | list_of_tcp_and_udp_port_numbers | Official | " | 5433 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Bouwsoft file/webserver<ref>{{cite web | //www.bouwsoft.be | title=Use IT Group - Bouwsoft - Groensoft | publisher=Bouwsoft.be | date= | accessdate= 2013-10-08}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5445 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Cisco Unified Video Advantage{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5480 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[VMware VAMI (Virtual Appliance Management Infrastructure)—used for initial setup of various administration settings on Virtual Appliances designed using the VAMI architecture. ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5481 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Schneider Electric's ClearSCADA (SCADA implementation for Windows) — used for client-to-server communication.<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5495 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[TM1 | IBM Cognos TM1 Admin server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5498 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Hotline Communications | Hotline tracker server connection ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5499 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Hotline tracker server discovery | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 5500 <!--5500--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Hotline control connection | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5500--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Virtual Network Computing | VNC Remote Frame Buffer RFB protocol—for incoming listening viewer ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5501 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Hotline file transfer connection | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5517 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Software | Setiqueue Proxy server client for SETI@Home project ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5550 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Hewlett-Packard Data Protector

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5554 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Fastboot default wireless port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 5555 <!--5555--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Oracle Corporation | Oracle WebCenter Content: Inbound Refinery—Intradoc Socket port. (formerly known as Oracle Universal Content Management). Port though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5555--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Freeciv versions up to 2.0, Hewlett-Packard Data Protector, Comparison of disk encryption software | McAfee EndPoint Encryption Database Server, Session Announcement Protocol | SAP, Default for Microsoft Dynamics CRM 4.0, Softether VPN default port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5556 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Freeciv, Oracle WebLogic Server Node Manager<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5568 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Session Data Transport (SDT), a part of [[Architecture for Control Networks (ACN)<ref name=“ANSI E1.17-2010”>ANSI E1.17-2010</ref>

]] | list_of_tcp_and_udp_port_numbers | Official | " | 5601 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Kibana

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5631 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | pcANYWHEREdata, [[NortonLifeLock | Symantec Pcanywhere | pcAnywhere (version 7.52 and later<ref>

</ref>)<ref>

</ref> data ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5632 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | pcANYWHEREstat, Symantec pcAnywhere (version 7.52 and later) status | list_of_tcp_and_udp_port_numbers | Official | " | 5656 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM Lotus Sametime p2p file transfer ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5666 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[NRPE (Nagios) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5667 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | NSCA (Nagios) | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 5670 <!--5670--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[FILEMQ ZeroMQ File Message Queuing Protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - <!--5670--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[ZRE-DISC ZeroMQ Realtime Exchange Protocol (Discovery)]] | list_of_tcp_and_udp_port_numbers | Official | - | 5671 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[Advanced Message Queuing Protocol (AMQP)<ref name=“ampq”>

</ref> over Transport Layer Security | TLS ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5672 | list_of_tcp_and_udp_port_numbers | {{Yes | Yes, and SCTP}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | Advanced Message Queuing Protocol (AMQP)<ref name="ampq"/> | list_of_tcp_and_udp_port_numbers | Official | - | 5683 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Constrained Application Protocol (CoAP) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5684 | list_of_tcp_and_udp_port_numbers | {{yes-no}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Constrained Application Protocol Secure (CoAPs) | list_of_tcp_and_udp_port_numbers | Official | " | 5693 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Nagios Cross Platform Agent (NCPA)<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5701 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Hazelcast default communication port<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5722 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Microsoft RPC, DFSR (SYSVOL) Replication Service{{Citation needed | date=June 2017}} | list_of_tcp_and_udp_port_numbers | Official | " | 5718 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Microsoft DPM Data Channel (with the agent coordinator) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5719 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Microsoft DPM Data Channel (with the protection agent) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5723 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[System Center Operations Manager<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 5724 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Operations Manager Console | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5741 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | IDA Discover Port 1 | list_of_tcp_and_udp_port_numbers | Official | - | 5742 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | IDA Discover Port 2 | list_of_tcp_and_udp_port_numbers | Official | " | " | 5800 <!--5800--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Virtual Network Computing | VNC Remote Frame Buffer RFB protocol over HTTP ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--5800--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[ProjectWise | ProjectWise Server<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 5900 <!--5900--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[RFB protocol | Remote Frame Buffer protocol (RFB) ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--5900--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Virtual Network Computing (VNC) Remote Frame Buffer RFB protocol<ref name=“apple-kb-HT202944”/><ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5931 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[AMMYY admin Remote Control ]] | list_of_tcp_and_udp_port_numbers | Official | " | 5938 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[TeamViewer remote desktop protocol<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 5984 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[CouchDB database server ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5985 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Windows PowerShell Default psSession Port<ref name=“Enter-PSSession”>

</ref> WS-Management | Windows Remote Management Service (WinRM-HTTP)<ref name=“microsoft1”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5986 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Windows PowerShell Default psSession Port<ref name="Enter-PSSession"/> [[WS-Management | Windows Remote Management Service (WinRM-HTTPS)<ref name=“microsoft1”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 5988–5989 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Common Information Model (computing) | CIM-XML (DMTF Protocol)<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Official | - | 6000–6063 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[X Window System | X11—used between an X client and server over the network ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 6005 <!--6005--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for [[BMC Software BMC Control-M | Control-M/Server—Socket used for communication between Control-M processes—though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--6005--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for [[Camfrog chat & cam client ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6009 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[JD Edwards EnterpriseOne ERP system JDENet messaging client listener ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6050 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Arcserve backup ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6051 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Arcserve backup | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6086 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Peer Distributed Transfer Protocol (PDTP), FTP like file server in a P2P network ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 6100 <!--6100--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Vizrt System ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--6100--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Ventrilo authentication for version 3 ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6101 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Backup Exec Agent Browser{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6110 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | softcm, [[Hewlett-Packard | HP Softbench CM ]] | list_of_tcp_and_udp_port_numbers | Official | - | 6111 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | spc, [[Hewlett-Packard | HP Softbench Sub-Process Control ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 6112 <!--6112--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | dtspcd, execute commands and launch applications remotely | list_of_tcp_and_udp_port_numbers | Official | " <!--6112--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Blizzard Entertainment | Blizzard's Battle.net gaming service and some games,<ref name=“blizzard” /> ArenaNet gaming service, Relic Entertainment | Relic gaming service ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--6112--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Club Penguin Disney online game for kids ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6113 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Club Penguin Disney online game for kids, Used by some Blizzard Entertainment | Blizzard games<ref name=“blizzard” /> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6136 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[ObjectDB database server<ref name=“objectdb-jpa-setting-server”>

port on which the server is listening for new connections. Usually the default port

6136

should be specified.&nbsp;…}}

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6159 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[ARINC 840 Electronic flight bag | EFB Application Control Interface ]] | list_of_tcp_and_udp_port_numbers | Official | " | 6200 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Oracle WebCenter Content Portable: Content Server (With Native UI) and Inbound Refinery ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6201 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Admin | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6225 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Content Server Web UI | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6227 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | JavaDB | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6240 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Capture | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6244 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Content Server—Intradoc Socket port | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6255 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Inbound Refinery—Intradoc Socket port | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6257 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[WinMX (see also 6699) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6260 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | planet M.U.L.E. | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6262 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Sybase [[Advantage Database Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6343 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[SFlow, sFlow traffic monitoring ]] | list_of_tcp_and_udp_port_numbers | Official | - | 6346 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[gnutella | gnutella-svc, gnutella (FrostWire, Limewire, Shareaza, etc.) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 6347 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | gnutella-rtr, Gnutella alternate | list_of_tcp_and_udp_port_numbers | Official | - | 6350 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | App Discovery and Access Protocol | list_of_tcp_and_udp_port_numbers | Official | - | 6379 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Redis key-value data store ]] | list_of_tcp_and_udp_port_numbers | Official | " | 6389 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[EMC Corporation | EMC CLARiiON ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6432 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | PgBouncer—A connection pooler for PostgreSQL | list_of_tcp_and_udp_port_numbers | Official | " | 6436 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Leap Motion Websocket Server TLS ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6437 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Leap Motion Websocket Server | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6444 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Sun Grid Engine Qmaster Service ]] | list_of_tcp_and_udp_port_numbers | Official | - | 6445 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Sun Grid Engine Execution Service | list_of_tcp_and_udp_port_numbers | Official | " | 6463–6472 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Discord (software) | Discord RPC<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6464 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Port assignment for medical device communication in accordance to [[ISO/IEEE 11073 | IEEE 11073-20701 ]] | list_of_tcp_and_udp_port_numbers | Official | " | 6502 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Netop Remote Control | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6513 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[NETCONF over Transport Layer Security | TLS ]] | list_of_tcp_and_udp_port_numbers | Official | - | 6514 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Syslog over TLS<ref>{{cite web | //tools.ietf.org/html/rfc5425 | title=RFC 5424 | publisher=IETF | date=2008-11-10 | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 6515 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Elipse Software | Elipse RPC Protocol (REC) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 6516 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Windows Admin Center ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6543 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Pyramid Default Pylons Pyramid web service port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6556 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Check MK Agent ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6566 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Scanner Access Now Easy | SANE (Scanner Access Now Easy)—SANE network scanner daemon<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 6560–6561 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Speech-Dispatcher daemon

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6571 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Windows Live FolderShare client ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 6600 <!--6600--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Microsoft [[Hyper-V Live ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--6600--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Music Player Daemon (MPD) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6601 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Microsoft Forefront Threat Management Gateway ]] | list_of_tcp_and_udp_port_numbers | Official | - | 6602 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Microsoft Windows WSS Communication | list_of_tcp_and_udp_port_numbers | Official | - | 6619 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | odette-ftps, [[OFTP | Odette File Transfer Protocol (OFTP) over Transport Layer Security | TLS/Secure Sockets Layer | SSL ]] | list_of_tcp_and_udp_port_numbers | Official | - | 6622 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Multicast FTP | list_of_tcp_and_udp_port_numbers | Official | - | 6653 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[OpenFlow

]] | list_of_tcp_and_udp_port_numbers | Official | " | 6660–6664 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Internet Relay Chat (IRC) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6665–6669 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Internet Relay Chat (IRC) ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 6679 <!--6679--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Osorno Automation Protocol (OSAUT) | list_of_tcp_and_udp_port_numbers | Official | " <!--6679--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Internet Relay Chat | IRC Secure Sockets Layer | SSL (Secure Internet Relay Chat)—often used ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6690 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Synology Cloud station | list_of_tcp_and_udp_port_numbers | Unofficial | - | 6697 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Internet Relay Chat | IRC Secure Sockets Layer | SSL (Secure Internet Relay Chat)—often used ]] | list_of_tcp_and_udp_port_numbers | Official | " | 6699 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[WinMX (see also 6257) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6715 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | AberMUD and derivatives default port | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6771 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BitTorrent [[Local Peer Discovery ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6783–6785 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Splashtop Remote server broadcast ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6881–6887 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[BitTorrent (protocol) | BitTorrent part of full range of ports used most often ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 6888 <!--6888--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | MUSE | list_of_tcp_and_udp_port_numbers | Official | " <!--6888--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BitTorrent part of full range of ports used most often | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6889–6890 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BitTorrent part of full range of ports used most often | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6891–6900 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BitTorrent part of full range of ports used most often | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6891–6900 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Windows Live Messenger (File transfer) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 6901 <!--6901--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Windows Live Messenger (Voice) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--6901--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BitTorrent part of full range of ports used most often | list_of_tcp_and_udp_port_numbers | Unofficial | " | 6902–6968 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BitTorrent part of full range of ports used most often | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 6969 <!--6969--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | acmsoda | list_of_tcp_and_udp_port_numbers | Official | " <!--6969--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | BitTorrent tracker | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 6970–6999 <!--6970-6999--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BitTorrent part of full range of ports used most often | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--6970–9999--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[QuickTime Streaming Server<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 7000 <!--7000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for [[Vuze's built-in HTTPS Bittorrent Tracker ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Avira Server Management Console ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 7001 <!--7001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Avira Server Management Console | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for [[BEA Systems | BEA WebLogic | WebLogic Server's HTTP server, though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7002 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for BEA WebLogic Server's HTTPS server, though often changed during installation | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7005 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for [[BMC Software BMC Control-M | Control-M/Server and Control-M/Agent for Agent-to-Server, though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7006 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for BMC Software Control-M/Server and Control-M/Agent for Server-to-Agent, though often changed during installation | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7010 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for Cisco AON AMC (AON Management Console)<ref>{{cite web | author=Worldwide | //www.cisco.com/en/US/products/ps6692/Products_Sub_Category_Home.html | title=Application-Oriented Networking – Cisco Systems | publisher=Cisco.com | date= | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7022 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Database mirroring endpoints<ref>{{cite web | //technet.microsoft.com/en-us/library/ms179511(v=sql.105).aspx | title= Database Mirroring Endpoint | work= SQL Server 2008 R2 | publisher= Microsoft | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 7023 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Bryan Wilcutt T2-NMCS Protocol for SatCom Modems | list_of_tcp_and_udp_port_numbers | Official | " | 7025 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Zimbra [[Local Mail Transfer Protocol | LMTP [mailbox]—local mail delivery ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7047 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Zimbra conversion server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7070 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes-No}} | list_of_tcp_and_udp_port_numbers | [[Real Time Streaming Protocol (RTSP), used by QuickTime Streaming Server. TCP is used by default, UDP is used as an alternate.<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7133 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Quake Wars ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7144 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [Peer Cast] | Peercast{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7145 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [Peer Cast] | Peercast{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7171 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tibia (computer game) | Tibia ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 7262 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | CNAP (Calypso Network Access Protocol) | list_of_tcp_and_udp_port_numbers | Official | - | 7272 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | WatchMe - WatchMe Monitoring | list_of_tcp_and_udp_port_numbers | Official | " | 7306 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Zimbra mysql [mailbox]{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7307 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Zimbra mysql [logger]{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7312 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Sibelius notation program | Sibelius License Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7396 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | V7 | Folding@home v7.3.6 and later<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 7400 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | RTPS (Real Time Publish Subscribe) [[Data Distribution Service | DDS Discovery ]] | list_of_tcp_and_udp_port_numbers | Official | - | 7401 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | RTPS (Real Time Publish Subscribe) [[Data Distribution Service | DDS User-Traffic ]] | list_of_tcp_and_udp_port_numbers | Official | - | 7402 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | RTPS (Real Time Publish Subscribe) [[Data Distribution Service | DDS Meta-Traffic ]] | list_of_tcp_and_udp_port_numbers | Official | " | 7471 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Stateless Transport Tunneling (STT) | list_of_tcp_and_udp_port_numbers | Unofficial | - | 7473 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | The Vieneo Province ]] | list_of_tcp_and_udp_port_numbers | Official | - | 7474 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Neo4J Server webadmin<ref>{{cite web | //docs.neo4j.org/chunked/stable/tools-webadmin.html | title=The Neo4J Manual Chapter 27. Web Interface | accessdate= 2014-06-12}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 7478 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default port used by [[Open iT Server.<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 7542 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Saratoga'' file transfer protocol<ref name="draft-wood-tsvwg-saratoga">{{Cite IETF | A Scalable Data Transfer Protocol | draft=draft-wood-tsvwg-saratoga-20 | last1=Wood | first1=Lloyd | last2=Eddy | first2=Wesley M. | last3=Smith | first3=Charles | last4=Ivancic | first4=Will | last5=Jackson | first5=Chris | others=Contributions by James H. McKim et al. (section 10 "Acknowledgements", p. 52) | date=November 2016 | publisher=[[Internet Engineering Task Force | IETF ]] | accessdate=2017-03-27 | ...}}</ref><ref name="10.1109/IWSSC.2007.4409410">{{Cite conference | a Delay-Tolerant Networking convergence layer with efficient link utilization | last1=Wood | first1=Lloyd | last2=Eddy | first2=Wesley M. | last3=Ivancic | first3=Will | last4=McKim | first4=Jim | last5=Jackson | first5=Chris | conference=2007 International Workshop on Space and Satellite Communications | publisher=[[Institute of Electrical and Electronics Engineers | IEEE ]] | location=Salzburg | date=13–14 September 2007 | pages=168–172 | isbn=978-1-4244-0938-9 | doi=10.1109/IWSSC.2007.4409410 | Saratoga is a rate-based UDP file transfer protocol capable of transferring large files. Saratoga has been in operational use since 2004 to move mission imaging data from the [[Disaster Monitoring Constellation (DMC) remote-sensing satellites to ground stations.&nbsp;…}}</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 7547 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | CPE WAN Management Protocol (CWMP) [[TR-069 | Technical Report 069 ]] | list_of_tcp_and_udp_port_numbers | Official | " | 7575 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | The Beginning server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 7624 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Instrument Neutral Distributed Interface ]] | list_of_tcp_and_udp_port_numbers | Official | - | 7631 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ERLPhase | list_of_tcp_and_udp_port_numbers | Official | " | 7634 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | hddtemp—Utility to monitor hard drive temperature | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7652–7654 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[I2P anonymizing overlay network]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7655 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | I2P SAM Bridge Socket API | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7656–7660 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | I2P anonymizing overlay network | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7670 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[BrettspielWelt BSW Boardgame Portal ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7680 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Delivery Optimization for [[Windows 10<ref name=“ms-win10-delivery-optimization”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 7687 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Bolt (network protocol) | Bolt database connection ]] | list_of_tcp_and_udp_port_numbers | Official | " | 7707–7708 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Killing Floor (2009 video game) | Killing Floor ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7717 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Killing Floor'' | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 7777 <!--7777--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[iChat server file transfer proxy<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7777--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Oracle Cluster File System 2{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7777--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Windows backdoor program tini.exe default{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7777--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Multiplayer Mod'' Server{{citation needed | date=December 2013}} | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7777--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Terraria default server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7777--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''San Andreas Multiplayer'' (SA-MP) default port server | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--7777--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Secret Laboratory'' Multiplayer Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7777–7788 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Unreal Tournament'' series default server{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7831 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default used by Smartlaunch Internet Cafe Administration<ref>{{cite web | //www.smartlaunch.net/Download/Smartlaunch_Product_Overview.pdf | title=Smartlaunch 4.1 Cyber Cafe Management Software Product Overview | date= | accessdate=2014-05-27 | url-status=dead | //www.smartlaunch.net/Download/Smartlaunch_Product_Overview.pdf | archivedate=2013-03-11 | df= }}</ref> software | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7880 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | PowerSchool Gradebook Server{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7890 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default that will be used by the iControl Internet Cafe Suite Administration software | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7915 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default for YSFlight server<ref name="Midnight Rambler">{{cite web | title=How to create a YSF Server, step by step guide | //forum.ysfhq.com/viewtopic.php | date=2011-08-06 | work=forum.ysfhq.com | publisher=YSFlight Headquarters | accessdate= 2013-10-26}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7935 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Fixed port used for Adobe Flash Debug Player to communicate with a debugger (Flash IDE, Flex Builder or fdb).<ref>{{cite web | //livedocs.adobe.com/flex/3/html/help.html | title=Flex 3 – Adobe Flex 3 Help | publisher=adobe.com | date= | accessdate=2014-05-27 | //livedocs.adobe.com/flex/3/html/help.html | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7946 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Docker Swarm communication among nodes<ref name="docker-swarm-tutorial"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 7990 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Atlassian [[Bitbucket (default port)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 8000 <!--8000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Commonly used for Internet radio streams such as [[SHOUTcast

, Icecast

and iTunes Radio<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8000--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[DynamoDB Local<ref name=“aws-docs-dynamodb-developer-local”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8000--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Django (web framework) | Django Development Webserver<ref name=“django-docs-1.10-tutorial01”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8005 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache Tomcat | Tomcat remote shutdown<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 8006 <!--8006--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Quest AppAssure 5 API<ref name=“appassure-kb-firewall-port”>

</ref> ]] | list_of_tcp_and_udp_port_numbers |  Unofficial | " <!--8006--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | [[Proxmox Virtual Environment admin web interface<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8007 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Quest AppAssure 5 Engine<ref name="appassure-kb-firewall-port"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 8008 <!--8008--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Alternative port for [[HTTP. See also ports 80 and 8080. ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--8008--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM HTTP Server administration default

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8008--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[iCal, a calendar application by Apple, Inc. | Apple<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8008--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Matrix (protocol) | Matrix homeserver federation over HTTP<ref name=“matrix-homeserver”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8009 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache JServ Protocol (

ajp13

)

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8010 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Buildbot Web status page

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8042 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Orthanc (software) | Orthanc – REST API over HTTP<ref name=“orthanc-book-configuration”>

&nbsp;…}}

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8069 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[OpenERP 5.0 XML-RPC protocol<ref name=“odoo-doc-5.0-install-linux-web”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8070 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | OpenERP 5.0 NET-RPC protocol<ref name="odoo-doc-5.0-install-linux-web"/> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 8074 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Gadu-Gadu ]] | list_of_tcp_and_udp_port_numbers | Official | " | 8075 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''Killing Floor'' web administration interface{{Citation needed | date=February 2017}} | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 8080 <!--8080--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Alternative port for [[HTTP. See also ports 80 and 8008. ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--8080--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache Tomcat<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8080--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Jira (software) | Atlassian JIRA applications<ref name=“atlassian-jira-071-tcp-ports”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8088 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Asterisk (PBX) | Asterisk management access via HTTP

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 8089 <!--8089--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | [[Splunk daemon management<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8089--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Fritz!Box automatic TR-069 configuration<ref name=“avm-fritzbox-7490-port-8089”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 8090 <!--8090--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Atlassian Confluence<ref name=“atlassian-confluence-6.0-doc-listen-port”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8090--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Coral Content Distribution Network (legacy; 80 and 8080 now supported)<ref name=“coralcdn-wiki-faq”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8090--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Matrix identity server{{Citation needed | date=May 2019}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8091 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[CouchBase web administration<ref name=“couchbase-dev-doc-server-ports”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8092 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | CouchBase API<ref name="couchbase-dev-doc-server-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8111 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[JOSM Remote Control ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8112 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | PAC Pacifica Coin | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8116 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Check Point Cluster Control Protocol ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 8118 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Privoxy—advertisement-filtering Web proxy ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 8123 <!--8123--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Polipo Web proxy ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--8123--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | //github.com/burst-apps-team/burstcoin BURST Reference Software] P2P | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8124 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | //www.burst-coin.org/ BURST] Mining Pool Software Port | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8125 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | //github.com/burst-apps-team/burstcoin BURST Reference Software] Web Interface | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8139 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Puppet (software) Client agent ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 8140 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Puppet (software) Master server | list_of_tcp_and_udp_port_numbers | Official | " | 8172 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Microsoft Remote Administration for IIS Manager<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8184 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[NCSA Brown Dog Data Access Proxy ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 8194–8195 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Bloomberg Terminal<ref name=“Bloomberg TS”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 8200 <!--8200--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[GoToMyPC ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8200--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | MiniDLNA media server Web Interface | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8222 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[VMware VI Web Access via HTTP<ref name=“vmware-server-2.0-rc2-releasenotes”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 8243 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[HTTPS listener for Apache Synapse<ref name=“Apache Synapse”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 8245 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Dynamic DNS for at least No-IP and DyDNS<ref name=“DyDNS API”>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 8280 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[HTTP listener for Apache Synapse<ref name=“Apache Synapse”/> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 8281 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | HTTP Listener for Gatecraft Plugin | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8291 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Winbox—Default on a MikroTik RouterOS for a Windows application used to administer MikroTik RouterOS<ref>{{cite web | IP/Services | title=MikroTik Wiki "IP/Services" page | publisher=MikroTik | date=2014-01-02 | accessdate=2014-06-23 | url-status=dead | IP/Services | archivedate=2014-06-28 | df= }}{{User-generated source | date=June 2017}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8303 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Teeworlds Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8332 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Bitcoin JSON-RPC server<ref>Bitcoin Forum: Command Line and JSON-RPC

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 8333 <!--8333--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Bitcoin<ref name=“ReferenceA”>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8333--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[VMware VI Web Access via HTTPS<ref name=“vmware-server-2.0-rc2-releasenotes”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8337 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | VisualSVN Distributed File System Service (VDFS)<ref>{{cite web | //www.visualsvn.com/support/topic/00073/ | title=Enabling the inbound firewall rule for a master VDFS service - VisualSVN Help Center | work=visualsvn.com | accessdate= 16 March 2015}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8384 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Syncthing web GUI ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8388 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Shadowsocks proxy server

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 8443 <!--8443--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[SW Soft Plesk Control Panel ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8443--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache Tomcat SSL ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8443--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Promise Technology | Promise WebPAM SSL ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8443--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[iCal over Secure Socket Layer | SSL<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8443--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[MineOs WebUi ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8444 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Bitmessage ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8448 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Matrix homeserver federation over HTTPS<ref name="matrix-homeserver" /> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8484 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[MapleStory Login Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8500 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Adobe ColdFusion built-in web server<ref name=“adobe-help-cf10-admin”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8530 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Windows Server Update Services over HTTP, when using the default role installation settings in Windows Server 2012 and later versions. <ref name=“msft-tn-bb693717”>

</ref><ref name=“msft-tn-hh852346”>

&nbsp;…}}</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8531 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Windows Server Update Services over HTTPS, when using the default role installation settings in Windows Server 2012 and later versions. <ref name=“msft-tn-bb693717”>

</ref><ref name=“msft-tn-hh852346”>

&nbsp;…}}</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8580 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Freegate, an Internet anonymizer and proxy tool<ref name=“flossmanuals-bypasscensor-freegate”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8629 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tibero | Tibero database

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8642 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM Lotus Notes Traveler | Lotus Notes Traveler auto synchronization for Windows Mobile and Nokia devices<ref name=“ibm-support-lnt851-planning-net”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8691 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Ultra Fractal, a fractal generation and rendering Graphic art software | software application – distributed calculations over networked computers<ref name=“ultrafractal”>

</ref><ref name=“ultrafractal-help-network-servers”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8765 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Default port of a local GUN relay peer that the [[Internet Archive<ref>

</ref>

and others use as a decentralized mirror for censorship resistance.<ref>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8767 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Voice channel of [[TeamSpeak 2,<ref name=“tsusa-kb-ts2-ports”>

</ref> a proprietary Voice over IP protocol targeted at gamers

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8834 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Nessus (software) | Nessus, a vulnerability scanner – remote XML-RPC web server<ref name=“tenable-docs-nessus68-usermanual”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8840 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Opera Unite, an extensible software framework | framework for web applications<ref name=“computerworld-article-2525727”>

</ref><ref name=“lifehacker-5472050”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 8880 <!--8880--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Alternate port of [[CDDB (Compact Disc Database) protocol, used to look up audio CD (compact disc) information over the Internet.<ref name=“ccdb-howto.txt”>

</ref> See also port 888. ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--8880--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[IBM WebSphere Application Server SOAP connector<ref name=“ibm-support-websphere-express8-portnumber”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 8883 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Secure [[MQTT (MQTT over TLS)<ref name=“mqtt-faq”>

</ref><ref name=“oasisopen-docs-mqtt-v3.1.1-spec”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 8887 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[HyperVM over HTTP

<!– Found a reference from WMHCS documentation (http://docs.whmcs.com/HyperVM), but questioning reliability/notability for inclusion. –> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 8888 <!--8888--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | HyperVM over [[HTTPS

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8888--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Freenet web UI (localhost only)

<!– Official website (primary source) reference to port 8888 is a technical statement. “geti2p-ports” also trivially mentions 8888 to be reserved for Freenet. –> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8888--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Default for [[IPython<ref name=“ipython-doc-3-notebook-server”>

</ref>

/ Jupyter<ref name=“jyputer-docs-running-notebook”>

</ref>

notebook dashboards ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--8888--> | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[MAMP<ref name=“osxdaily-mamp”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8889 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | MAMP<ref name="osxdaily-mamp" /> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8983 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Apache Solr<ref name=“apache-solr-6_6-running-solr”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8997 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Alternate port for [[I2P Monotone Proxy<ref name=“geti2p-ports”/>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8998 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | I2P Monotone Proxy<ref name="geti2p-ports"/>{{Technical statement | date=October 2016}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 8999 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Alternate port for I2P Monotone Proxy<ref name="geti2p-ports"/>{{Technical statement | date=October 2016}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 9000 <!--9000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[SonarQube Web Server<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[DBGp ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[SqueezeCenter web server & streaming ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[UDPCast ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Play! Framework web server<ref name=playframeworkdocumentation>{{cite web | //www.playframework.com/documentation/2.2.0/Production | title=Play2 Documentation | publisher=Playframework.com | date= | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Hadoop Distributed File System | Hadoop NameNode default port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[PHP-FPM default port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[QBittorrent's embedded torrent tracker default port<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 9001 <!--9001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | //etlelectronique.com/defaulten.aspx ETL Electronics] {{webarchive | //etlelectronique.com/defaulten.aspx | date=January 4, 2012 }}</ref> | list_of_tcp_and_udp_port_numbers | Official | " <!--9001--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Microsoft SharePoint authoring environment ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9001--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | cisco-xremote router configuration{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9001--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tor (anonymity network) | Tor network default ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[DBGp Proxy ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9001--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[HSQLDB default port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9002 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Newforma Server comms | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 9006 <!--9006--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | De-Commissioned Port | list_of_tcp_and_udp_port_numbers | Official | " <!--9006--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache Tomcat | Tomcat in standalone mode<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9030 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tor (anonymity network) | Tor often used ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9042 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache Cassandra native protocol clients ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9043 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[WebSphere Application Server Administration Console secure ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9050–9051 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tor (anonymity network) | Tor (SOCKS-5 proxy client) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9060 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[WebSphere Application Server Administration Console ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 9080 <!--9080--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | glrpc, [[Microsoft Groove | Groove Collaboration software GLRPC ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--9080--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[WebSphere Application Server HTTP Transport (port 1) Default (computer science) | default ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9080--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Remote Potato by FatAttitude, Windows Media Center addon | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9080--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ServerWMC, Windows Media Center addon | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 9090 <!--9090--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Prometheus (software) | Prometheus metrics server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9090--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Openfire Administration Console ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9090--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[SqueezeCenter control (CLI) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9090--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Cherokee (web server) | Cherokee Admin Panel ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 9091 <!--9091--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Openfire Administration Console (SSL Secured) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9091--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Transmission (BitTorrent client) Web Interface ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 9092 <!--9092--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[H2 (DBMS) Database Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9092--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Apache Kafka A Distributed Streaming Platform<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9100 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Maybe | Assigned}} | list_of_tcp_and_udp_port_numbers | [[Page description language | PDL Data Stream, used for printing to certain network printers<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Official | - | 9101 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Bacula Director ]] | list_of_tcp_and_udp_port_numbers | Official | - | 9102 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Bacula File Daemon ]] | list_of_tcp_and_udp_port_numbers | Official | - | 9103 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Bacula Storage Daemon ]] | list_of_tcp_and_udp_port_numbers | Official | - | 9119 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[MXit Instant Messenger ]] | list_of_tcp_and_udp_port_numbers | Official | " | 9150 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tor (anonymity network) | Tor Browser ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9191 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Sierra Wireless Airlink | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9199 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Avtex LLC—qStats | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9200 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Elasticsearch<ref>{{cite web | _restful_api_with_json_over_http | title=RESTful API with JSON over HTTP | publisher=Elasticsearch | date= | accessdate= 2015-04-04}}</ref>—default Elasticsearch port | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9217 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | iPass Platform Service | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9293 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Sony PlayStation RemotePlay<ref>{{cite web | //manuals.playstation.net/document/en/ps3/current/remoteplay/remoteinternet.html | 124; Using remote play (via the Internet) | publisher=Manuals.playstation.net | date=2013-09-13 | accessdate= 2013-10-08}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9300 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM Cognos Business Intelligence | IBM Cognos BI

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9303 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[D-Link Shareport Share storage and MFP printers

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9306 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Sphinx (search engine) | Sphinx Native API ]] | list_of_tcp_and_udp_port_numbers | Official | " | 9309 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Sony PlayStation Vita Host Collaboration WiFi Data Transfer<ref>{{cite web | //manuals.playstation.net/document/en/psvita/cm/wifi_pc.html | 124; PlayStation®Vita User's Guide | publisher=Manuals.playstation.net | date= | accessdate= 2013-10-08}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9312 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Sphinx (search engine) | Sphinx SphinxQL ]] | list_of_tcp_and_udp_port_numbers | Official | " | 9332 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Litecoin JSON-RPC server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9333 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Litecoin ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9339 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Used by all Supercell games such as Brawl Stars and Clash of Clans, mobile freemium strategy video games | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9389 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | adws, [[Microsoft AD DS Web Services, Powershell uses this port ]] | list_of_tcp_and_udp_port_numbers | Official | " | 9392 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | OpenVAS Greenbone Security Assistant web interface | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9418 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | git, [[Git (software) | Git pack transfer service ]] | list_of_tcp_and_udp_port_numbers | Wikilinks to full references" --> | " | 9419 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Moose File System | MooseFS distributed file system – master control port<ref name=“mfs-manual3.0-ports”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9420 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | MooseFS distributed file system – master command port<ref name="mfs-manual3.0-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9421 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | MooseFS distributed file system – master client port<ref name="mfs-manual3.0-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9422 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | MooseFS distributed file system – Chunkservers<ref name="mfs-manual3.0-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9425 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | MooseFS distributed file system – CGI server<ref name="mfs-manual3.0-ports"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 9443 <!--9443--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[VMware Websense Triton console (HTTPS port used for accessing and administrating a vCenter Server via the Web Management Interface) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--9443--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[NCSA Brown Dog Data Tilling Service ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9535 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | mngsuite, [[Landesk | LANDesk Management Suite Remote Control ]] | list_of_tcp_and_udp_port_numbers | Official | - | 9536 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | laes-bf, [[IP Fabrics Surveillance buffering function ]] | list_of_tcp_and_udp_port_numbers | Official | " | 9600 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[Factory Interface Network Service (FINS), a network protocol used by Omron programmable logic controllers

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9669 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | //www.robots.ox.ac.uk/~vgg/software/vise/ VISE] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9675 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Spiceworks Desktop, IT Helpdesk Software ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9676 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Spiceworks Desktop, IT Helpdesk Software ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9695 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[Content centric networking (CCN, CCNx)

]] | list_of_tcp_and_udp_port_numbers | Official | " | 9785 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Viber<ref name=“viber” /> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 9800 <!--9800--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[WebDAV Source ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--9800--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[WebCT e-learning portal ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9875 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Club Penguin Disney online game for kids ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9898 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tripwire (software) | Tripwire—File Integrity Monitoring Software<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 9899 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Stream Control Transmission Protocol | SCTP tunneling (port number used in SCTP packets encapsulated in UDP, RFC 6951) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 9901 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Banana for Apache Solr | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9981 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tvheadend HTTP server (web interface)<ref name=“tvh-wiki-install-initial-setup”>

…}}

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9982 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Tvheadend HTSP server (Streaming protocol)<ref name=“tvh-wiki-install-initial-setup”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9987 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[TeamSpeak 3 server default (voice) port (for the conflicting service see the IANA list) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9993 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[ZeroTier Default port for ZeroTier ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9997 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Splunk port for communication between the forwarders and indexers]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 9999 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Urchin Software Corporation | Urchin Web Analytics

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 10000 <!--10000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Network Data Management Protocol | list_of_tcp_and_udp_port_numbers | Official | " <!--10000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[BackupExec ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--10000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Webmin, Web-based Unix/Linux system administration tool (default port) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10000–20000 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Used on [[Voice over IP | VoIP networks for receiving and transmitting voice telephony traffic which includes Google Voice via the Obihai Technology | OBiTalk Analog telephone adapter | ATA devices as well as on the MagicJack and Vonage ATA network devices.<ref name=“support.vonage.com”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10001 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | 10001 (UDP) to locate the controller(s) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10009 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[CrossFire (video game) | CrossFire, a multiplayer online First Person Shooter

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10011 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Teamspeak3 Chat Server<ref>{{cite web | //hub.docker.com/_/teamspeak/ | title=Documentation for Teamspeak Docker container | date= | accessdate= 2020-07-26}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10024 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Zimbra smtp [mta]—to amavis from postfix{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10025 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Zimbra smtp [mta]—back to postfix from amavis{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10042 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Mathoid | Mathoid server

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 10050 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Zabbix agent ]] | list_of_tcp_and_udp_port_numbers | Official | - | 10051 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Zabbix trapper ]] | list_of_tcp_and_udp_port_numbers | Official | - | 10110 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | NMEA 0183 Navigational Data. Transport of NMEA 0183 sentences over TCP or UDP | list_of_tcp_and_udp_port_numbers | Official | " | 10172 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Intuit [[Quickbooks client ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 10200 <!--10200--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[FRISK Software International's fpscand virus scanning daemon for Unix platforms<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--10200--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | FRISK Software International's ''f-protd'' virus scanning daemon for Unix platforms<ref name=autogenerated2>{{cite web | //www.f-prot.com/support/unix/unix_manpages/f-protd.8.html | title=Manual pages - F-PROT Antivirus Support - Unix | publisher=F-prot.com | date= | accessdate= 2014-05-27}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10201–10204 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | FRISK Software International's ''f-protd'' virus scanning daemon for Unix platforms<ref name=autogenerated2 /> | list_of_tcp_and_udp_port_numbers | Unofficial | - | 10212 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | GE Intelligent Platforms Proficy HMI/SCADA – CIMPLICITY WebView<ref>{{cite web | //securitytracker.com/id/1029853 | title=GE Proficy HMI/SCADA - CIMPLICITY Input Validation Flaws Let Remote Users Upload and Execute Arbitrary Code | access-date=2016-05-10}}</ref> | list_of_tcp_and_udp_port_numbers | Official | " | 10308 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Modern Air Combat

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10480 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | ''[[SWAT 4 Dedicated Server

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10505 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | BlueStacks (android simulator) broadcast<ref>{{cite web | //getsatisfaction.com/bstk/topics/network_broadcast_from_bluestacks_beacon_v1 | title=network broadcast from bluestacks - Beacon-v1 | publisher=Getsatisfaction.com | date= | accessdate=2013-10-08 | url-status=dead | //getsatisfaction.com/bstk/topics/network_broadcast_from_bluestacks_beacon_v1 | archivedate=April 19, 2014 }}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10514 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | TLS-enabled Rsyslog (default by convention) | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 10800 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Touhou fight games (Immaterial and Missing Power, Scarlet Weather Rhapsody, Touhou Hisōtensoku | Hisoutensoku, Hopeless Masquerade and Urban Legend in Limbo)]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10823 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Farming Simulator 2011

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 10891 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Jungle Disk (this port is opened by the Jungle Disk Monitor service on the localhost){{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | - | 10933 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | Octopus Deploy Tentacle deployment agent<ref>{{cite web | //octopus.com/docs/infrastructure/deployment-targets/windows-targets/tentacle-communication | title=Octopus Deploy Documentation | date=March 2019}}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 11001 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | metasys ( Johnson Controls Metasys java AC control environment ) | list_of_tcp_and_udp_port_numbers | Official | " | 11111 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | RiCcI, Remote Configuration Interface (Redhat Linux) | list_of_tcp_and_udp_port_numbers | Unofficial | - | 11112 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[American College of Radiology | ACR/National Electrical Manufacturers Association | NEMA Digital Imaging and Communications in Medicine (DICOM) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 11211 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[memcached<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 11214 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | memcached incoming SSL proxy | list_of_tcp_and_udp_port_numbers | Unofficial | " | 11215 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | memcached internal outgoing SSL proxy | list_of_tcp_and_udp_port_numbers | Unofficial | " | 11235 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Battle for Newerth

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 11311 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Robot Operating System master ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 11371 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[OpenPGP HTTP Key server (cryptographic) | key server ]] | list_of_tcp_and_udp_port_numbers | Official | " | 11753 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[OpenRCT2 multiplayer<ref name=“openrct2-docs-multiplayer”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12000 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[CubeForm, Multiplayer SandBox Game ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12012 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Audition Online Dance Battle, Korea Server—Status/Version Check ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12013 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, Korea Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12035 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Second Life, used for server UDP in-bound<ref name=“http://wiki.secondlife.com/wiki/Authentication_Flow@step_4”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12043 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''Second Life'', used for LSL HTTPS in-bound<ref name="wiki.secondlife.com/wiki/LSL_HTTP_server@Functions">{{cite web | title=LSL_HTTP_server | Functions | website=Second Life Wiki | accessdate=26 July 2017}}{{User-generated source | date=July 2017}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12046 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''Second Life'', used for LSL HTTP in-bound<ref name="wiki.secondlife.com/wiki/LSL_HTTP_server@Functions"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12201 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | //docs.graylog.org/en/latest/pages/gelf.html{{Self-published source | date=August 2017}}</ref>{{Importance inline | date=August 2017}} | list_of_tcp_and_udp_port_numbers | Unofficial | - | 12222 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Light Weight Access Point Protocol ([[LWAPP) LWAPP data (RFC 5412) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 12223 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Light Weight Access Point Protocol ([[LWAPP) LWAPP control (RFC 5412) ]] | list_of_tcp_and_udp_port_numbers | Official | " | " | 12345 <!--12345--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Cube World<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--12345--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Little Fighter 2 ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--12345--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[NetBus remote administration tool (often Trojan horse (computing) | Trojan horse). ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12443 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[IBM Hardware Management Console | IBM HMC web browser management access over HTTPS instead of default port 443<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12489 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | NSClient/NSClient++/NC_Net (Nagios) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 12975 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[LogMeIn Hamachi (software) | Hamachi (VPN tunnel software; also port 32976)—used to connect to Mediation Server (bibi.hamachi.cc); will attempt to use Secure Sockets Layer | SSL (TCP port 443) if both 12975 & 32976 fail to connect ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 13000–13050 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Second Life, used for server UDP in-bound<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 13008 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[CrossFire (video game) | CrossFire, a multiplayer online First Person Shooter

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 13075 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Default<ref>{{cite web | author=Scheduler-Usage | //www.scheduler-usage.com/modules.php | Controlm-M Usage Forum Index -> Control-M Enterprise Manager | publisher=Scheduler-Usage | date= | accessdate=2014-05-27 | url-status=dead | //www.scheduler-usage.com/modules.php | archivedate=May 2, 2013 }}</ref> for [[BMC Software BMC Control-M | Control-M/Enterprise Manager Corba communication, though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Official | - | 13400 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ISO 13400 Road vehicles — Diagnostic communication over Internet Protocol(DoIP) | list_of_tcp_and_udp_port_numbers | Official | - | 13720 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[NortonLifeLock | Symantec NetBackup—bprd (formerly Veritas Software | VERITAS) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 13721 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Symantec NetBackup—bpdbm (formerly VERITAS) | list_of_tcp_and_udp_port_numbers | Official | - | 13724 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Symantec Network Utility—vnetd (formerly VERITAS) | list_of_tcp_and_udp_port_numbers | Official | - | 13782 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Symantec NetBackup—bpcd (formerly VERITAS) | list_of_tcp_and_udp_port_numbers | Official | - | 13783 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Symantec VOPIED protocol (formerly VERITAS) | list_of_tcp_and_udp_port_numbers | Official | - | 13785 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Symantec NetBackup Database—nbdb (formerly VERITAS) | list_of_tcp_and_udp_port_numbers | Official | - | 13786 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Symantec nomdb (formerly VERITAS) | list_of_tcp_and_udp_port_numbers | Official | " | 14550 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[MAVLink Ground Station Port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 14567 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Battlefield 1942 and mods ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 14800 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Age of Wonders III p2p port<ref>https://web.archive.org/web/20190513062538/http://aow.triumph.net/support-2/networking/</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 15000 <!--15000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[psyBNC ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--15000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Wesnoth ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--15000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Kaspersky Network Agent{{citation needed | date=March 2012}} | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--15000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Teltonika networks remote management system (RMS) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 15009 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Teltonika networks remote management system (RMS) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 15010 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Teltonika networks remote management system (RMS) | list_of_tcp_and_udp_port_numbers | Unofficial | " | 15441 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | [[ZeroNet fileserver

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 15567 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Battlefield Vietnam and mods ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 15345 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[XPilot Contact ]] | list_of_tcp_and_udp_port_numbers | Official | " | 15672 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | [[RabbitMQ management plugin<ref name=“rabbitmq-management”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 16000 <!--16000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Oracle WebCenter Content: Imaging (formerly known as Oracle Universal Content Management). Port though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--16000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[shroudBNC ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16080 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Mac OS X Server Web (HTTP) service with performance cache<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16200 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Content Server (formerly known as Oracle [[Universal Content Management). Port though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16225 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Content Server Web UI. Port though often changed during installation | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16250 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Inbound Refinery (formerly known as Oracle [[Universal Content Management). Port though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16261 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Project Zomboid multiplayer. Additional sequential ports used for each player connecting to server.

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16300 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Records Management (formerly known as Oracle [[Universal Records Management). Port though often changed during installation ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16384 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | CISCO Default RTP MIN | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16384-16403 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Real-time Transport Protocol (RTP), RTP Control Protocol (RTCP), used by Apple Inc. | Apple's iChat for audio and video<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16384-16387 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Real-time Transport Protocol (RTP), RTP Control Protocol (RTCP), used by Apple's [[FaceTime and Game Center<ref name=“apple-kb-HT202944”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16393-16402 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Real-time Transport Protocol (RTP), RTP Control Protocol (RTCP), used by Apple's FaceTime and Game Center<ref name="apple-kb-HT202944"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16403-16472 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Real-time Transport Protocol (RTP), RTP Control Protocol (RTCP), used by Apple's Game Center<ref name="apple-kb-HT202944"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 16400 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Capture (formerly known as Oracle Document Capture). Port though often changed during installation | list_of_tcp_and_udp_port_numbers | Unofficial | - | 16482 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | CISCO Default RTP MAX | list_of_tcp_and_udp_port_numbers | Official | " | 16567 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Battlefield 2 and mods ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 17011 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Worms (series) | Worms multiplayer ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 17224 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml | list_of_tcp_and_udp_port_numbers | Official | - | 17225 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml | list_of_tcp_and_udp_port_numbers | Official | " | 17333 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | CS Server (CSMS), default binary protocol port | list_of_tcp_and_udp_port_numbers | Unofficial | " | 17475 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | DMXControl 3 Network Broker | list_of_tcp_and_udp_port_numbers | Unofficial | - | 17500 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Dropbox (storage provider) | Dropbox LanSync Protocol (db-lsp); used to synchronize file catalogs between Dropbox clients on a local network. ]] | list_of_tcp_and_udp_port_numbers | Official | " | 18080 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | [[Monero (cryptocurrency) | Monero P2P network communications

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18081 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | Monero incoming RPC calls{{Citation needed | date=November 2018}} | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18091 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[memcached Internal REST HTTPS for SSL ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18092 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | memcached Internal CAPI HTTPS for SSL | list_of_tcp_and_udp_port_numbers | Unofficial | - | 18104 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | RAD PDF Service | list_of_tcp_and_udp_port_numbers | Official | " | 18200 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Audition Online Dance Battle, AsiaSoft Thailand Server status/version check ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18201 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, AsiaSoft Thailand Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18206 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, AsiaSoft Thailand Server FAM database | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18300 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, AsiaSoft SEA Server status/version check | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18301 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, AsiaSoft SEA Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18306 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, AsiaSoft SEA Server FAM database | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18333 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Bitcoin testnet<ref name=“ReferenceA”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18400 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, KAIZEN Brazil Server status/version check | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18401 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, KAIZEN Brazil Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18505 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle R4p3 Server, Nexon Server status/version check | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18506 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, Nexon Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18605 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[X-BEAT status/version check ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18606 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[X-BEAT ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 18676 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | YouView | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 19000 <!--19000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, G10/alaplaya Server status/version check | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--19000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[JACK Audio Connection Kit | JACK sound server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19001 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Audition Online Dance Battle, G10/alaplaya Server | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19132 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Bedrock Edition multiplayer server<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19133 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Bedrock Edition'' IPv6 multiplayer server<ref>{{cite web | title = Bedrock Dedicated Server – Minecraft Wiki | //minecraft.gamepedia.com/Bedrock_Dedicated_Server | website = minecraft.gamepedia.com | accessdate = 2020-08-28}}{{User-generated source | date=August 2020}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19150 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Gkrellm Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19226 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Panda Security | Panda Software AdminSecure Communication Agent ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19294 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Google Talk Voice and Video connections<ref name=“gtalk_voice”>''How do I allow my internal XMPP client or server to connect to the Talk service?'', Google Code Help, accessed December 15, 2010.</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19295 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Google Talk Voice and Video connections<ref name="gtalk_voice" /> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19302 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Google Talk Voice and Video connections<ref name="gtalk_voice" /> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19531 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | [[systemd-journal-gatewayd<ref>https://www.freedesktop.org/software/systemd/man/systemd-journal-gatewayd.service.html</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 19532 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | [[systemd-journal-remote<ref>https://www.freedesktop.org/software/systemd/man/systemd-journal-remote.service.html</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 19812 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | 4D database SQL Communication<ref name="4D_ports">{{cite web | //doc.4d.com/4Dv13/4D/13/Configuration-preferences.300-845386.en.html | title=''4D Server and port numbers'' | publisher=4d.com | date=2013-12-03 | accessdate=2014-05-27 | url-status=live | 68475 | archivedate=2014-04-08 | df= }}</ref> | list_of_tcp_and_udp_port_numbers | Official | - | 19813 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | 4D database Client Server Communication<ref name="4D_ports" /> | list_of_tcp_and_udp_port_numbers | Official | - | 19814 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | 4D database DB4D Communication<ref name="4D_ports" /> | list_of_tcp_and_udp_port_numbers | Official | - | 19999 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Distributed Network Protocol—Secure ([[DNP3 | DNP—Secure), a secure version of the protocol used in SCADA systems between communicating RTU | RTU's and IED | IED's ]] | list_of_tcp_and_udp_port_numbers | Official | - | " | 20000 <!--20000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Distributed Network Protocol ([[DNP3 | DNP), a protocol used in SCADA systems between communicating Remote Terminal Unit | RTU's and Intelligent electronic device | IED's ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--20000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Usermin, Web-based Unix/Linux user administration tool (default port) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--20000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Used on [[Voice over IP | VoIP networks for receiving and transmitting voice telephony traffic which includes Google Voice via the Obihai Technology | OBiTalk Analog telephone adapter | ATA devices as well as on the MagicJack and Vonage ATA network devices.<ref name=“support.vonage.com”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 20560 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Killing Floor (2009 video game) | Killing Floor ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 20582 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | HW Development IoT comms | list_of_tcp_and_udp_port_numbers | Unofficial | " | 20583 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | HW Development IoT comms | list_of_tcp_and_udp_port_numbers | Unofficial | " | 20595 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[0 A.D. (video game) | 0 A.D. Empires Ascendant ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 20808 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Ableton Link | list_of_tcp_and_udp_port_numbers | Unofficial | " | 21025 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | //playstarbound.com/ Starbound] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 22000 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Syncthing (default) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 22136 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | //www.flir.com/ FLIR Systems] Camera Resource Protocol | list_of_tcp_and_udp_port_numbers | Unofficial | " | 22222 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | //davisnet.com/weather/products/weather_product.asp | list_of_tcp_and_udp_port_numbers | Unofficial | " | 23073 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Soldat (video game) | Soldat Dedicated Server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 23399 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Skype default protocol ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 23513 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Source ports | ''Duke Nukem 3D'' source ports ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 24441 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Pyzor spam detection network | list_of_tcp_and_udp_port_numbers | Unofficial | " | 24444 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[NetBeans integrated development environment ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 24465 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Tonido | Tonido Directory Server for Tonido which is a Personal Web App and P2P platform ]] | list_of_tcp_and_udp_port_numbers | Official | - | 24554 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[binkp | BINKP, Fidonet mail transfers over TCP/IP ]] | list_of_tcp_and_udp_port_numbers | Official | " | 24800 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Synergy (software) | Synergy: keyboard/mouse sharing software ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 24842 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[StepMania | Online: Dance Dance Revolution Simulator ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 25565 <!--25565--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Minecraft (Java Edition) multiplayer server<ref>

</ref><ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--25565--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Minecraft (Java Edition)'' multiplayer server query<ref>{{cite web | title=Query - wiki.vg | Server_Config | website=wiki.vg | accessdate=2017-06-29}}{{User-generated source | date=June 2017}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 25575 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''Minecraft'' (Java Edition) multiplayer server RCON<ref>{{cite web | title=RCON - wiki.vg | Server_Config | website=wiki.vg | accessdate=2017-06-29}}{{User-generated source | date=June 2017}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 25826 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[collectd default port<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | " | 26000 <!--26000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[id Software's Quake (video game) | Quake server ]] | list_of_tcp_and_udp_port_numbers | Official | " <!--26000--> | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[EVE Online ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--26000--> | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Xonotic, an open-source software | open-source arena shooter ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 26900–26901 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''EVE Online'' | list_of_tcp_and_udp_port_numbers | Unofficial | " | 26909-26911 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''Action Tanks Online'' | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27000 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[PowerBuilder SySAM license server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27000–27006 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[id Software's QuakeWorld master server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 27000–27009 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[FlexNet Publisher's License server (from the range of default ports) ]] | list_of_tcp_and_udp_port_numbers | Official | " | 27000–27015 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[Steam (software) | Steam (game client traffic)<ref name=“steam-support-8571-GLVN-8711”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27015 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[GoldSrc and Source engine dedicated server port<ref name=“steam-support-8571-GLVN-8711”/> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27015-27018 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Unturned, a survival game ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | " | 27015–27030 <!--27015-27030--> | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Steam (matchmaking and HLTV)<ref name="steam-support-8571-GLVN-8711"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " <!--27015-27030--> | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Steam (downloads)<ref name="steam-support-8571-GLVN-8711"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27016 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Magicka server port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27017 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | [[MongoDB daemon process (

mongod

) and routing service (

mongos

)<ref name=“mongodb-docs-reference-default-mongodb-port”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27031 | list_of_tcp_and_udp_port_numbers | {{Yes-No | Ports 27036 & 27037}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Steam (In-Home Streaming)<ref name="steam-support-8571-GLVN-8711"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27036 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Steam (In-Home Streaming)<ref name="steam-support-8571-GLVN-8711"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27037 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes-No | Ports 27031 & 27036}} | list_of_tcp_and_udp_port_numbers | Steam (In-Home Streaming)<ref name="steam-support-8571-GLVN-8711"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27374 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Sub7 default. ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27500–27900 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[id Software's QuakeWorld ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27888 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Kaillera server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27901–27910 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[id Software's Quake II master server ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27950 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[OpenArena outgoing ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 27960–27969 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Activision's Enemy Territory | Enemy Territory and id Software's Quake III Arena, Quake III and Quake Live and some ioquake3 derived games, such as Urban Terror (OpenArena incoming) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28001 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Tribes

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28015 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Rust (video game) | ''Rust'' (video game)<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28016 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Rust RCON (video game) | ''Rust RCON'' (video game)<ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28770–28771 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[AssaultCube Reloaded, a video game based upon a modification of AssaultCube

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28785–28786 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Sauerbraten<ref name=“Cube2Sauerbraten”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28852 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | ''[[Killing Floor (2009 video game) | Killing Floor

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28910 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Nintendo Wi-Fi Connection<ref name=“nintendo-wfc-instruction-booklet”>

…}}</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 28960 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{Citation needed span | text=''[[Call of Duty; United Offensive; Call of Duty 2; Modern Warfare;]] | World at War (PC platform)<ref name=“activision-kb-cod-game-ports”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 29000 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | ''[[Perfect World (video game) | Perfect World, an adventure and fantasy MMORPG

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 29070 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Jedi Academy by Ravensoft

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 29900–29901 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Nintendo Wi-Fi Connection<ref name="nintendo-wfc-instruction-booklet"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 29920 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Nintendo Wi-Fi Connection<ref name="nintendo-wfc-instruction-booklet"/> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 30000 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[XLink Kai | XLink Kai P2P ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 30033 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | Teamspeak3 Chat Server<ref>{{cite web | //hub.docker.com/_/teamspeak/ | title=Documentation for Teamspeak Docker container | date= | accessdate= 2020-07-26}}</ref> | list_of_tcp_and_udp_port_numbers | Unofficial | " | 30564 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Multiplicity (software) | Multiplicity: keyboard/mouse/clipboard sharing software

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 31337 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Back Orifice and Back Orifice 2000 remote administration tools<ref>

</ref><ref>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 31416 | list_of_tcp_and_udp_port_numbers | {{dunno}} | list_of_tcp_and_udp_port_numbers | {{dunno}} | list_of_tcp_and_udp_port_numbers | [[BOINC Remote procedure call | RPC<ref name=“man-1-boinc-die.net”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 31438 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Rocket U2<ref name=“rocket-universe-installguide-v1123”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 31457 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[TetriNET ]] | list_of_tcp_and_udp_port_numbers | Official | " | 32137 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Immunet | Immunet Protect (UDP in version 2.0,<ref name=“immunet-support-tiki-4”>

</ref> TCP since version 3.0<ref>

</ref>) ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 32400 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Plex Media Server<ref name=“plex-kb-201543147”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Official | " | 32764 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | A [[Backdoor (computing) | backdoor found on certain Linksys, Netgear and other wireless DSL modems/combination routers<ref name=“ars-security-2014-01-backdoor-dsl”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 32887 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Ace of Spades (video game) | Ace of Spades, a multiplayer First-person shooter | FPS video game

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 32976 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[LogMeIn Hamachi, a Virtual private network | VPN application; also TCP port 12975 and Secure Sockets Layer | SSL (TCP 443).<ref name=“logmein-kb-ports-protocols”>

If the above ports cannot be used to achieve a connection, Hamachi will try again using SSL (TCP 443).&nbsp;…}}</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 33434 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[traceroute ]] | list_of_tcp_and_udp_port_numbers | Official | " | 33848 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[Jenkins (software) | Jenkins, a continuous integration (<abbr>CI</abbr>) tool<ref name=“jenkins-wiki-remote-api”>

</ref><ref name=“jenkins-wiki-auto-discovering”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 34000 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | Survivor Stories (formerly known as The War Z), a multiplayer zombie video game

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 34197 | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | ''[[Factorio, a multiplayer survival and factory-building game<ref>

</ref>]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 35357 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | Identity (Keystone) | OpenStack Identity (Keystone) administration<ref name=“openstack-docs-config-appendix-b”>

</ref>

]] | list_of_tcp_and_udp_port_numbers | Official | " | 36330 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[Folding@home Control Port ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 37008 | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[TZSP intrusion detection

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 40000 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[SafetyNET p – a real-time Industrial Ethernet protocol ]] | list_of_tcp_and_udp_port_numbers | Official | - | 41121 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml ]] | list_of_tcp_and_udp_port_numbers | Official | - | 41794 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml ]] | list_of_tcp_and_udp_port_numbers | Official | - | 41795 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml ]] | list_of_tcp_and_udp_port_numbers | Official | - | 41796 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml ]] | list_of_tcp_and_udp_port_numbers | Official | - | 41797 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{no}} | list_of_tcp_and_udp_port_numbers | //www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml ]] | list_of_tcp_and_udp_port_numbers | Official | " | 43110 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | [[ZeroNet web UI default port

]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 43594–43595 | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | {{Dunno}} | list_of_tcp_and_udp_port_numbers | ''[[RuneScape<ref name=“rs-support-205845152”>

</ref> ]] | list_of_tcp_and_udp_port_numbers | Unofficial | " | 44405 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | list_of_tcp_and_udp_port_numbers | ''[[Mu Online Connect Server

]] | list_of_tcp_and_udp_port_numbers | Unofficial | - | 44818 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[EtherNet/IP explicit messaging ]] | list_of_tcp_and_udp_port_numbers | Official | - | 47808–47823 | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | {{yes}} | list_of_tcp_and_udp_port_numbers | [[BACnet Building Automation and Control Networks (4780810 = BAC016 to 4782310 = BACF16) ]] | list_of_tcp_and_udp_port_numbers | Official | - | 49151 | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | {{N/A | Reserved}} | list_of_tcp_and_udp_port_numbers | Reserved<ref name=IANA /> | list_of_tcp_and_udp_port_numbers | Official | } ==Dynamic, private or ephemeral ports== {{See also | Ephemeral port}} The range 49152–65535 (2<sup>15</sup> + 2<sup>14</sup> to 2<sup>16</sup> − 1) contains dynamic or private ports that cannot be registered with IANA.<ref>{{cite IETF | title = Internet Assigned Numbers Authority (IANA) Procedures for the Management of the Service Name and Transport Protocol Port Number Registry | rfc = 6335 | publisher = [[Internet Engineering Task Force | IETF ]] | date=August 2011 }}</ref> This range is used for private or customized services, for temporary purposes, and for automatic allocation of [[ephemeral ports.

<!– The range from 70000 to 80000 registered for Golriz company located in Mashhad, Khorasan-Razavi, Iran. –> {]] | class="wikitable sortable collapsible" | + Dynamic, private or ephemeral ports | - ! scope="col" | Port ! scope="col" class="unsortable" | TCP ! scope="col" class="unsortable" | UDP ! scope="col" | Description | " | 49152–65535 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{No}} | list_of_tcp_and_udp_port_numbers | [[Certificate Management over CMS<ref name=“rfc5273”>

SHOULD NOT be used.&nbsp;…}}</ref> ]] | " | 60000–61000 | list_of_tcp_and_udp_port_numbers | {{Yes-No | Port 22}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | Range from which [[Mosh (software) | Mosh – a remote-terminal application similar to Secure shell | SSH – typically assigns ports for ongoing sessions between Mosh servers and Mosh clients.<ref>

</ref> ]] | " | 64738 | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | {{Yes}} | list_of_tcp_and_udp_port_numbers | [[Mumble (software) | Mumble<ref name=“murmurconfig73a0b2f”>

</ref>

]] | } ==See also== * [[Internet protocol suite

References and notes

Further reading

list_of_tcp_and_udp_port_numbers.txt · Last modified: 2025/02/01 06:43 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki