Monday, January 29, 2007

Windows TCP Error Codes (Winsock Error Codes)

WSAEACCES
(10013)
Permission denied.
An attempt was made to access a socket in a way forbidden by its access permissions. An example is using a broadcast address for sendto without broadcast permission being set using setsockopt(SO_BROADCAST).

WSAEADDRINUSE
(10048)
Address already in use.
Only one usage of each socket address (protocol/IP address/port) is normally permitted. This error occurs if an application attempts to bind a socket to an IP address/port that has already been used for an existing socket, or a socket that wasn't closed properly, or one that is still in the process of closing. For server applications that need to bind multiple sockets to the same port number, consider using setsockopt(SO_REUSEADDR). Client applications usually need not call bind at all - connectwill choose an unused port automatically.

WSAEADDRNOTAVAIL
(10049)
Cannot assign requested address.
The requested address is not valid in its context. Normally results from an attempt to bind to an address that is not valid for the local machine, or connect/sendtoan address or port that is not valid for a remote machine (e.g. port 0).

WSAEAFNOSUPPORT
(10047)
Address family not supported by protocol family.
An address incompatible with the requested protocol was used. All sockets are created with an associated "address family" (i.e. AF_INET for Internet Protocols) and a generic protocol type (i.e. SOCK_STREAM). This error will be returned if an incorrect protocol is explicitly requested in the socket call, or if an address of the wrong family is used for a socket, e.g. in sendto.

WSAEALREADY
(10037)
Operation already in progress.
An operation was attempted on a non-blocking socket that already had an operation in progress - i.e. calling connecta second time on a non-blocking socket that is already connecting, or canceling an asynchronous request (WSAAsyncGetXbyY) that has already been canceled or completed.

WSAECONNABORTED
(10053)
Software caused connection abort.
An established connection was aborted by the software in your host machine, possibly due to a data transmission timeout or protocol error.

WSAECONNREFUSED
(10061)
Connection refused.
No connection could be made because the target machine actively refused it. This usually results from trying to connect to a service that is inactive on the foreign host - i.e. one with no server application running.

WSAECONNRESET
(10054)
Connection reset by peer.
A existing connection was forcibly closed by the remote host. This normally results if the peer application on the remote host is suddenly stopped, the host is rebooted, or the remote host used a "hard close" (see setsockopt for more information on the SO_LINGERoption on the remote socket.)

WSAEDESTADDRREQ
(10039)
Destination address required.
A required address was omitted from an operation on a socket. For example, this error will be returned if sendtois called with the remote address of ADDR_ANY.

WSAEFAULT
(10014)
Bad address.
The system detected an invalid pointer address in attempting to use a pointer argument of a call. This error occurs if an application passes an invalid pointer value, or if the length of the buffer is too small. For instance, if the length of an argument which is a struct sockaddr is smaller than sizeof(struct sockaddr).

WSAEHOSTDOWN
(10064)
Host is down.
A socket operation failed because the destination host was down. A socket operation encountered a dead host. Networking activity on the local host has not been initiated. These conditions are more likely to be indicated by the error WSAETIMEDOUT.

WSAEHOSTUNREACH
(10065)
No route to host.
A socket operation was attempted to an unreachable host. See WSAENETUNREACH

WSAEINPROGRESS
(10036)
Operation now in progress.
A blocking operation is currently executing. Windows Sockets only allows a single blocking operation to be outstanding per task (or thread), and if any other function call is made (whether or not it references that or any other socket) the function fails with the WSAEINPROGRESS error.

WSAEINTR
(10004)
Interrupted function call.
A blocking operation was interrupted by a call to WSACancelBlockingCall.

WSAEINVAL
(10022)
Invalid argument.
Some invalid argument was supplied (for example, specifying an invalid level to the setsockopt function). In some instances, it also refers to the current state of the socket - for instance, calling accept on a socket that is not listening.

WSAEISCONN
(10056)
Socket is already connected.
A connect request was made on an already connected socket. Some implementations also return this error if sendto is called on a connected SOCK_DGRAM socket (For SOCK_STREAM sockets, the to parameter in sendtois ignored), although other implementations treat this as a legal occurrence.

WSAEMFILE
(10024)
Too many open files.
Too many open sockets. Each implementation may have a maximum number of socket handles available, either globally, per process or per thread.

WSAEMSGSIZE
(10040)
Message too long.
A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.

WSAENETDOWN
(10050)
Network is down.
A socket operation encountered a dead network. This could indicate a serious failure of the network system (i.e. the protocol stack that the WinSock DLL runs over), the network interface, or the local network itself.

WSAENETRESET
(10052)
Network dropped connection on reset.
The host you were connected to crashed and rebooted. May also be returned by setsockoptif an attempt is made to set SO_KEEPALIVE on a connection that has already failed.

WSAENETUNREACH
(10051)
Network is unreachable.
A socket operation was attempted to an unreachable network. This usually means the local software knows no route to reach the remote host.

WSAENOBUFS
(10055)
No buffer space available.
An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.

WSAENOPROTOOPT
(10042)
Bad protocol option.
An unknown, invalid or unsupported option or level was specified in a getsockopt or setsockoptcall.

WSAENOTCONN
(10057)
Socket is not connected.
A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using sendto) no address was supplied. Any other type of operation might also return this error - for example, setsockoptsetting SO_KEEPALIVE if the connection has been reset.

WSAENOTSOCK
(10038)
Socket operation on non-socket.
An operation was attempted on something that is not a socket. Either the socket handle parameter did not reference a valid socket, or for select, a member of an fd_set was not valid.

WSAEOPNOTSUPP
(10045)
Operation not supported.
The attempted operation is not supported for the type of object referenced. Usually this occurs when a socket descriptor to a socket that cannot support this operation, for example, trying to accept a connection on a datagram socket.

WSAEPFNOSUPPORT
(10046)
Protocol family not supported.
The protocol family has not been configured into the system or no implementation for it exists. Has a slightly different meaning to WSAEAFNOSUPPORT, but is interchangeable in most cases, and all Windows Sockets functions that return one of these specify WSAEAFNOSUPPORT.

WSAEPROCLIM
(10067)
Too many processes.
A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. WSAStartupmay fail with this error if the limit has been reached.

WSAEPROTONOSUPPORT
(10043)
Protocol not supported.
The requested protocol has not been configured into the system, or no implementation for it exists. For example, a socketcall requests a SOCK_DGRAM socket, but specifies a stream protocol.

WSAEPROTOTYPE
(10041)
Protocol wrong type for socket.
A protocol was specified in the socketfunction call that does not support the semantics of the socket type requested. For example, the ARPA Internet UDP protocol cannot be specified with a socket type of SOCK_STREAM.

WSAESHUTDOWN
(10058)
Cannot send after socket shutdown.
A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call. By calling shutdowna partial close of a socket is requested, which is a signal that sending or receiving or both has been discontinued.

WSAESOCKTNOSUPPORT
(10044)
Socket type not supported.
The support for the specified socket type does not exist in this address family. For example, the optional type SOCK_RAW might be selected in a socketcall, and the implementation does not support SOCK_RAW sockets at all.

WSAETIMEDOUT
(10060)
Connection timed out.
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

WSAEWOULDBLOCK
(10035)
Resource temporarily unavailable.
This error is returned from operations on non-blocking sockets that cannot be completed immediately, for example recv when no data is queued to be read from the socket. It is a non-fatal error, and the operation should be retried later. It is normal for WSAEWOULDBLOCK to be reported as the result from calling connecton a non-blocking SOCK_STREAM socket, since some time must elapse for the connection to be established.

WSAHOST_NOT_FOUND
(11001)
Host not found.
No such host is known. The name is not an official hostname or alias, or it cannot be found in the database(s) being queried. This error may also be returned for protocol and service queries, and means the specified name could not be found in the relevant database.

WSA_INVALID_HANDLE
(OS dependent)
Specified event object handle is invalid.
An application attempts to use an event object, but the specified handle is not valid.

WSA_INVALID_PARAMETER
(OS dependent)
One or more parameters are invalid.
An application used a Windows Sockets function which directly maps to a Win32 function. The Win32 function is indicating a problem with one or more parameters.

WSAINVALIDPROCTABLE
(OS dependent)
Invalid procedure table from service provider.
A service provider returned a bogus proc table to WS2_32.DLL. (Usually caused by one or more of the function pointers being NULL.)

WSAINVALIDPROVIDER
(OS dependent)
Invalid service provider version number.
A service provider returned a version number other than 2.0.

WSA_IO_PENDING
(OS dependent)
Overlapped operations will complete later.
The application has initiated an overlapped operation which cannot be completed immediately. A completion indication will be given at a later time when the operation has been completed.

WSA_IO_INCOMPLETE
(OS dependent)
Overlapped I/O event object not in signaled state.
The application has tried to determine the status of an overlapped operation which is not yet completed. Applications that use WSAWaitForMultipleEventsin a polling mode to determine when an overlapped operation has completed will get this error code until the operation is complete.

WSA_NOT_ENOUGH_MEMORY
(OS dependent)
Insufficient memory available.
An application used a Windows Sockets function which directly maps to a Win32 function. The Win32 function is indicating a lack of required memory resources.

WSANOTINITIALISED
(10093)
Successful WSAStartup not yet performed.
Either the application hasn't called WSAStartup, or WSAStartup failed. The application may be accessing a socket which the current active task does not own (i.e. trying to share a socket between tasks), or WSACleanuphas been called too many times.

WSANO_DATA
(11004)
Valid name, no data record of requested type.
The requested name is valid and was found in the database, but it does not have the correct associated data being resolved for. The usual example for this is a hostname -> address translation attempt (using gethostbyname or WSAAsyncGetHostByName) which uses the DNS (Domain Name Server), and an MX record is returned but no A record - indicating the host itself exists, but is not directly reachable.

WSANO_RECOVERY
(11003)
This is a non-recoverable error.
This indicates some sort of non-recoverable error occurred during a database lookup. This may be because the database files (e.g. BSD-compatible HOSTS, SERVICES or PROTOCOLS files) could not be found, or a DNS request was returned by the server with a severe error.

WSAPROVIDERFAILEDINIT
(OS dependent)
Unable to initialize a service provider.
Either a service provider's DLL could not be loaded (LoadLibrary failed) or the provider's WSPStartup/NSPStartupfunction failed.

WSASYSCALLFAILURE
(OS dependent)
System call failure.
Returned when a system call that should never fail does. For example, if a call to WaitForMultipleObjectsfails or one of the registry functions fails trying to manipulate theprotocol/namespace catalogs.

WSASYSNOTREADY
(10091)
Network subsystem is unavailable.
This error is returned by WSAStartup if the Windows Sockets implementation cannot function at this time because the underlying system it uses to provide network services is currently unavailable. Users should check:

that the WINSOCK.DLL file is in the current path,
that the WINSOCK.DLL file is from the same vendor as the underlying protocol stack. They cannot be mixed and matched (WinSock DLLs must be supplied by the same vendor that provided the underlying protocol stack).
that they are not trying to use more than one Windows Sockets implementation simultaneously. If there is more than one WINSOCK DLL on your system, be sure the first one in the path is appropriate for the network subsystem currently loaded.
the Windows Sockets implementation documentation to be sure all necessary components are currently installed and configured correctly.
WSATRY_AGAIN
(11002)
Non-authoritative host not found.
This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. A retry at some time later may be successful.

WSAVERNOTSUPPORTED
(10092)
WINSOCK.DLL version out of range.
The current Windows Sockets implementation does not support the Windows Sockets specification version requested by the application. Check that no old WINSOCK.DLL files are being accessed, or contact the stack vendor to see if an updated WINSOCK.DLL exists.

WSAEDISCON
(10094)
Graceful shutdown in progress.
Returned by recv, WSARecvto indicate the remote party has initiated a graceful shutdown sequence.

WSA_OPERATION_ABORTED
(OS dependent)
Overlapped operation aborted.
An overlapped operation was canceled due to the closure of the socket, or the execution of the SIO_FLUSH command in WSAIoctl.

Saturday, January 27, 2007

A list with known port numbers of Trojan's

Port No. Port Name Description
-----------------------------------------------------------------------
1 UDP Sockets de Troie
2 TCP Death
15 TCP B2
20 TCP Senna Spy FTP Server
21 TCP Back Construction
21 TCP Blade Runner
21 TCP Cattivik FTP Server
21 TCP CC Invader
21 TCP Dark FTP
21 TCP Doly Trojan
21 TCP Fore
21 TCP FreddyK
21 TCP Invisible FTP
21 TCP Juggernaut 42
21 TCP Larva
21 TCP MotIv FTP
21 TCP Net Administrator
21 TCP Ramen
21 TCP RTB 666
21 TCP Senna Spy FTP Server
21 TCP The Flu
21 TCP Traitor 21
21 TCP WebEx
21 TCP WinCrash
22 TCP Adore sshd
22 TCP Shaft
23 TCP ADM Worm
23 TCP Fire HacKer
23 TCP My Very Own Trojan
23 TCP RTB 666
23 TCP Telnet Pro
23 TCP Tiny Telnet Server / TTS
23 TCP Truva Atl
25 TCP Ajan
25 TCP Antigen
25 TCP Barok
25 TCP BSE
25 TCP Email Password Sender / EPS
25 TCP EPS II
25 TCP Gip
25 TCP Gris
25 TCP Haebu Coceda
25 TCP Happy99
25 TCP Hpteam mail
25 TCP Hybris
25 TCP I love you
25 TCP Kuang2
25 TCP Magic Horse
25 TCP MBT / Mail Bombing Trojan
25 TCP Moscow Email Trojan
25 TCP Naebi
25 TCP NewApt Worm
25 TCP ProMail Trojan
25 TCP Shtirlitz
25 TCP Stealth
25 TCP Stukach
25 TCP Tapiras
25 TCP Terminator
25 TCP WinPC
25 TCP WinSpy
28 TCP Amanda
30 TCP Agent 40421
31 TCP Agent 31
31 TCP Hackers Paradise
31 TCP Masters Paradise
39 TCP SubSARI
41 TCP Deep Throat
41 TCP Foreplay
44 TCP Arctic
48 TCP DRAT
50 TCP DRAT
53 TCP ADM Worm
53 TCP Lion
58 TCP DMSetup
59 TCP DMSetup
68 TCP Subseven 1.0
69 TCP BackGate
69 TCP Evala Worm
70 TCP Evala Worm
79 TCP CDK
79 TCP Firehotcker
80 TCP 711 Trojan / Seven Eleven
80 TCP AckCmd
80 TCP Back End
80 TCP Back Orifice 2000 Plug-Ins
80 TCP Cafeini
80 TCP CGI Backdoor
80 TCP Executor
80 TCP God Message
80 TCP God Message 4 Creator
80 TCP Hooker
80 TCP IISworm
80 TCP MTX
80 TCP NCX
80 TCP Noob
80 TCP Ramen
80 TCP Reverse WWW Tunnel Backdoor
80 TCP RingZero
80 TCP RTB 666
80 TCP Seeker
80 TCP WAN Remote
80 TCP Web Server CT
80 TCP WebDownloader
81 TCP RemoConChubo
90 TCP Hidden Port 2.0
99 TCP Hidden Port
99 TCP Mandragore
99 TCP NCX
110 TCP ProMail Trojan
113 TCP Invisible Identd Deamon
113 TCP Kazimas
119 TCP Happy99
121 TCP Attack Bot
121 TCP God Message
121 TCP Jammer Killah
123 TCP Net Controller
133 TCP Farnaz
137 TCP Chode
137 TCP Netbios name (DoS attack)
137 UDP Msinit
137 UDP Netbios name (DoS attack)
137 UDP Qaz
138 TCP Chode
139 TCP Chode
139 TCP God Message Worm
139 TCP Msinit
139 TCP Netbios session (DoS attack)
139 TCP Netlog
139 TCP Network
139 TCP Qaz
139 TCP Sadmind
139 TCP SMB Relay
139 UDP Netbios session (DoS attack)
142 TCP NetTaxi 1.8
146 TCP Infector
146 TCP Intruder
146 UDP Infector
166 TCP NokNok
170 TCP A-Trojan
171 TCP A-Trojan 2.0
334 TCP Backage
411 TCP Backage
413 TCP Coma
420 TCP Breach
420 TCP Incognito
421 TCP CP Wrappers Trojan
455 TCP Fatal Connections
456 TCP Hackers Paradise
511 TCP T0rn Rootkit
513 TCP Grlogin
514 TCP RPC Backdoor
515 TCP lpdw0rm
515 TCP Ramen
531 TCP Net666
531 TCP Rasmin
555 TCP 711 Trojan / Seven Eleven
555 TCP Ini-Killer
555 TCP Net Administrator
555 TCP Phase Zero / Phase-0
555 TCP Phaze
555 TCP Stealth Spy
600 TCP Sadmind
605 TCP Secret Service
661 TCP NokNok
666 TCP Attack FTP
666 TCP Back Construction
666 TCP BLA Trojan
666 TCP Cain & Abel
666 TCP lpdw0rm
666 TCP NokNok
666 TCP Satans Back Door / SBD
666 TCP ServU
666 TCP Shadow Phyre
666 TCP th3r1pp3rz / Therippers / Ripper
667 TCP SniperNet
668 TCP th3r1pp3rz / Therippers / Ripper
669 TCP DP Trojan
692 TCP GayOL
777 TCP AIM Spy Application
777 TCP Undetected
785 TCP NetworkTerrorist
808 TCP WinHole
901 TCP Backdoor.Devil
902 TCP Backdoor.Devil
911 TCP Dark Shadow
911 TCP Dark Shadow
999 TCP Chat Power
999 TCP DeepThroat
999 TCP Foreplay
999 TCP WinSatan
1000 TCP Connecter
1000 TCP Der Späher / Der Spaeher
1000 TCP Direct Connection
1001 TCP Anti Denial
1001 TCP Der Späher / Der Spaeher
1001 TCP Le Guardien
1001 TCP Silencer
1001 TCP Theef
1001 TCP WebEx
1005 TCP Theef
1008 TCP Lion
1010 TCP Doly Trojan
1011 TCP Doly Trojan
1012 TCP Doly Trojan
1015 TCP Doly Trojan
1016 TCP Doly Trojan
1020 TCP Vampire
1024 TCP Jade
1024 TCP Latinus
1024 TCP NetSpy
1024 TCP Remote Administration Tool / RAT
1025 TCP Fraggle Rock
1025 TCP md5 Backdoor
1025 TCP NetSpy
1025 TCP Remote Storm
1025 UDP Maverick's Matrix 1.2 - 2.0
1025 UDP Remote Storm
1027 TCP ICQ
1029 TCP ICQ
1031 TCP Xanadu
1032 TCP ICQ
1033 TCP NetSpy
1034 TCP Backdoor.Systec
1035 TCP Multidropper
1042 TCP BLA Trojan
1042 UDP BLA Trojan
1045 TCP Rasmin
1049 TCP /sbin/initd
1050 TCP MiniCommand
1053 TCP The Thief
1054 TCP AckCmd
1080 TCP SubSeven 2.2
1080 TCP WinHole
1081 TCP WinHole
1082 TCP WinHole
1083 TCP WinHole
1090 TCP Xtreme
1095 TCP Remote Administration Tool / RAT
1097 TCP Remote Administration Tool / RAT
1098 TCP Remote Administration Tool / RAT
1099 TCP Blood Fest Evolution
1099 TCP Remote Administration Tool / RAT
1104 UDP RexxRave
1130 TCP NokNok
1130 UDP NokNok
1150 TCP Orion
1151 TCP Orion
1170 TCP Psyber Stream Server / PSS
1170 TCP Streaming Audio Server / Voice Streaming Audio
1174 TCP DaCryptic
1180 TCP Unin68
1200 UDP NoBackO
1201 UDP NoBackO
1207 TCP SoftWAR
1208 TCP Infector
1212 TCP Kaos
1234 TCP SubSeven Java client
1234 TCP Ultors Trojan
1243 TCP BackDoor-G
1243 TCP SubSeven
1243 TCP SubSeven Apocalypse
1243 TCP Tiles
1245 TCP VooDoo Doll
1255 TCP Scarab
1256 TCP Project nEXT
1256 TCP RexxRave
1269 TCP Matrix / Maverick's Matrix
1272 TCP The Matrix
1313 TCP NETrojan
1337 TCP Shadyshell
1338 TCP Millennium Worm
1349 TCP BO dll
1349 UDP BackOrifice DLL Comm
1386 TCP Dagger
1394 TCP Backdoor G-1
1394 TCP GoFriller
1441 TCP Remote Storm
1466 TCP Net Metropolitan
1480 TCP RemoteHack
1492 TCP FTP99CMP
1505 TCP FunkProxy
1505 UDP FunkProxy
1509 TCP Psyber Streaming Server
1524 TCP Trinoo
1568 TCP Remote Hack
1600 TCP Direct Connection
1600 TCP Shivka Burka
1601 TCP Direct Connection
1602 TCP Direct Connection
1604 TCP ICA Browser
1604 UDP ICA Browser
1703 TCP Exploiter
1722 TCP Backdoor.NetControle
1722 UDP Backdoor.NetControle
1777 TCP Scarab
1784 TCP Snid
1807 TCP SpySender
1826 TCP Glacier
1966 TCP Fake FTP
1967 TCP For Your Eyes Only / FYEO
1967 TCP WM FTP Server
1969 TCP OpC BO
1981 TCP Bowl
1981 TCP Shockrave
1991 TCP PitFall
1999 TCP Back Door
1999 TCP SubSeven
1999 TCP TransmissionScout / TransScout
2000 TCP A-Trojan 2.0
2000 TCP Der Späher / Der Spaeher
2000 TCP Insane Network
2000 TCP Last 2000
2000 TCP Remote Explorer 2000
2000 TCP Senna Spy Trojan Generator
2001 TCP Der Späher / Der Spaeher
2001 TCP Trojan Cow
2002 TCP TransmissionScout / TransScout
2003 TCP TransmissionScout / TransScout
2003 TCP TransmissionScout / TransScout
2003 TCP TransmissionScout / TransScout
2004 TCP TransmissionScout / TransScout
2005 TCP TransmissionScout / TransScout
2023 TCP Ripper
2023 TCP Ripper Pro
2040 TCP Inferno Uploader
2080 TCP WinHole
2115 TCP Bugs
2130 UDP Mini Backlash
2140 TCP The Invasor
2140 UDP Deep Throat
2140 UDP Foreplay
2155 TCP Illusion Mailer
2255 TCP Nirvana
2283 TCP HLV Rat5
2300 TCP Xplorer
2311 TCP Studio 54
2330 TCP IRC Contact
2331 TCP IRC Contact
2332 TCP IRC Contact
2333 TCP IRC Contact
2334 TCP IRC Contact
2335 TCP IRC Contact
2336 TCP IRC Contact
2337 TCP IRC Contact
2338 TCP IRC Contact
2339 TCP IRC Contact
2339 TCP Voice Spy
2339 UDP Voice Spy
2345 TCP Doly Trojan
2400 TCP Portd
2555 TCP Lion
2555 TCP T0rn Rootkit
2565 TCP Striker Trojan
2583 TCP WinCrash
2589 TCP Dagger
2600 TCP Digital RootBeer
2702 TCP Black Diver
2716 TCP The Prayer 1.2
2716 TCP The Prayer 1.3
2721 TCP Phase Zero
2773 TCP SubSeven
2773 TCP SubSeven 2.1 Gold
2774 TCP SubSeven
2774 TCP SubSeven 2.1 Gold
2801 TCP Phineas Phucker
2929 TCP Konik
2989 TCP Remote Administration Tool / RAT
2989 UDP Remote Administration Tool / RAT
3000 TCP InetSpy
3000 TCP Remote Shut
3024 TCP WinCrash
3028 TCP Ring Zero
3031 TCP Microspy
3128 TCP Masters Paradise
3128 TCP Reverse WWW Tunnel Backdoor
3128 TCP RingZero / Ring0
3128 UDP Masters Paradise
3129 TCP Masters Paradise
3129 UDP Masters Paradise
3131 TCP SubSARI
3150 TCP Deep Throat 1.0
3150 TCP Deep Throat 1.1
3150 TCP Deep Throat 2.0
3150 TCP Deep Throat 3.0
3150 TCP Deep Throat 3.1
3150 TCP The Invasor
3150 UDP Foreplay
3150 UDP Mini Backlash
3212 TCP Maverick's Matrix 1.2b
3332 TCP Q0 BackDoor
3333 TCP Daodan
3333 UDP Daodan
3456 TCP Terror Trojan
3459 TCP Eclipse 2000
3459 TCP Sanctuary
3586 TCP Snid
3700 TCP Portal of Doom
3723 TCP Mantis
3777 TCP PsychWard
3791 TCP Eclypse
3791 TCP Total Solar Eclypse
3800 TCP Total Solar Eclypse
3800 UDP Total Solar Eclypse
3801 TCP Eclypse
3801 TCP Total Solar Eclypse
3801 UDP Total Solar Eclypse
4000 TCP Connect-Back Backdoor
4000 TCP SkyDance
4092 TCP WinCrash
4100 TCP Watchguard Firebox (admin DoS Exploit)
4201 TCP War Trojan
4242 TCP Virtual Hacking Machine / VHM
4321 TCP BoBo
4444 TCP CrackDown
4444 TCP Prosiak
4444 TCP Swift Remote
4488 TCP Event Horizon
4523 TCP Celine
4545 TCP Internal Revise
4545 TCP Remote Revise
4567 TCP File Nail
4590 TCP ICQ Trojan
4653 TCP Cero
4666 TCP Mneah
4950 TCP ICQ Trogen (Lm)
5000 TCP Back Door Setup
5000 TCP BioNet Lite
5000 TCP Blakharaz
5000 TCP Blazer5
5000 TCP Bubbel
5000 TCP ICKiller
5000 TCP Ra1d
5000 TCP Sockets de Troie
5001 TCP Back Door Setup
5001 TCP Blakharaz
5001 TCP Sockets de Troie
5002 TCP cd00r
5002 TCP Linux Rootkit IV / Linux Rootkit 4
5002 TCP Shaft
5005 TCP Aladino
5010 TCP Solo
5011 TCP modified
5011 TCP One of the Last Trojans / OOTLT
5011 TCP One of the Last Trojans / OOTLT
5025 TCP WM Remote KeyLogger
5031 TCP Net Metropolitan
5032 TCP Net Metropolitan
5151 TCP OptixLite
5190 TCP MBomber
5321 TCP Firehotcker
5333 TCP Backage
5333 TCP NetDemon
5343 TCP WC Remote Administration Tool / wCrat
5400 TCP Back Construction
5400 TCP Blade Runner
5400 TCP Deep Throat
5401 TCP Back Construction
5401 TCP Blade Runner
5401 TCP Mneah
5402 TCP Back Construction
5402 TCP Blade Runner
5402 TCP Mneah
5512 TCP Illusion Mailer
5512 TCP X TCP
5521 TCP Illusion Mailer
5534 TCP The Flu
5550 TCP X TCP
5555 TCP Noxcape
5555 TCP ServeMe
5555 UDP Daodan
5556 TCP BO Facil
5557 TCP BO Facil
5569 TCP Robo-Hack
5637 TCP PC Crasher
5638 TCP PC Crasher
5714 TCP WinCrash
5741 TCP WinCrash
5742 TCP WinCrash
5760 TCP Portmap Remote Root Linux Exploit
5802 TCP Y3K Rat
5810 TCP Y3K Rat
5858 TCP Y3K Rat
5873 TCP SubSeven 2.2
5880 TCP Y3K Rat
5881 TCP Y3K Rat
5881 UDP Y3K Rat
5882 TCP Y3K Rat
5882 UDP Y3K Rat
5883 TCP Y3K Rat
5883 UDP Y3K Rat
5884 TCP Y3K Rat
5884 UDP Y3K Rat
5885 TCP Y3K Rat
5885 UDP Y3K Rat
5886 TCP Y3K Rat
5886 UDP Y3K Rat
5887 TCP Y3K Rat
5887 UDP Y3K Rat
5888 TCP Y3K Rat
5888 UDP Y3K Rat
5889 TCP Y3K Rat
5890 TCP Y3K Rat
6000 TCP The Thing
6006 TCP Bad Blood
6272 TCP Secret Service
6400 TCP The Thing
6660 TCP LameSpy
6661 TCP TEMan
6661 TCP Weia-Meia
6666 TCP Dark Connection Inside
6666 TCP NetBus Worm
6667 TCP Dark FTP
6667 TCP EGO
6667 TCP Maniac rootkit
6667 TCP Moses
6667 TCP ScheduleAgent
6667 TCP SubSeven
6667 TCP Subseven 2.1.4 DefCon 8
6667 TCP The Thing (modified)
6667 TCP Trinity
6667 TCP WinSatan
6669 TCP Host Control
6669 TCP Vampire
6670 TCP BackWeb Server
6670 TCP Deep Throat
6670 TCP Foreplay
6670 TCP WinNuke eXtreame
6711 TCP BackDoor-G
6711 TCP NokNok
6711 TCP SubSARI
6711 TCP SubSeven
6711 TCP VP Killer
6712 TCP Funny Trojan
6712 TCP SubSeven
6713 TCP SubSeven
6723 TCP Mstream attack-handler
6767 TCP NTRC
6767 TCP UandMe
6771 TCP Deep Throat
6771 TCP Foreplay
6776 TCP 2000 Cracks
6776 TCP BackDoor-G
6776 TCP SubSeven
6776 TCP VP Killer
6789 TCP Doly
6838 UDP Mstream agent-handler
6883 TCP Delta Source DarkStar (???)
6912 TCP Shit Heap
6939 TCP Indoctrination
6969 TCP 2000 Cracks
6969 TCP Danton
6969 TCP GateCrasher
6969 TCP IRC 3
6969 TCP Net Controller
6969 TCP Priority
6970 TCP Danton
6970 TCP GateCrasher
7000 TCP Exploit Translation Server
7000 TCP Kazimas
7000 TCP Remote Grab
7000 TCP SubSeven
7000 TCP SubSeven 2.1 Gold
7001 TCP Freak2k
7001 TCP Freak88
7001 TCP NetSnooper Gold
7028 TCP Unknown Trojan
7028 UDP Unknown Trojan
7158 TCP Lohoboyshik
7215 TCP SubSeven
7215 TCP SubSeven 2.1 Gold
7300 TCP Coced
7300 TCP NetMonitor
7301 TCP Coced
7301 TCP NetMonitor
7306 TCP NetMonitor
7306 TCP NetSpy
7307 TCP NetMonitor
7307 TCP Remote Process Monitor
7308 TCP NetMonitor
7308 TCP X Spy
7410 TCP Phoenix
7424 TCP Host Control
7424 UDP Host Control
7511 TCP Genue
7597 TCP Qaz
7609 TCP Snid
7614 TCP Backdoor.GRM
7626 TCP Binghe
7626 TCP Glacier
7626 TCP Hyne
7718 TCP Glacier
7777 TCP God Message
7777 TCP The Thing (modified)
7777 TCP Tini
7788 TCP Last
7788 TCP Matrix
7789 TCP Back Door Setup
7789 TCP ICKiller
7789 TCP Mozilla
7826 TCP Oblivion / Mini Oblivion
7887 TCP SmallFun
7891 TCP Revenger
7891 TCP The ReVeNgEr
7983 TCP Mstream handler-agent
8012 TCP BackDoor-KL
8012 TCP Ptakks
8080 TCP Brown Orifice
8080 TCP Generic Backdoor
8080 TCP RemoConChubo
8080 TCP Reverse WWW Tunnel Backdoor
8080 TCP Ring Zero
8685 TCP Unin68
8720 TCP Connection
8787 TCP Back Orifice 2000
8812 TCP FraggleRock Lite
8899 TCP Last
8988 TCP BacHack
8989 TCP Rcon
8989 TCP Recon
8989 TCP Xcon
9000 TCP Netministrator
9325 UDP Mstream agent-handler
9400 TCP InCommand
9696 TCP Danton
9697 TCP Danton
9870 TCP Remote Computer Control Center / R3C
9872 TCP Portal of Doom
9873 TCP Portal of Doom
9874 TCP Portal of Doom
9875 TCP Portal of Doom
9876 TCP Cyber Attacker
9876 TCP Rux
9878 TCP TransmissionScout / TransScout
9989 TCP Ini-Killer
9999 TCP ForcedEntry
9999 TCP Infra
9999 TCP The Prayer
9999 TCP The Prayer / Prayer
10000 TCP OpwinTRojan
10005 TCP OpwinTRojan
10008 TCP Cheese Worm
10008 TCP Lion
10013 TCP Amanda
10067 UDP Portal of Doom
10085 TCP Syphillis
10086 TCP Syphillis
10100 TCP Control Total
10100 TCP GiFt Trojan
10101 TCP BrainSpy
10101 TCP Silencer / NewSilencer
10167 UDP Portal of Doom
10498 UDP Mstream handler-agent
10520 TCP Acid Shivers
10528 TCP Host Control
10607 TCP Coma
10666 UDP Ambush
11000 TCP Senna Spy Trojan Generator
11011 TCP Amanda
11050 TCP Host Control
11051 TCP Host Control
11223 TCP Progenic Trojan
11223 TCP Secret Agent
11225 TCP Cyn
11225 UDP Cyn
11306 TCP NokNok
11306 UDP NokNok
11831 TCP Latinus Server / Latinus
11991 TCP Pitfall Surprise
12076 TCP Gjamer
12223 TCP Hack'99 KeyLogger
12310 TCP PreCursor
12345 TCP Adore sshd
12345 TCP Ashley
12345 TCP cron / crontab
12345 TCP Fat Bitch Trojan
12345 TCP GabanBus
12345 TCP icmp_client.c
12345 TCP icmp_pipe.c
12345 TCP Mypic
12345 TCP NetBus
12345 TCP NetBus Toy
12345 TCP NetBus Worm
12345 TCP Pie Bill Gates
12345 TCP Ultor's Trojan
12345 TCP ValvNet
12345 TCP Whack Job
12345 TCP X-bill
12346 TCP Fat Bitch Trojan
12346 TCP GabanBus
12346 TCP NetBus
12346 TCP X-bill
12348 TCP BioNet
12349 TCP BioNet
12349 TCP Webhead
12361 TCP Whack-a-mole
12362 TCP Whack-a-mole
12363 TCP Whack-a-mole
12456 TCP NetBus
12478 TCP Bionet
12623 UDP DUN Control
12624 TCP ButtMan
12631 TCP Whack Job
12701 TCP Eclypse
12754 TCP Mstream attack-handler
12904 TCP Akropolis
13000 TCP Senna Spy Trojan Generator
13000 TCP Senna Spy Trojan Generator
13010 TCP BitchController
13010 TCP Hacker Brasil / HBR
13013 TCP PsychWard
13014 TCP PsychWard
13223 TCP Hack'99 KeyLogger
13473 TCP Chupacabra
13700 TCP Kuang2 The Virus
14286 TCP Hell Driver
14500 TCP PC Invader
14501 TCP PC Invader
14502 TCP PC Invader
14503 TCP PC Invader
14504 TCP PC Invader
15000 TCP NetDemon
15092 TCP Host Control
15104 TCP Mstream attack-handler
15382 TCP SubZero
15858 TCP CDK
16484 TCP Mosucker
16660 TCP Stacheldraht
16772 TCP ICQ Revenge
16959 TCP SubSeven
16959 TCP Subseven 2.1.4 DefCon 8
16969 TCP Priority
16969 TCP Progenic
16982 TCP AcidShiver
17166 TCP Mosaic
17300 TCP Kuang2 The Virus
17449 TCP Kid Terror
17499 TCP CrazzyNet
17500 TCP CrazzyNet
17569 TCP Infector
17593 TCP AudioDoor
17777 TCP Nephron
18667 TCP Knark
18753 UDP Shaft
19864 TCP ICQ Revenge
20000 TCP Millenium
20001 TCP Insect
20001 TCP Millenium
20001 TCP Millenium (Lm)
20002 TCP AcidkoR
20005 TCP Mosucker
20023 TCP VP Killer
20034 TCP NetBus 2.0 Pro
20034 TCP NetBus 2.0 Pro Hidden
20034 TCP NetRex
20034 TCP Whack Job
20203 TCP Chupacabra
20331 TCP BLA Trojan
20432 TCP Shaft client to handlers
20433 UDP Shaft agent to handlers
21212 TCP Schwindler
21544 TCP GirlFriend
21544 TCP Kid Terror
21544 TCP Matrix
21544 UDP GirlFriend
21554 TCP Exploiter
21554 TCP FreddyK
21554 TCP Kid Terror
21554 TCP Schwindler
21554 TCP Winsp00fer
21579 TCP Breach
21684 TCP Intruse
21957 TCP Latinus
22068 TCP Acid Shiver
22222 TCP Donald Dick
22222 TCP Prosiak
22222 TCP Ruler
22222 TCP RUX The TIc.K
22222 TCP RUX The TIc.K
22456 TCP Bla
22457 TCP Bla
22784 TCP Backdoor-ADM
22845 TCP Breach
22847 TCP Breach
23005 TCP NetTrash
23005 TCP Olive
23005 TCP Oxon
23006 TCP NetTrash
23023 TCP Logged
23032 TCP Amanda
23321 TCP Konik
23432 TCP Asylum
23432 TCP Mini Asylum
23456 TCP Evil FTP
23456 TCP Ugly FTP
23456 TCP Whack Job
23476 TCP Donald Dick
23476 UDP Donald Dick
23477 TCP Donald Dick
23777 TCP InetSpy
24000 TCP Infector
24289 TCP Latinus
25123 TCP Goy'Z Trojan
25386 TCP MoonPie
25555 TCP FreddyK
25556 TCP FreddyK
25685 TCP MoonPie
25686 TCP MoonPie
25982 TCP MoonPie
26274 UDP Delta Source
26681 TCP Voice Spy
27160 TCP MoonPie
27374 TCP Bad Blood
27374 TCP EGO
27374 TCP Fake SubSeven
27374 TCP Lion
27374 TCP Ramen
27374 TCP Seeker
27374 TCP SubSeven
27374 TCP SubSeven 2.1 Gold
27374 TCP Subseven 2.1.4 DefCon 8
27374 TCP SubSeven 2.2
27374 TCP SubSeven Muie
27374 TCP The Saint
27374 TCP Ttfloader
27374 TCP Webhead
27444 UDP Trinoo / Trin00 / TFN2K (DoS attack)
27573 TCP SubSeven
27665 TCP Trinoo / Trin00 / TFN2K (DoS attack)
28429 TCP Hack'a'Tack
28430 TCP Hack'a'Tack
28431 TCP Hack'a'Tack
28431 UDP Hack'a'Tack
28432 TCP Hack'a'Tack
28432 UDP Hack'a'Tack
28433 TCP Hack'a'Tack
28433 UDP Hack'a'Tack
28434 TCP Hack'a'Tack
28434 UDP Hack'a'Tack
28435 TCP Hack'a'Tack
28435 UDP Hack'a'Tack
28436 TCP Hack'a'Tack
28436 UDP Hack'a'Tack
28678 TCP Exploiter
29104 TCP NetTrojan
29292 TCP BackGate
29369 TCP ovasOn
29559 TCP Latinus
29891 TCP The Unexplained
30000 TCP Infector
30001 TCP ErrOr32
30003 TCP Lamers Death
30005 TCP Backdoor JZ
30029 TCP AOL Trojan
30100 TCP NetSphere
30101 TCP NetSphere
30102 TCP NetSphere
30103 TCP NetSphere
30103 UDP NetSphere
30133 TCP NetSphere Final
30303 TCP Sockets de Troie
30700 TCP Mantis
30947 TCP Intruse
30999 TCP Kuang2
31221 TCP Knark
31320 TCP LittleWitch
31320 UDP LittleWitch
31335 TCP Trinoo / Trin00 (DoS attack)
31336 TCP BO Whack
31336 TCP Butt Funnel
31337 TCP ADM Worm
31337 TCP Back Fire
31337 TCP Back Orifice (Lm)
31337 TCP Back Orifice 1.20 patches
31337 TCP Back Orifice russian
31337 TCP Baron Night
31337 TCP Beeone
31337 TCP bindshell
31337 TCP BO client
31337 TCP BO Facil
31337 TCP BO spy
31337 TCP BO2
31337 TCP cron / crontab
31337 TCP Freak2k
31337 TCP Freak88
31337 TCP Gummo
31337 TCP icmp_pipe.c
31337 TCP Khaled
31337 TCP Linux Rootkit IV / Linux Rootkit 4
31337 TCP Netpatch
31337 TCP OPC
31337 TCP Sm4ck
31337 TCP Sockdmini
31337 UDP Back Orifice
31337 UDP Deep BO
31337 UDP OPC
31338 TCP Back Orifice
31338 TCP Butt Funnel
31338 TCP NetSpy (DK)
31338 UDP Deep BO
31338 UDP NetSpy (DK)
31339 TCP NetSpy (DK)
31339 TCP NetSpy (DK)
31557 TCP Xanadu
31666 TCP BOWhack
31745 TCP BuschTrommel
31785 TCP Hack'a'Tack
31787 TCP Hack'a'Tack
31787 UDP Hack'a'Tack
31788 TCP Hack'a'Tack
31789 UDP Hack'a'Tack
31790 TCP Hack'a'Tack
31790 UDP Hack'a'Tack
31791 TCP Hack'a'Tack
31791 UDP Hack'a'Tack
31792 TCP Hack'a'Tack
32001 TCP Donald Dick
32100 TCP Peanut Brittle
32100 TCP Project nEXT
32418 TCP Acid Battery
32791 TCP Acropolis / Akropolis
33270 TCP Trinity
33333 TCP Blakharaz
33333 TCP Prosiak
33390 UDP Unknown Trojan
33567 TCP Lion
33567 TCP T0rn Rootkit
33568 TCP Lion
33568 TCP T0rn Rootkit
33577 TCP Son of PsychWard
33777 TCP Son of PsychWard
33911 TCP Spirit 2000
33911 TCP Spirit 2001
34324 TCP Big Gluck / TN
34324 TCP TelnetServer
34324 TCP TN
34444 TCP Donald Dick
34555 UDP Trinoo (for Windows)
34763 TCP Infector
35000 TCP Infector
35555 UDP Trinoo (for Windows)
36794 TCP BugBear
37237 TCP Mantis
37266 TCP The Killer Trojan
37651 TCP Yet Another Trojan / YAT
38741 TCP CyberSpy
39507 TCP Busters
40412 TCP The Spy
40421 TCP Agent 40421
40421 TCP Master's Paradise
40422 TCP Master's Paradise
40423 TCP Master's Paradise
40425 TCP Master's Paradise
40426 TCP Master's Paradise
40999 TCP Diems Mutter
41337 TCP Storm
41666 TCP Remote Boot Tool / RBT
41666 TCP Remote Boot Tool / RBT
43210 TCP Master's Paradise
44444 TCP Prosiak
44575 TCP Exploiter
44767 UDP School Bus
45559 TCP Maniac rootkit
45673 TCP Acropolis / Akropolis
47017 TCP T0rn Rootkit
47252 UDP Delta Source
47262 UDP Delta Source
48004 TCP Fraggle Rock
48006 TCP Fraggle Rock
49000 TCP Fraggle Rock
49301 TCP OnLine KeyLogger
49683 TCP HolzPferd
49683 UDP HolzPferd
50000 TCP SubSARI
50130 TCP Enterprise
50505 TCP Sockets de Troie
50766 TCP Fore
50766 TCP Schwindler
50767 TCP Fore
51966 TCP Cafeini
52317 TCP Acid Battery 2000
53001 TCP Remote Windows Shutdown / RWS
54283 TCP SubSeven
54283 TCP SubSeven 2.1 Gold
54320 TCP Back Orifice 2000
54321 TCP Back Orifice 2000
54321 TCP PC Invader
54321 TCP School Bus
55165 TCP File Manager Trojan
55165 TCP File Manager Trojan
55165 TCP WM Trojan Generator
55166 TCP WM Trojan Generator
57341 TCP NetRaider
57922 TCP Bionet
58008 TCP Tron
58009 TCP Tron
58339 TCP Butt Funnel
59211 TCP Duck Toy
60000 TCP Deep Throat
60000 TCP Foreplay
60000 TCP Mini Backlash
60000 TCP Sockets de Troie
60000 UDP Mini Backlash
60001 TCP Trinity
60008 TCP Lion
60008 TCP T0rn Rootkit
60068 TCP Xzip 6000068
60411 TCP Connection
61348 TCP Bunker-Hill
61466 TCP TeleCommando
61603 TCP Bunker-Hill
63485 TCP Bunker-Hill
63536 TCP Insane Network
64101 TCP Taskman
65000 TCP Devil
65000 TCP Sockets de Troie
65000 TCP Stacheldraht
65390 TCP Eclypse
65421 TCP Jade
65432 TCP The Traitor / th3tr41t0r
65432 UDP The Traitor / th3tr41t0r
65530 TCP Windows Mite
65534 TCP /sbin/initd
65535 TCP Adore Worm
65535 TCP RC1 Trojan
65535 TCP Sins

A list with known port numbers 10000 and up

Port No. Port Name Description
-----------------------------------------------------------------------
10000/tcp ndmp Network Data Management Protocol
10000/udp ndmp Network Data Management Protocol
10007/tcp mvs-capacity MVS Capacity
10007/udp mvs-capacity MVS Capacity
11000/tcp irisa IRISA
11000/udp irisa IRISA
11001/tcp metasys Metasys
11001/udp metasys Metasys
11367/tcp atm-uhas ATM UHAS
11367/udp atm-uhas ATM UHAS
12000/tcp entextxid IBM Enterprise Extender SNA XID Exchange
12000/udp entextxid IBM Enterprise Extender SNA XID Exchange
12001/tcp entextnetwk IBM Enterprise Extender SNA COS Network Priority
12001/udp entextnetwk IBM Enterprise Extender SNA COS Network Priority
12002/tcp entexthigh IBM Enterprise Extender SNA COS High Priority
12002/udp entexthigh IBM Enterprise Extender SNA COS High Priority
12003/tcp entextmed IBM Enterprise Extender SNA COS Medium Priority
12003/udp entextmed IBM Enterprise Extender SNA COS Medium Priority
12004/tcp entextlow IBM Enterprise Extender SNA COS Low Priority
12004/udp entextlow IBM Enterprise Extender SNA COS Low Priority
12753/tcp tsaf tsaf port
12753/udp tsaf tsaf port
13160/tcp i-zipqd I-ZIPQD
13160/udp i-zipqd I-ZIPQD
13720/tcp bprd BPRD Protocol (VERITAS NetBackup)
13720/udp bprd BPRD Protocol (VERITAS NetBackup)
13721/tcp bpbrm BPBRM Protocol (VERITAS NetBackup)
13721/udp bpbrm BPBRM Protocol (VERITAS NetBackup)
13782/tcp bpcd VERITAS NetBackup
13782/udp bpcd VERITAS NetBackup
13818/tcp dsmcc-config DSMCC Config
13818/udp dsmcc-config DSMCC Config
13819/tcp dsmcc-session DSMCC Session Messages
13819/udp dsmcc-session DSMCC Session Messages
13820/tcp dsmcc-passthru DSMCC Pass-Thru Messages
13820/udp dsmcc-passthru DSMCC Pass-Thru Messages
13821/tcp dsmcc-download DSMCC Download Protocol
13821/udp dsmcc-download DSMCC Download Protocol
13822/tcp dsmcc-ccp DSMCC Channel Change Protocol
13822/udp dsmcc-ccp DSMCC Channel Change Protocol
14001/tcp itu-sccp-ss7 ITU SCCP (SS7)
14001/udp itu-sccp-ss7 ITU SCCP (SS7)
17007/tcp isode-dua
17007/udp isode-dua
17219/tcp chipper Chipper
17219/udp chipper Chipper
18000/tcp biimenu Beckman Instruments, Inc.
18000/udp biimenu Beckman Instruments, Inc.
19410/tcp hp-sco hp-sco
19410/udp hp-sco hp-sco
19411/tcp hp-sca hp-sca
19411/udp hp-sca hp-sca
19541/tcp jcp JCP Client
19541/udp jcp JCP Client
21845/tcp webphone webphone
21845/udp webphone webphone
21846/tcp netspeak-is NetSpeak Corp. Directory Services
21846/udp netspeak-is NetSpeak Corp. Directory Services
21847/tcp netspeak-cs NetSpeak Corp. Connection Services
21847/udp netspeak-cs NetSpeak Corp. Connection Services
21848/tcp netspeak-acd NetSpeak Corp. Automatic Call Distribution
21848/udp netspeak-acd NetSpeak Corp. Automatic Call Distribution
21849/tcp netspeak-cps NetSpeak Corp. Credit Processing System
21849/udp netspeak-cps NetSpeak Corp. Credit Processing System
22273/tcp wnn6 wnn6
22273/udp wnn6 wnn6
22555/tcp vocaltec-wconf Vocaltec Web Conference
22555/udp vocaltec-phone Vocaltec Internet Phone
22800/tcp aws-brf Telerate Information Platform LAN
22800/udp aws-brf Telerate Information Platform LAN
22951/tcp brf-gw Telerate Information Platform WAN
22951/udp brf-gw Telerate Information Platform WAN
24000/tcp med-ltp med-ltp
24000/udp med-ltp med-ltp
24001/tcp med-fsp-rx med-fsp-rx
24001/udp med-fsp-rx med-fsp-rx
24002/tcp med-fsp-tx med-fsp-tx
24002/udp med-fsp-tx med-fsp-tx
24003/tcp med-supp med-supp
24003/udp med-supp med-supp
24004/tcp med-ovw med-ovw
24004/udp med-ovw med-ovw
24005/tcp med-ci med-ci
24005/udp med-ci med-ci
24006/tcp med-net-svc med-net-svc
24006/udp med-net-svc med-net-svc
25000/tcp icl-twobase1 icl-twobase1
25000/udp icl-twobase1 icl-twobase1
25001/tcp icl-twobase2 icl-twobase2
25001/udp icl-twobase2 icl-twobase2
25002/tcp icl-twobase3 icl-twobase3
25002/udp icl-twobase3 icl-twobase3
25003/tcp icl-twobase4 icl-twobase4
25003/udp icl-twobase4 icl-twobase4
25004/tcp icl-twobase5 icl-twobase5
25004/udp icl-twobase5 icl-twobase5
25005/tcp icl-twobase6 icl-twobase6
25005/udp icl-twobase6 icl-twobase6
25006/tcp icl-twobase7 icl-twobase7
25006/udp icl-twobase7 icl-twobase7
25007/tcp icl-twobase8 icl-twobase8
25007/udp icl-twobase8 icl-twobase8
25008/tcp icl-twobase9 icl-twobase9
25008/udp icl-twobase9 icl-twobase9
25009/tcp icl-twobase10 icl-twobase10
25009/udp icl-twobase10 icl-twobase10
25793/tcp vocaltec-hos Vocaltec Address Server
25793/udp vocaltec-hos Vocaltec Address Server
26000/tcp quake quake
26000/udp quake quake
26208/tcp wnn6-ds wnn6-ds
26208/udp wnn6-ds wnn6-ds
27000/tcp flex-lm FLEX LM (1)
27000/udp flex-lm FLEX LM (1)
27001/tcp flex-lm FLEX LM (2)
27001/udp flex-lm FLEX LM (2)
27002/tcp flex-lm FLEX LM (3)
27002/udp flex-lm FLEX LM (3)
27003/tcp flex-lm FLEX LM (4)
27003/udp flex-lm FLEX LM (4)
27004/tcp flex-lm FLEX LM (5)
27004/udp flex-lm FLEX LM (5)
27005/tcp flex-lm FLEX LM (6)
27005/udp flex-lm FLEX LM (6)
27006/tcp flex-lm FLEX LM (7)
27006/udp flex-lm FLEX LM (7)
27007/tcp flex-lm FLEX LM (8)
27007/udp flex-lm FLEX LM (8)
27008/tcp flex-lm FLEX LM (9)
27008/udp flex-lm FLEX LM (9)
27009/tcp flex-lm FLEX LM (10)
27009/udp flex-lm FLEX LM (10)
27999/tcp tw-auth-key TW Authentication/Key Distribution and
27999/udp tw-auth-key Attribute Certificate Services
33434/tcp traceroute traceroute use
33434/udp traceroute traceroute use
44818/tcp rockwell-encap Rockwell Encapsulation
44818/udp rockwell-encap Rockwell Encapsulation
45678/tcp eba EBA PRISE
45678/udp eba EBA PRISE
47557/tcp dbbrowse Databeam Corporation
47557/udp dbbrowse Databeam Corporation
47624/tcp directplaysrvr Direct Play Server
47624/udp directplaysrvr Direct Play Server
47806/tcp ap ALC Protocol
47806/udp ap ALC Protocol
47808/tcp bacnet Building Automation and Control Networks
47808/udp bacnet Building Automation and Control Networks

A list with known port numbers 500 - 1499

Port No. Port Name Description
-----------------------------------------------------------------------
500/tcp isakmp isakmp
500/udp isakmp isakmp
501/tcp stmf STMF
501/udp stmf STMF
502/tcp asa-appl-proto asa-appl-proto
502/udp asa-appl-proto asa-appl-proto
503/tcp intrinsa Intrinsa
503/udp intrinsa Intrinsa
504/tcp citadel citadel
504/udp citadel citadel
505/tcp mailbox-lm mailbox-lm
505/udp mailbox-lm mailbox-lm
506/tcp ohimsrv ohimsrv
506/udp ohimsrv ohimsrv
507/tcp crs crs
507/udp crs crs
508/tcp xvttp xvttp
508/udp xvttp xvttp
509/tcp snare snare
509/udp snare snare
510/tcp fcp FirstClass Protocol
510/udp fcp FirstClass Protocol
511/tcp passgo PassGo
511/udp passgo PassGo
512/tcp exec remote process execution
512/udp comsat
512/udp biff used by mail system to notify users
513/tcp login remote login a la telnet
513/udp who maintains data bases showing who's
514/tcp shell cmd
514/udp syslog
515/tcp printer spooler
515/udp printer spooler
516/tcp videotex videotex
516/udp videotex videotex
517/tcp talk like tenex link, but across
517/udp talk like tenex link, but across
518/tcp ntalk
518/udp ntalk
519/tcp utime unixtime
519/udp utime unixtime
520/tcp efs extended file name server
520/udp router local routing process (on site)
521/tcp ripng ripng
521/udp ripng ripng
522/tcp ulp ULP
522/udp ulp ULP
523/tcp ibm-db2 IBM-DB2
523/udp ibm-db2 IBM-DB2
524/tcp ncp NCP
524/udp ncp NCP
525/tcp timed timeserver
525/udp timed timeserver
526/tcp tempo newdate
526/udp tempo newdate
527/tcp stx Stock IXChange
527/udp stx Stock IXChange
528/tcp custix Customer IXChange
528/udp custix Customer IXChange
529/tcp irc-serv IRC-SERV
529/udp irc-serv IRC-SERV
530/tcp courier rpc
530/udp courier rpc
531/tcp conference chat
531/udp conference chat
532/tcp netnews readnews
532/udp netnews readnews
533/tcp netwall for emergency broadcasts
533/udp netwall for emergency broadcasts
534/tcp mm-admin MegaMedia Admin
534/udp mm-admin MegaMedia Admin
535/tcp iiop iiop
535/udp iiop iiop
536/tcp opalis-rdv opalis-rdv
536/udp opalis-rdv opalis-rdv
537/tcp nmsp Networked Media Streaming Protocol
537/udp nmsp Networked Media Streaming Protocol
538/tcp gdomap gdomap
538/udp gdomap gdomap
539/tcp apertus-ldp Apertus Technologies Load Determination
539/udp apertus-ldp Apertus Technologies Load Determination
540/tcp uucp uucpd
540/udp uucp uucpd
541/tcp uucp-rlogin uucp-rlogin
541/udp uucp-rlogin uucp-rlogin
542/tcp commerce commerce
542/udp commerce commerce
543/tcp klogin
543/udp klogin
544/tcp kshell krcmd
544/udp kshell krcmd
545/tcp appleqtcsrvr appleqtcsrvr
545/udp appleqtcsrvr appleqtcsrvr
546/tcp dhcpv6-client DHCPv6 Client
546/udp dhcpv6-client DHCPv6 Client
547/tcp dhcpv6-server DHCPv6 Server
547/udp dhcpv6-server DHCPv6 Server
548/tcp afpovertcp AFP over TCP
548/udp afpovertcp AFP over TCP
549/tcp idfp IDFP
549/udp idfp IDFP
550/tcp new-rwho new-who
550/udp new-rwho new-who
551/tcp cybercash cybercash
551/udp cybercash cybercash
552/tcp deviceshare deviceshare
552/udp deviceshare deviceshare
553/tcp pirp pirp
553/udp pirp pirp
554/tcp rtsp Real Time Stream Control Protocol
554/udp rtsp Real Time Stream Control Protocol
555/tcp dsf
555/udp dsf
556/tcp remotefs rfs server
556/udp remotefs rfs server
557/tcp openvms-sysipc openvms-sysipc
557/udp openvms-sysipc openvms-sysipc
558/tcp sdnskmp SDNSKMP
558/udp sdnskmp SDNSKMP
559/tcp teedtap TEEDTAP
559/udp teedtap TEEDTAP
560/tcp rmonitor rmonitord
560/udp rmonitor rmonitord
561/tcp monitor
561/udp monitor
562/tcp chshell chcmd
562/udp chshell chcmd
563/tcp nntps nntp protocol over TLS/SSL (was snntp)
563/udp nntps nntp protocol over TLS/SSL (was snntp)
564/tcp 9pfs plan 9 file service
564/udp 9pfs plan 9 file service
565/tcp whoami whoami
565/udp whoami whoami
566/tcp streettalk streettalk
566/udp streettalk streettalk
567/tcp banyan-rpc banyan-rpc
567/udp banyan-rpc banyan-rpc
568/tcp ms-shuttle microsoft shuttle
568/udp ms-shuttle microsoft shuttle
569/tcp ms-rome microsoft rome
569/udp ms-rome microsoft rome
570/tcp meter demon
570/udp meter demon
571/tcp meter udemon
571/udp meter udemon
572/tcp sonar sonar
572/udp sonar sonar
573/tcp banyan-vip banyan-vip
573/udp banyan-vip banyan-vip
574/tcp ftp-agent FTP Software Agent System
574/udp ftp-agent FTP Software Agent System
575/tcp vemmi VEMMI
575/udp vemmi VEMMI
576/tcp ipcd ipcd
576/udp ipcd ipcd
577/tcp vnas vnas
577/udp vnas vnas
578/tcp ipdd ipdd
578/udp ipdd ipdd
579/tcp decbsrv decbsrv
579/udp decbsrv decbsrv
580/tcp sntp-heartbeat SNTP HEARTBEAT
580/udp sntp-heartbeat SNTP HEARTBEAT
581/tcp bdp Bundle Discovery Protocol
581/udp bdp Bundle Discovery Protocol
582/tcp scc-security SCC Security
582/udp scc-security SCC Security
583/tcp philips-vc Philips Video-Conferencing
583/udp philips-vc Philips Video-Conferencing
584/tcp keyserver Key Server
584/udp keyserver Key Server
585/tcp imap4-ssl IMAP4+SSL (use 993 instead)
585/udp imap4-ssl IMAP4+SSL (use 993 instead)
586/tcp password-chg Password Change
586/udp password-chg Password Change
587/tcp submission Submission
587/udp submission Submission
588/tcp cal CAL
588/udp cal CAL
589/tcp eyelink EyeLink
589/udp eyelink EyeLink
590/tcp tns-cml TNS CML
590/udp tns-cml TNS CML
591/tcp http-alt FileMaker, Inc. - HTTP Alternate (see Port 80)
591/udp http-alt FileMaker, Inc. - HTTP Alternate (see Port 80)
592/tcp eudora-set Eudora Set
592/udp eudora-set Eudora Set
593/tcp http-rpc-epmap HTTP RPC Ep Map
593/udp http-rpc-epmap HTTP RPC Ep Map
594/tcp tpip TPIP
594/udp tpip TPIP
595/tcp cab-protocol CAB Protocol
595/udp cab-protocol CAB Protocol
596/tcp smsd SMSD
596/udp smsd SMSD
597/tcp ptcnameservice PTC Name Service
597/udp ptcnameservice PTC Name Service
598/tcp sco-websrvrmg3 SCO Web Server Manager 3
598/udp sco-websrvrmg3 SCO Web Server Manager 3
599/tcp acp Aeolon Core Protocol
599/udp acp Aeolon Core Protocol
600/tcp ipcserver Sun IPC server
600/udp ipcserver Sun IPC server
606/tcp urm Cray Unified Resource Manager
606/udp urm Cray Unified Resource Manager
607/tcp nqs nqs
607/udp nqs nqs
608/tcp sift-uft Sender-Initiated/Unsolicited File Transfer
608/udp sift-uft Sender-Initiated/Unsolicited File Transfer
609/tcp npmp-trap npmp-trap
609/udp npmp-trap npmp-trap
610/tcp npmp-local npmp-local
610/udp npmp-local npmp-local
611/tcp npmp-gui npmp-gui
611/udp npmp-gui npmp-gui
612/tcp hmmp-ind HMMP Indication
612/udp hmmp-ind HMMP Indication
613/tcp hmmp-op HMMP Operation
613/udp hmmp-op HMMP Operation
614/tcp sshell SSLshell
614/udp sshell SSLshell
615/tcp sco-inetmgr Internet Configuration Manager
615/udp sco-inetmgr Internet Configuration Manager
616/tcp sco-sysmgr SCO System Administration Server
616/udp sco-sysmgr SCO System Administration Server
617/tcp sco-dtmgr SCO Desktop Administration Server
617/udp sco-dtmgr SCO Desktop Administration Server
618/tcp dei-icda DEI-ICDA
618/udp dei-icda DEI-ICDA
619/tcp digital-evm Digital EVM
619/udp digital-evm Digital EVM
620/tcp sco-websrvrmgr SCO WebServer Manager
620/udp sco-websrvrmgr SCO WebServer Manager
621/tcp escp-ip ESCP
621/udp escp-ip ESCP
622/tcp collaborator Collaborator
622/udp collaborator Collaborator
623/tcp aux_bus_shunt Aux Bus Shunt
623/udp aux_bus_shunt Aux Bus Shunt
624/tcp cryptoadmin Crypto Admin
624/udp cryptoadmin Crypto Admin
625/tcp dec_dlm DEC DLM
625/udp dec_dlm DEC DLM
626/tcp asia ASIA
626/udp asia ASIA
627/tcp passgo-tivoli PassGo Tivoli
627/udp passgo-tivoli PassGo Tivoli
628/tcp qmqp QMQP
628/udp qmqp QMQP
629/tcp 3com-amp3 3Com AMP3
629/udp 3com-amp3 3Com AMP3
630/tcp rda RDA
630/udp rda RDA
631/tcp ipp IPP (Internet Printing Protocol)
631/udp ipp IPP (Internet Printing Protocol)
632/tcp bmpp bmpp
632/udp bmpp bmpp
633/tcp servstat Service Status update (Sterling Software)
633/udp servstat Service Status update (Sterling Software)
634/tcp ginad ginad
634/udp ginad ginad
635/tcp rlzdbase RLZ DBase
635/udp rlzdbase RLZ DBase
636/tcp ldaps ldap protocol over TLS/SSL (was sldap)
636/udp ldaps ldap protocol over TLS/SSL (was sldap)
637/tcp lanserver lanserver
637/udp lanserver lanserver
638/tcp mcns-sec mcns-sec
638/udp mcns-sec mcns-sec
639/tcp msdp MSDP
639/udp msdp MSDP
640/tcp entrust-sps entrust-sps
640/tcp entrust-sps entrust-sps
666/tcp mdqs
666/udp mdqs
666/tcp doom doom Id Software
666/udp doom doom Id Software
667/tcp disclose campaign contribution disclosures - SDR Technologies
667/udp disclose campaign contribution disclosures - SDR Technologies
668/tcp mecomm MeComm
668/udp mecomm MeComm
669/tcp meregister MeRegister
669/udp meregister MeRegister
670/tcp vacdsm-sws VACDSM-SWS
670/udp vacdsm-sws VACDSM-SWS
671/tcp vacdsm-app VACDSM-APP
671/udp vacdsm-app VACDSM-APP
672/tcp vpps-qua VPPS-QUA
672/udp vpps-qua VPPS-QUA
673/tcp cimplex CIMPLEX
673/udp cimplex CIMPLEX
674/tcp acap ACAP
674/udp acap ACAP
675/tcp dctp DCTP
675/udp dctp DCTP
676/tcp vpps-via VPPS Via
676/udp vpps-via VPPS Via
704/tcp elcsd errlog copy/server daemon
704/udp elcsd errlog copy/server daemon
705/tcp agentx AgentX
705/udp agentx AgentX
707/tcp borland-dsj Borland DSJ
707/udp borland-dsj Borland DSJ
709/tcp entrust-kmsh Entrust Key Management Service Handler
709/udp entrust-kmsh Entrust Key Management Service Handler
710/tcp entrust-ash Entrust Administration Service Handler
710/udp entrust-ash Entrust Administration Service Handler
711/tcp cisco-tdp Cisco TDP
711/udp cisco-tdp Cisco TDP
729/tcp netviewdm1 IBM NetView DM/6000 Server/Client
729/udp netviewdm1 IBM NetView DM/6000 Server/Client
730/tcp netviewdm2 IBM NetView DM/6000 send/tcp
730/udp netviewdm2 IBM NetView DM/6000 send/tcp
731/tcp netviewdm3 IBM NetView DM/6000 receive/tcp
731/udp netviewdm3 IBM NetView DM/6000 receive/tcp
741/tcp netgw netGW
741/udp netgw netGW
742/tcp netrcs Network based Rev. Cont. Sys.
742/udp netrcs Network based Rev. Cont. Sys.
744/tcp flexlm Flexible License Manager
744/udp flexlm Flexible License Manager
747/tcp fujitsu-dev Fujitsu Device Control
747/udp fujitsu-dev Fujitsu Device Control
748/tcp ris-cm Russell Info Sci Calendar Manager
748/udp ris-cm Russell Info Sci Calendar Manager
749/tcp kerberos-adm kerberos administration
749/udp kerberos-adm kerberos administration
750/tcp rfile
750/udp loadav
750/udp kerberos-iv kerberos version iv
751/tcp pump
751/udp pump
752/tcp qrh
752/udp qrh
753/tcp rrh
753/udp rrh
754/tcp tell send
754/udp tell send
758/tcp nlogin
758/udp nlogin
759/tcp con
759/udp con
760/tcp ns
760/udp ns
761/tcp rxe
761/udp rxe
762/tcp quotad
762/udp quotad
763/tcp cycleserv
763/udp cycleserv
764/tcp omserv
764/udp omserv
765/tcp webster
765/udp webster
767/tcp phonebook phone
767/udp phonebook phone
769/tcp vid
769/udp vid
770/tcp cadlock
770/udp cadlock
771/tcp rtip
771/udp rtip
772/tcp cycleserv2
772/udp cycleserv2
773/tcp submit
773/udp notify
774/tcp rpasswd
774/udp acmaint_dbd
775/tcp entomb
775/udp acmaint_transd
776/tcp wpages
776/udp wpages
780/tcp wpgs
780/udp wpgs
786/tcp concert Concert
786/udp concert Concert
787/tcp qsc QSC
787/udp qsc QSC
800/tcp mdbs_daemon
800/udp mdbs_daemon
801/tcp device
801/udp device
828/tcp itm-mcell-s itm-mcell-s
828/udp itm-mcell-s itm-mcell-s
829/tcp pkix-3-ca-ra PKIX-3 CA/RA
829/udp pkix-3-ca-ra PKIX-3 CA/RA
873/tcp rsync rsync
873/udp rsync rsync
886/tcp iclcnet-locate ICL coNETion locate server
886/udp iclcnet-locate ICL coNETion locate server
887/tcp iclcnet_svinfo ICL coNETion server info
887/udp iclcnet_svinfo ICL coNETion server info
888/tcp accessbuilder AccessBuilder
888/udp accessbuilder AccessBuilder
888/tcp cddbp CD Database Protocol
900/tcp omginitialrefs OMG Initial Refs
900/udp omginitialrefs OMG Initial Refs
911/tcp xact-backup xact-backup
911/udp xact-backup xact-backup
989/tcp ftps-data ftp protocol, data, over TLS/SSL
989/udp ftps-data ftp protocol, data, over TLS/SSL
990/tcp ftps ftp protocol, control, over TLS/SSL
990/udp ftps ftp protocol, control, over TLS/SSL
991/tcp nas Netnews Administration System
991/udp nas Netnews Administration System
992/tcp telnets telnet protocol over TLS/SSL
992/udp telnets telnet protocol over TLS/SSL
993/tcp imaps imap4 protocol over TLS/SSL
993/udp imaps imap4 protocol over TLS/SSL
994/tcp ircs irc protocol over TLS/SSL
994/udp ircs irc protocol over TLS/SSL
995/tcp pop3s pop3 protocol over TLS/SSL (was spop3)
995/udp pop3s pop3 protocol over TLS/SSL (was spop3)
996/tcp vsinet vsinet
996/udp vsinet vsinet
997/tcp maitrd
997/udp maitrd
998/tcp busboy
998/udp puparp
999/tcp garcon
999/udp applix Applix ac
999/tcp puprouter
999/udp puprouter
1000/tcp cadlock
1000/udp ock
1010/tcp surf surf
1010/udp surf surf
1023/tcp Reserved
1023/udp Reserved
1024/tcp Reserved
1024/udp Reserved
1025/tcp blackjack network blackjack
1025/udp blackjack network blackjack
1030/tcp iad1 BBN IAD
1030/udp iad1 BBN IAD
1031/tcp iad2 BBN IAD
1031/udp iad2 BBN IAD
1032/tcp iad3 BBN IAD
1032/udp iad3 BBN IAD
1047/tcp neod1 Sun's NEO Object Request Broker
1047/udp neod1 Sun's NEO Object Request Broker
1048/tcp neod2 Sun's NEO Object Request Broker
1048/udp neod2 Sun's NEO Object Request Broker
1058/tcp nim nim
1058/udp nim nim
1059/tcp nimreg nimreg
1059/udp nimreg nimreg
1067/tcp instl_boots Installation Bootstrap Proto. Serv.
1067/udp instl_boots Installation Bootstrap Proto. Serv.
1068/tcp instl_bootc Installation Bootstrap Proto. Cli.
1068/udp instl_bootc Installation Bootstrap Proto. Cli.
1080/tcp socks Socks
1080/udp socks Socks
1083/tcp ansoft-lm-1 Anasoft License Manager
1083/udp ansoft-lm-1 Anasoft License Manager
1084/tcp ansoft-lm-2 Anasoft License Manager
1084/udp ansoft-lm-2 Anasoft License Manager
1110/tcp nfsd-status Cluster status info
1110/udp nfsd-keepalive Client status info
1111/tcp lmsocialserver LM Social Server
1111/udp lmsocialserver LM Social Server
1123/tcp murray Murray
1123/udp murray Murray
1155/tcp nfa Network File Access
1155/udp nfa Network File Access
1161/tcp health-polling Health Polling
1161/udp health-polling Health Polling
1162/tcp health-trap Health Trap
1162/udp health-trap Health Trap
1180/tcp mc-client Millicent Client Proxy
1180/udp mc-client Millicent Client Proxy
1212/tcp lupa lupa
1212/udp lupa lupa
1222/tcp nerv SNI R&D network
1222/udp nerv SNI R&D network
1234/tcp search-agent Infoseek Search Agent
1234/udp search-agent Infoseek Search Agent
1239/tcp nmsd NMSD
1239/udp nmsd NMSD
1248/tcp hermes
1248/udp hermes
1300/tcp h323hostcallsc H323 Host Call Secure
1300/udp h323hostcallsc H323 Host Call Secure
1313/tcp bmc_patroldb BMC_PATROLDB
1313/udp bmc-patroldb BMC_PATROLDB
1314/tcp pdps Photoscript Distributed Printing System
1314/udp pdps Photoscript Distributed Printing System
1321/tcp pip PIP
1321/udp pip PIP
1345/tcp vpjp VPJP
1345/udp vpjp VPJP
1346/tcp alta-ana-lm Alta Analytics License Manager
1346/udp alta-ana-lm Alta Analytics License Manager
1347/tcp bbn-mmc multi media conferencing
1347/udp bbn-mmc multi media conferencing
1348/tcp bbn-mmx multi media conferencing
1348/udp bbn-mmx multi media conferencing
1349/tcp sbook Registration Network Protocol
1349/udp sbook Registration Network Protocol
1350/tcp editbench Registration Network Protocol
1350/udp editbench Registration Network Protocol
1351/tcp equationbuilder Digital Tool Works (MIT)
1351/udp equationbuilder Digital Tool Works (MIT)
1352/tcp lotusnote Lotus Note
1352/udp lotusnote Lotus Note
1353/tcp relief Relief Consulting
1353/udp relief Relief Consulting
1354/tcp rightbrain RightBrain Software
1354/udp rightbrain RightBrain Software
1355/tcp intuitive-edge Intuitive Edge
1355/udp intuitive-edge Intuitive Edge
1356/tcp cuillamartin CuillaMartin Company
1356/udp cuillamartin CuillaMartin Company
1357/tcp pegboard Electronic PegBoard
1357/udp pegboard Electronic PegBoard
1358/tcp connlcli CONNLCLI
1358/udp connlcli CONNLCLI
1359/tcp ftsrv FTSRV
1359/udp ftsrv FTSRV
1360/tcp mimer MIMER
1360/udp mimer MIMER
1361/tcp linx LinX
1361/udp linx LinX
1362/tcp timeflies TimeFlies
1362/udp timeflies TimeFlies
1363/tcp ndm-requester Network DataMover Requester
1363/udp ndm-requester Network DataMover Requester
1364/tcp ndm-server Network DataMover Server
1364/udp ndm-server Network DataMover Server
1365/tcp adapt-sna Network Software Associates
1365/udp adapt-sna Network Software Associates
1366/tcp netware-csp Novell NetWare Comm Service Platform
1366/udp netware-csp Novell NetWare Comm Service Platform
1367/tcp dcs DCS
1367/udp dcs DCS
1368/tcp screencast ScreenCast
1368/udp screencast ScreenCast
1369/tcp gv-us GlobalView to Unix Shell
1369/udp gv-us GlobalView to Unix Shell
1370/tcp us-gv Unix Shell to GlobalView
1370/udp us-gv Unix Shell to GlobalView
1371/tcp fc-cli Fujitsu Config Protocol
1371/udp fc-cli Fujitsu Config Protocol
1372/tcp fc-ser Fujitsu Config Protocol
1372/udp fc-ser Fujitsu Config Protocol
1373/tcp chromagrafx Chromagrafx
1373/udp chromagrafx Chromagrafx
1374/tcp molly EPI Software Systems
1374/udp molly EPI Software Systems
1375/tcp bytex Bytex
1375/udp bytex Bytex
1376/tcp ibm-pps IBM Person to Person Software
1376/udp ibm-pps IBM Person to Person Software
1377/tcp cichlid Cichlid License Manager
1377/udp cichlid Cichlid License Manager
1378/tcp elan Elan License Manager
1378/udp elan Elan License Manager
1379/tcp dbreporter Integrity Solutions
1379/udp dbreporter Integrity Solutions
1380/tcp telesis-licman Telesis Network License Manager
1380/udp telesis-licman Telesis Network License Manager
1381/tcp apple-licman Apple Network License Manager
1381/udp apple-licman Apple Network License Manager
1382/tcp udt_os
1382/udp udt_os
1383/tcp gwha GW Hannaway Network License Manager
1383/udp gwha GW Hannaway Network License Manager
1384/tcp os-licman Objective Solutions License Manager
1384/udp os-licman Objective Solutions License Manager
1385/tcp atex_elmd Atex Publishing License Manager
1385/udp atex_elmd Atex Publishing License Manager
1386/tcp checksum CheckSum License Manager
1386/udp checksum CheckSum License Manager
1387/tcp cadsi-lm Computer Aided Design Software Inc LM
1387/udp cadsi-lm Computer Aided Design Software Inc LM
1388/tcp objective-dbc Objective Solutions DataBase Cache
1388/udp objective-dbc Objective Solutions DataBase Cache
1389/tcp iclpv-dm Document Manager
1389/udp iclpv-dm Document Manager
1390/tcp iclpv-sc Storage Controller
1390/udp iclpv-sc Storage Controller
1391/tcp iclpv-sas Storage Access Server
1391/udp iclpv-sas Storage Access Server
1392/tcp iclpv-pm Print Manager
1392/udp iclpv-pm Print Manager
1393/tcp iclpv-nls Network Log Server
1393/udp iclpv-nls Network Log Server
1394/tcp iclpv-nlc Network Log Client
1394/udp iclpv-nlc Network Log Client
1395/tcp iclpv-wsm PC Workstation Manager software
1395/udp iclpv-wsm PC Workstation Manager software
1396/tcp dvl-activemail DVL Active Mail
1396/udp dvl-activemail DVL Active Mail
1397/tcp audio-activmail Audio Active Mail
1397/udp audio-activmail Audio Active Mail
1398/tcp video-activmail Video Active Mail
1398/udp video-activmail Video Active Mail
1399/tcp cadkey-licman Cadkey License Manager
1399/udp cadkey-licman Cadkey License Manager
1400/tcp cadkey-tablet Cadkey Tablet Daemon
1400/udp cadkey-tablet Cadkey Tablet Daemon
1401/tcp goldleaf-licman Goldleaf License Manager
1401/udp goldleaf-licman Goldleaf License Manager
1402/tcp prm-sm-np Prospero Resource Manager
1402/udp prm-sm-np Prospero Resource Manager
1403/tcp prm-nm-np Prospero Resource Manager
1403/udp prm-nm-np Prospero Resource Manager
1404/tcp igi-lm Infinite Graphics License Manager
1404/udp igi-lm Infinite Graphics License Manager
1405/tcp ibm-res IBM Remote Execution Starter
1405/udp ibm-res IBM Remote Execution Starter
1406/tcp netlabs-lm NetLabs License Manager
1406/udp netlabs-lm NetLabs License Manager
1407/tcp dbsa-lm DBSA License Manager
1407/udp dbsa-lm DBSA License Manager
1408/tcp sophia-lm Sophia License Manager
1408/udp sophia-lm Sophia License Manager
1409/tcp here-lm Here License Manager
1409/udp here-lm Here License Manager
1410/tcp hiq HiQ License Manager
1410/udp hiq HiQ License Manager
1411/tcp af AudioFile
1411/udp af AudioFile
1412/tcp innosys InnoSys
1412/udp innosys InnoSys
1413/tcp innosys-acl Innosys-ACL
1413/udp innosys-acl Innosys-ACL
1414/tcp ibm-mqseries IBM MQSeries
1414/udp ibm-mqseries IBM MQSeries
1415/tcp dbstar DBStar
1415/udp dbstar DBStar
1416/tcp novell-lu6.2 Novell LU6.2
1416/udp novell-lu6.2 Novell LU6.2
1417/tcp timbuktu-srv1 Timbuktu Service 1 Port
1417/udp timbuktu-srv1 Timbuktu Service 1 Port
1418/tcp timbuktu-srv2 Timbuktu Service 2 Port
1418/udp timbuktu-srv2 Timbuktu Service 2 Port
1419/tcp timbuktu-srv3 Timbuktu Service 3 Port
1419/udp timbuktu-srv3 Timbuktu Service 3 Port
1420/tcp timbuktu-srv4 Timbuktu Service 4 Port
1420/udp timbuktu-srv4 Timbuktu Service 4 Port
1421/tcp gandalf-lm Gandalf License Manager
1421/udp gandalf-lm Gandalf License Manager
1422/tcp autodesk-lm Autodesk License Manager
1422/udp autodesk-lm Autodesk License Manager
1423/tcp essbase Essbase Arbor Software
1423/udp essbase Essbase Arbor Software
1424/tcp hybrid Hybrid Encryption Protocol
1424/udp hybrid Hybrid Encryption Protocol
1425/tcp zion-lm Zion Software License Manager
1425/udp zion-lm Zion Software License Manager
1426/tcp sais Satellite-data Acquisition System 1
1426/udp sais Satellite-data Acquisition System 1
1427/tcp mloadd mloadd monitoring tool
1427/udp mloadd mloadd monitoring tool
1428/tcp informatik-lm Informatik License Manager
1428/udp informatik-lm Informatik License Manager
1429/tcp nms Hypercom NMS
1429/udp nms Hypercom NMS
1430/tcp tpdu Hypercom TPDU
1430/udp tpdu Hypercom TPDU
1431/tcp rgtp Reverse Gossip Transport
1431/udp rgtp Reverse Gossip Transport
1432/tcp blueberry-lm Blueberry Software License Manager
1432/udp blueberry-lm Blueberry Software License Manager
1433/tcp ms-sql-s Microsoft-SQL-Server
1433/udp ms-sql-s Microsoft-SQL-Server
1434/tcp ms-sql-m Microsoft-SQL-Monitor
1434/udp ms-sql-m Microsoft-SQL-Monitor
1435/tcp ibm-cics IBM CICS
1435/udp ibm-cics IBM CICS
1436/tcp saism Satellite-data Acquisition System 2
1436/udp saism Satellite-data Acquisition System 2
1437/tcp tabula Tabula
1437/udp tabula Tabula
1438/tcp eicon-server Eicon Security Agent/Server
1438/udp eicon-server Eicon Security Agent/Server
1439/tcp eicon-x25 Eicon X25/SNA Gateway
1439/udp eicon-x25 Eicon X25/SNA Gateway
1440/tcp eicon-slp Eicon Service Location Protocol
1440/udp eicon-slp Eicon Service Location Protocol
1441/tcp cadis-1 Cadis License Management
1441/udp cadis-1 Cadis License Management
1442/tcp cadis-2 Cadis License Management
1442/udp cadis-2 Cadis License Management
1443/tcp ies-lm Integrated Engineering Software
1443/udp ies-lm Integrated Engineering Software
1444/tcp marcam-lm Marcam License Management
1444/udp marcam-lm Marcam License Management
1445/tcp proxima-lm Proxima License Manager
1445/udp proxima-lm Proxima License Manager
1446/tcp ora-lm Optical Research Associates License Manager
1446/udp ora-lm Optical Research Associates License Manager
1447/tcp apri-lm Applied Parallel Research LM
1447/udp apri-lm Applied Parallel Research LM
1448/tcp oc-lm OpenConnect License Manager
1448/udp oc-lm OpenConnect License Manager
1449/tcp peport PEport
1449/udp peport PEport
1450/tcp dwf Tandem Distributed Workbench Facility
1450/udp dwf Tandem Distributed Workbench Facility
1451/tcp infoman IBM Information Management
1451/udp infoman IBM Information Management
1452/tcp gtegsc-lm GTE Government Systems License Man
1452/udp gtegsc-lm GTE Government Systems License Man
1453/tcp genie-lm Genie License Manager
1453/udp genie-lm Genie License Manager
1454/tcp interhdl_elmd interHDL License Manager
1454/udp interhdl_elmd interHDL License Manager
1455/tcp esl-lm ESL License Manager
1455/udp esl-lm ESL License Manager
1456/tcp dca DCA
1456/udp dca DCA
1457/tcp valisys-lm Valisys License Manager
1457/udp valisys-lm Valisys License Manager
1458/tcp nrcabq-lm Nichols Research Corp.
1458/udp nrcabq-lm Nichols Research Corp.
1459/tcp proshare1 Proshare Notebook Application
1459/udp proshare1 Proshare Notebook Application
1460/tcp proshare2 Proshare Notebook Application
1460/udp proshare2 Proshare Notebook Application
1461/tcp ibm_wrless_lan IBM Wireless LAN
1461/udp ibm_wrless_lan IBM Wireless LAN
1462/tcp world-lm World License Manager
1462/udp world-lm World License Manager
1463/tcp nucleus Nucleus
1463/udp nucleus Nucleus
1464/tcp msl_lmd MSL License Manager
1464/udp msl_lmd MSL License Manager
1465/tcp pipes Pipes Platform
1465/udp pipes Pipes Platform mfarlin@peerlogic.com
1466/tcp oceansoft-lm Ocean Software License Manager
1466/udp oceansoft-lm Ocean Software License Manager
1467/tcp csdmbase CSDMBASE
1467/udp csdmbase CSDMBASE
1468/tcp csdm CSDM
1468/udp csdm CSDM
1469/tcp aal-lm Active Analysis Limited License Manager
1469/udp aal-lm Active Analysis Limited License Manager
1470/tcp uaiact Universal Analytics
1470/udp uaiact Universal Analytics
1471/tcp csdmbase csdmbase
1471/udp csdmbase csdmbase
1472/tcp csdm csdm
1472/udp csdm csdm
1473/tcp openmath OpenMath
1473/udp openmath OpenMath
1474/tcp telefinder Telefinder
1474/udp telefinder Telefinder
1475/tcp taligent-lm Taligent License Manager
1475/udp taligent-lm Taligent License Manager
1476/tcp clvm-cfg clvm-cfg
1476/udp clvm-cfg clvm-cfg
1477/tcp ms-sna-server ms-sna-server
1477/udp ms-sna-server ms-sna-server
1478/tcp ms-sna-base ms-sna-base
1478/udp ms-sna-base ms-sna-base
1479/tcp dberegister dberegister
1479/udp dberegister dberegister
1480/tcp pacerforum PacerForum
1480/udp pacerforum PacerForum
1481/tcp airs AIRS
1481/udp airs AIRS
1482/tcp miteksys-lm Miteksys License Manager
1482/udp miteksys-lm Miteksys License Manager
1483/tcp afs AFS License Manager
1483/udp afs AFS License Manager
1484/tcp confluent Confluent License Manager
1484/udp confluent Confluent License Manager
1485/tcp lansource LANSource
1485/udp lansource LANSource
1486/tcp nms_topo_serv nms_topo_serv
1486/udp nms_topo_serv nms_topo_serv
1487/tcp localinfosrvr LocalInfoSrvr
1487/udp localinfosrvr LocalInfoSrvr
1488/tcp docstor DocStor
1488/udp docstor DocStor
1489/tcp dmdocbroker dmdocbroker
1489/udp dmdocbroker dmdocbroker
1490/tcp insitu-conf insitu-conf
1490/udp insitu-conf insitu-conf
1491/tcp anynetgateway anynetgateway
1491/udp anynetgateway anynetgateway
1492/tcp stone-design-1 stone-design-1
1492/udp stone-design-1 stone-design-1
1493/tcp netmap_lm netmap_lm
1493/udp netmap_lm netmap_lm
1494/tcp ica ica
1494/udp ica ica
1495/tcp cvc cvc
1495/udp cvc cvc
1496/tcp liberty-lm liberty-lm
1496/udp liberty-lm liberty-lm
1497/tcp rfx-lm rfx-lm
1497/udp rfx-lm rfx-lm
1498/tcp sybase-sqlany Sybase SQL Any
1498/udp sybase-sqlany Sybase SQL Any
1499/tcp fhc Federico Heinz Consultora
1499/udp fhc Federico Heinz Consultora

A list with known port numbers 1500 - 3999

Port No. Port Name Description
-----------------------------------------------------------------------
1500/tcp vlsi-lm VLSI License Manager
1500/udp vlsi-lm VLSI License Manager
1501/tcp saiscm Satellite-data Acquisition System 3
1501/udp saiscm Satellite-data Acquisition System 3
1502/tcp shivadiscovery Shiva
1502/udp shivadiscovery Shiva
1503/tcp imtc-mcs Databeam
1503/udp imtc-mcs Databeam
1504/tcp evb-elm EVB Software Engineering License Manager
1504/udp evb-elm EVB Software Engineering License Manager
1505/tcp funkproxy Funk Software, Inc.
1505/udp funkproxy Funk Software, Inc.
1506/tcp utcd Universal Time daemon (utcd)
1506/udp utcd Universal Time daemon (utcd)
1507/tcp symplex symplex
1507/udp symplex symplex
1508/tcp diagmond diagmond
1508/udp diagmond diagmond
1509/tcp robcad-lm Robcad, Ltd. License Manager
1509/udp robcad-lm Robcad, Ltd. License Manager
1510/tcp mvx-lm Midland Valley Exploration Ltd. Lic. Man.
1510/udp mvx-lm Midland Valley Exploration Ltd. Lic. Man.
1511/tcp 3l-l1 3l-l1
1511/udp 3l-l1 3l-l1
1512/tcp wins Microsoft's Windows Internet Name Service
1512/udp wins Microsoft's Windows Internet Name Service
1513/tcp fujitsu-dtc Fujitsu Systems Business of America, Inc
1513/udp fujitsu-dtc Fujitsu Systems Business of America, Inc
1514/tcp fujitsu-dtcns Fujitsu Systems Business of America, Inc
1514/udp fujitsu-dtcns Fujitsu Systems Business of America, Inc
1515/tcp ifor-protocol ifor-protocol
1515/udp ifor-protocol ifor-protocol
1516/tcp vpad Virtual Places Audio data
1516/udp vpad Virtual Places Audio data
1517/tcp vpac Virtual Places Audio control
1517/udp vpac Virtual Places Audio control
1518/tcp vpvd Virtual Places Video data
1518/udp vpvd Virtual Places Video data
1519/tcp vpvc Virtual Places Video control
1519/udp vpvc Virtual Places Video control
1520/tcp atm-zip-office atm zip office
1520/udp atm-zip-office atm zip office
1521/tcp ncube-lm nCube License Manager
1521/udp ncube-lm nCube License Manager
1522/tcp ricardo-lm Ricardo North America License Manager
1522/udp ricardo-lm Ricardo North America License Manager
1523/tcp cichild-lm cichild
1523/udp cichild-lm cichild
1524/tcp ingreslock ingres
1524/udp ingreslock ingres
1525/tcp orasrv oracle
1525/udp orasrv oracle
1525/tcp prospero-np Prospero Directory Service non-priv
1525/udp prospero-np Prospero Directory Service non-priv
1526/tcp pdap-np Prospero Data Access Prot non-priv
1526/udp pdap-np Prospero Data Access Prot non-priv
1527/tcp tlisrv oracle
1527/udp tlisrv oracle
1528/tcp mciautoreg micautoreg
1528/udp mciautoreg micautoreg
1529/tcp coauthor oracle
1529/udp coauthor oracle
1530/tcp rap-service rap-service
1530/udp rap-service rap-service
1531/tcp rap-listen rap-listen
1531/udp rap-listen rap-listen
1532/tcp miroconnect miroconnect
1532/udp miroconnect miroconnect
1533/tcp virtual-places Virtual Places Software
1533/udp virtual-places Virtual Places Software
1534/tcp micromuse-lm micromuse-lm
1534/udp micromuse-lm micromuse-lm
1535/tcp ampr-info ampr-info
1535/udp ampr-info ampr-info
1536/tcp ampr-inter ampr-inter
1536/udp ampr-inter ampr-inter
1537/tcp sdsc-lm isi-lm
1537/udp sdsc-lm isi-lm
1538/tcp 3ds-lm 3ds-lm
1538/udp 3ds-lm 3ds-lm
1539/tcp intellistor-lm Intellistor License Manager
1539/udp intellistor-lm Intellistor License Manager
1540/tcp rds rds
1540/udp rds rds
1541/tcp rds2 rds2
1541/udp rds2 rds2
1542/tcp gridgen-elmd gridgen-elmd
1542/udp gridgen-elmd gridgen-elmd
1543/tcp simba-cs simba-cs
1543/udp simba-cs simba-cs
1544/tcp aspeclmd aspeclmd
1544/udp aspeclmd aspeclmd
1545/tcp vistium-share vistium-share
1545/udp vistium-share vistium-share
1546/tcp abbaccuray abbaccuray
1546/udp abbaccuray abbaccuray
1547/tcp laplink laplink
1547/udp laplink laplink
1548/tcp axon-lm Axon License Manager
1548/udp axon-lm Axon License Manager
1549/tcp shivahose Shiva Hose
1549/udp shivasound Shiva Sound
1550/tcp 3m-image-lm Image Storage license manager 3M Company
1550/udp 3m-image-lm Image Storage license manager 3M Company
1551/tcp hecmtl-db HECMTL-DB
1551/udp hecmtl-db HECMTL-DB
1552/tcp pciarray pciarray
1552/udp pciarray pciarray
1553/tcp sna-cs sna-cs
1553/udp sna-cs sna-cs
1554/tcp caci-lm CACI Products Company License Manager
1554/udp caci-lm CACI Products Company License Manager
1555/tcp livelan livelan
1555/udp livelan livelan
1556/tcp ashwin AshWin CI Tecnologies
1556/udp ashwin AshWin CI Tecnologies
1557/tcp arbortext-lm ArborText License Manager
1557/udp arbortext-lm ArborText License Manager
1558/tcp xingmpeg xingmpeg
1558/udp xingmpeg xingmpeg
1559/tcp web2host web2host
1559/udp web2host web2host
1560/tcp asci-val asci-val
1560/udp asci-val asci-val
1561/tcp facilityview facilityview
1561/udp facilityview facilityview
1562/tcp pconnectmgr pconnectmgr
1562/udp pconnectmgr pconnectmgr
1563/tcp cadabra-lm Cadabra License Manager
1563/udp cadabra-lm Cadabra License Manager
1564/tcp pay-per-view Pay-Per-View
1564/udp pay-per-view Pay-Per-View
1565/tcp winddlb WinDD
1565/udp winddlb WinDD
1566/tcp corelvideo CORELVIDEO
1566/udp corelvideo CORELVIDEO
1567/tcp jlicelmd jlicelmd
1567/udp jlicelmd jlicelmd
1568/tcp tsspmap tsspmap
1568/udp tsspmap tsspmap
1569/tcp ets ets
1569/udp ets ets
1570/tcp orbixd orbixd
1570/udp orbixd orbixd
1571/tcp rdb-dbs-disp Oracle Remote Data Base
1571/udp rdb-dbs-disp Oracle Remote Data Base
1572/tcp chip-lm Chipcom License Manager
1572/udp chip-lm Chipcom License Manager
1573/tcp itscomm-ns itscomm-ns
1573/udp itscomm-ns itscomm-ns
1574/tcp mvel-lm mvel-lm
1574/udp mvel-lm mvel-lm
1575/tcp oraclenames oraclenames
1575/udp oraclenames oraclenames
1576/tcp moldflow-lm moldflow-lm
1576/udp moldflow-lm moldflow-lm
1577/tcp hypercube-lm hypercube-lm
1577/udp hypercube-lm hypercube-lm
1578/tcp jacobus-lm Jacobus License Manager
1578/udp jacobus-lm Jacobus License Manager
1579/tcp ioc-sea-lm ioc-sea-lm
1579/udp ioc-sea-lm ioc-sea-lm
1580/tcp tn-tl-r1 tn-tl-r1
1580/udp tn-tl-r2 tn-tl-r2
1581/tcp mil-2045-47001 MIL-2045-47001
1581/udp mil-2045-47001 MIL-2045-47001
1582/tcp msims MSIMS
1582/udp msims MSIMS
1583/tcp simbaexpress simbaexpress
1583/udp simbaexpress simbaexpress
1584/tcp tn-tl-fd2 tn-tl-fd2
1584/udp tn-tl-fd2 tn-tl-fd2
1585/tcp intv intv
1585/udp intv intv
1586/tcp ibm-abtact ibm-abtact
1586/udp ibm-abtact ibm-abtact
1587/tcp pra_elmd pra_elmd
1587/udp pra_elmd pra_elmd
1588/tcp triquest-lm triquest-lm
1588/udp triquest-lm triquest-lm
1589/tcp vqp VQP
1589/udp vqp VQP
1590/tcp gemini-lm gemini-lm
1590/udp gemini-lm gemini-lm
1591/tcp ncpm-pm ncpm-pm
1591/udp ncpm-pm ncpm-pm
1592/tcp commonspace commonspace
1592/udp commonspace commonspace
1593/tcp mainsoft-lm mainsoft-lm
1593/udp mainsoft-lm mainsoft-lm
1594/tcp sixtrak sixtrak
1594/udp sixtrak sixtrak
1595/tcp radio radio
1595/udp radio radio
1596/tcp radio-sm radio-sm
1596/udp radio-bc radio-bc
1597/tcp orbplus-iiop orbplus-iiop
1597/udp orbplus-iiop orbplus-iiop
1598/tcp picknfs picknfs
1598/udp picknfs picknfs
1599/tcp simbaservices simbaservices
1599/udp simbaservices simbaservices
1600/tcp issd
1600/udp issd
1601/tcp aas aas
1601/udp aas aas
1602/tcp inspect inspect
1602/udp inspect inspect
1603/tcp picodbc pickodbc
1603/udp picodbc pickodbc
1604/tcp icabrowser icabrowser
1604/udp icabrowser icabrowser
1605/tcp slp Salutation Manager (Salutation Protocol)
1605/udp slp Salutation Manager (Salutation Protocol)
1606/tcp slm-api Salutation Manager (SLM-API)
1606/udp slm-api Salutation Manager (SLM-API)
1607/tcp stt stt
1607/udp stt stt
1608/tcp smart-lm Smart Corp. License Manager
1608/udp smart-lm Smart Corp. License Manager
1609/tcp isysg-lm isysg-lm
1609/udp isysg-lm isysg-lm
1610/tcp taurus-wh taurus-wh
1610/udp taurus-wh taurus-wh
1611/tcp ill Inter Library Loan
1611/udp ill Inter Library Loan
1612/tcp netbill-trans NetBill Transaction Server
1612/udp netbill-trans NetBill Transaction Server
1613/tcp netbill-keyrep NetBill Key Repository
1613/udp netbill-keyrep NetBill Key Repository
1614/tcp netbill-cred NetBill Credential Server
1614/udp netbill-cred NetBill Credential Server
1615/tcp netbill-auth NetBill Authorization Server
1615/udp netbill-auth NetBill Authorization Server
1616/tcp netbill-prod NetBill Product Server
1616/udp netbill-prod NetBill Product Server
1617/tcp nimrod-agent Nimrod Inter-Agent Communication
1617/udp nimrod-agent Nimrod Inter-Agent Communication
1618/tcp skytelnet skytelnet
1618/udp skytelnet skytelnet
1619/tcp xs-openstorage xs-openstorage
1619/udp xs-openstorage xs-openstorage
1620/tcp faxportwinport faxportwinport
1620/udp faxportwinport faxportwinport
1621/tcp softdataphone softdataphone
1621/udp softdataphone softdataphone
1622/tcp ontime ontime
1622/udp ontime ontime
1623/tcp jaleosnd jaleosnd
1623/udp jaleosnd jaleosnd
1624/tcp udp-sr-port udp-sr-port
1624/udp udp-sr-port udp-sr-port
1625/tcp svs-omagent svs-omagent
1625/udp svs-omagent svs-omagent
1630/tcp oraclenet8cman Oracle Net8 Cman
1630/udp oraclenet8cman Oracle Net8 Cman
1636/tcp cncp CableNet Control Protocol
1636/udp cncp CableNet Control Protocol
1637/tcp cnap CableNet Admin Protocol
1637/udp cnap CableNet Admin Protocol
1638/tcp cnip CableNet Info Protocol
1638/udp cnip CableNet Info Protocol
1639/tcp cert-initiator cert-initiator
1639/udp cert-initiator cert-initiator
1640/tcp cert-responder cert-responder
1640/udp cert-responder cert-responder
1641/tcp invision InVision
1641/udp invision InVision
1642/tcp isis-am isis-am
1642/udp isis-am isis-am
1643/tcp isis-ambc isis-ambc
1643/udp isis-ambc isis-ambc
1644/tcp saiseh Satellite-data Acquisition System 4
1645/tcp datametrics datametrics
1645/udp datametrics datametrics
1646/tcp sa-msg-port sa-msg-port
1646/udp sa-msg-port sa-msg-port
1647/tcp rsap rsap
1647/udp rsap rsap
1648/tcp concurrent-lm concurrent-lm
1648/udp concurrent-lm concurrent-lm
1649/tcp inspect inspect
1649/udp inspect inspect
1650/tcp nkd nkd
1650/udp nkd nkd
1651/tcp shiva_confsrvr shiva_confsrvr
1651/udp shiva_confsrvr shiva_confsrvr
1652/tcp xnmp xnmp
1652/udp xnmp xnmp
1653/tcp alphatech-lm alphatech-lm
1653/udp alphatech-lm alphatech-lm
1654/tcp stargatealerts stargatealerts
1654/udp stargatealerts stargatealerts
1655/tcp dec-mbadmin dec-mbadmin
1655/udp dec-mbadmin dec-mbadmin
1656/tcp dec-mbadmin-h dec-mbadmin-h
1656/udp dec-mbadmin-h dec-mbadmin-h
1657/tcp fujitsu-mmpdc fujitsu-mmpdc
1657/udp fujitsu-mmpdc fujitsu-mmpdc
1658/tcp sixnetudr sixnetudr
1658/udp sixnetudr sixnetudr
1659/tcp sg-lm Silicon Grail License Manager
1659/udp sg-lm Silicon Grail License Manager
1660/tcp skip-mc-gikreq skip-mc-gikreq
1660/udp skip-mc-gikreq skip-mc-gikreq
1661/tcp netview-aix-1 netview-aix-1
1661/udp netview-aix-1 netview-aix-1
1662/tcp netview-aix-2 netview-aix-2
1662/udp netview-aix-2 netview-aix-2
1663/tcp netview-aix-3 netview-aix-3
1663/udp netview-aix-3 netview-aix-3
1664/tcp netview-aix-4 netview-aix-4
1664/udp netview-aix-4 netview-aix-4
1665/tcp netview-aix-5 netview-aix-5
1665/udp netview-aix-5 netview-aix-5
1666/tcp netview-aix-6 netview-aix-6
1666/udp netview-aix-6 netview-aix-6
1667/tcp netview-aix-7 netview-aix-7
1667/udp netview-aix-7 netview-aix-7
1668/tcp netview-aix-8 netview-aix-8
1668/udp netview-aix-8 netview-aix-8
1669/tcp netview-aix-9 netview-aix-9
1669/udp netview-aix-9 netview-aix-9
1670/tcp netview-aix-10 netview-aix-10
1670/udp netview-aix-10 netview-aix-10
1671/tcp netview-aix-11 netview-aix-11
1671/udp netview-aix-11 netview-aix-11
1672/tcp netview-aix-12 netview-aix-12
1672/udp netview-aix-12 netview-aix-12
1673/tcp proshare-mc-1 Intel Proshare Multicast
1673/udp proshare-mc-1 Intel Proshare Multicast
1674/tcp proshare-mc-2 Intel Proshare Multicast
1674/udp proshare-mc-2 Intel Proshare Multicast
1675/tcp pdp Pacific Data Products
1675/udp pdp Pacific Data Products
1676/tcp netcomm1 netcomm1
1676/udp netcomm2 netcomm2
1677/tcp groupwise groupwise
1677/udp groupwise groupwise
1678/tcp prolink prolink
1678/udp prolink prolink
1679/tcp darcorp-lm darcorp-lm
1679/udp darcorp-lm darcorp-lm
1680/tcp microcom-sbp microcom-sbp
1680/udp microcom-sbp microcom-sbp
1681/tcp sd-elmd sd-elmd
1681/udp sd-elmd sd-elmd
1682/tcp lanyon-lantern lanyon-lantern
1682/udp lanyon-lantern lanyon-lantern
1683/tcp ncpm-hip ncpm-hip
1683/udp ncpm-hip ncpm-hip
1684/tcp snaresecure SnareSecure
1684/udp snaresecure SnareSecure
1685/tcp n2nremote n2nremote
1685/udp n2nremote n2nremote
1686/tcp cvmon cvmon
1686/udp cvmon cvmon
1687/tcp nsjtp-ctrl nsjtp-ctrl
1687/udp nsjtp-ctrl nsjtp-ctrl
1688/tcp nsjtp-data nsjtp-data
1688/udp nsjtp-data nsjtp-data
1689/tcp firefox firefox
1689/udp firefox firefox
1690/tcp ng-umds ng-umds
1690/udp ng-umds ng-umds
1691/tcp empire-empuma empire-empuma
1691/udp empire-empuma empire-empuma
1692/tcp sstsys-lm sstsys-lm
1692/udp sstsys-lm sstsys-lm
1693/tcp rrirtr rrirtr
1693/udp rrirtr rrirtr
1694/tcp rrimwm rrimwm
1694/udp rrimwm rrimwm
1695/tcp rrilwm rrilwm
1695/udp rrilwm rrilwm
1696/tcp rrifmm rrifmm
1696/udp rrifmm rrifmm
1697/tcp rrisat rrisat
1697/udp rrisat rrisat
1698/tcp rsvp-encap-1 RSVP-ENCAPSULATION-1
1698/udp rsvp-encap-1 RSVP-ENCAPSULATION-1
1699/tcp rsvp-encap-2 RSVP-ENCAPSULATION-2
1699/udp rsvp-encap-2 RSVP-ENCAPSULATION-2
1700/tcp mps-raft mps-raft
1700/udp mps-raft mps-raft
1701/tcp l2f l2f
1701/udp l2f l2f
1701/tcp l2tp l2tp
1701/udp l2tp l2tp
1702/tcp deskshare deskshare
1702/udp deskshare deskshare
1703/tcp hb-engine hb-engine
1703/udp hb-engine hb-engine
1704/tcp bcs-broker bcs-broker
1704/udp bcs-broker bcs-broker
1705/tcp slingshot slingshot
1705/udp slingshot slingshot
1706/tcp jetform jetform
1706/udp jetform jetform
1707/tcp vdmplay vdmplay
1707/udp vdmplay vdmplay
1708/tcp gat-lmd gat-lmd
1708/udp gat-lmd gat-lmd
1709/tcp centra centra
1709/udp centra centra
1710/tcp impera impera
1710/udp impera impera
1711/tcp pptconference pptconference
1711/udp pptconference pptconference
1712/tcp registrar resource monitoring service
1712/udp registrar resource monitoring service
1713/tcp conferencetalk ConferenceTalk
1713/udp conferencetalk ConferenceTalk
1714/tcp sesi-lm sesi-lm
1714/udp sesi-lm sesi-lm
1715/tcp houdini-lm houdini-lm
1715/udp houdini-lm houdini-lm
1716/tcp xmsg xmsg
1716/udp xmsg xmsg
1717/tcp fj-hdnet fj-hdnet
1717/udp fj-hdnet fj-hdnet
1718/tcp h323gatedisc h323gatedisc
1718/udp h323gatedisc h323gatedisc
1719/tcp h323gatestat h323gatestat
1719/udp h323gatestat h323gatestat
1720/tcp h323hostcall h323hostcall
1720/udp h323hostcall h323hostcall
1721/tcp caicci caicci
1721/udp caicci caicci
1722/tcp hks-lm HKS License Manager
1722/udp hks-lm HKS License Manager
1723/tcp pptp pptp
1723/udp pptp pptp
1724/tcp csbphonemaster csbphonemaster
1724/udp csbphonemaster csbphonemaster
1725/tcp iden-ralp iden-ralp
1725/udp iden-ralp iden-ralp
1726/tcp iberiagames IBERIAGAMES
1726/udp iberiagames IBERIAGAMES
1727/tcp winddx winddx
1727/udp winddx winddx
1728/tcp telindus TELINDUS
1728/udp telindus TELINDUS
1729/tcp citynl CityNL License Management
1729/udp citynl CityNL License Management
1730/tcp roketz roketz
1730/udp roketz roketz
1731/tcp msiccp MSICCP
1731/udp msiccp MSICCP
1732/tcp proxim proxim
1732/udp proxim proxim
1733/tcp siipat SIMS - SIIPAT Protocol for Alarm Transmission
1733/udp siipat SIMS - SIIPAT Protocol for Alarm Transmission
1734/tcp cambertx-lm Camber Corporation License Management
1734/udp cambertx-lm Camber Corporation License Management
1735/tcp privatechat PrivateChat
1735/udp privatechat PrivateChat
1736/tcp street-stream street-stream
1736/udp street-stream street-stream
1737/tcp ultimad ultimad
1737/udp ultimad ultimad
1738/tcp gamegen1 GameGen1
1738/udp gamegen1 GameGen1
1739/tcp webaccess webaccess
1739/udp webaccess webaccess
1740/tcp encore encore
1740/udp encore encore
1741/tcp cisco-net-mgmt cisco-net-mgmt
1741/udp cisco-net-mgmt cisco-net-mgmt
1742/tcp 3Com-nsd 3Com-nsd
1742/udp 3Com-nsd 3Com-nsd
1743/tcp cinegrfx-lm Cinema Graphics License Manager
1743/udp cinegrfx-lm Cinema Graphics License Manager
1744/tcp ncpm-ft ncpm-ft
1744/udp ncpm-ft ncpm-ft
1745/tcp remote-winsock remote-winsock
1745/udp remote-winsock remote-winsock
1746/tcp ftrapid-1 ftrapid-1
1746/udp ftrapid-1 ftrapid-1
1747/tcp ftrapid-2 ftrapid-2
1747/udp ftrapid-2 ftrapid-2
1748/tcp oracle-em1 oracle-em1
1748/udp oracle-em1 oracle-em1
1749/tcp aspen-services aspen-services
1749/udp aspen-services aspen-services
1750/tcp sslp Simple Socket Library's PortMaster
1750/udp sslp Simple Socket Library's PortMaster
1751/tcp swiftnet SwiftNet
1751/udp swiftnet SwiftNet
1752/tcp lofr-lm Leap of Faith Research License Manager
1752/udp lofr-lm Leap of Faith Research License Manager
1753/tcp translogic-lm Translogic License Manager
1753/udp translogic-lm Translogic License Manager
1754/tcp oracle-em2 oracle-em2
1754/udp oracle-em2 oracle-em2
1755/tcp ms-streaming ms-streaming
1755/udp ms-streaming ms-streaming
1756/tcp capfast-lmd capfast-lmd
1756/udp capfast-lmd capfast-lmd
1757/tcp cnhrp cnhrp
1757/udp cnhrp cnhrp
1758/tcp tftp-mcast tftp-mcast
1758/udp tftp-mcast tftp-mcast
1759/tcp spss-lm SPSS License Manager
1759/udp spss-lm SPSS License Manager
1760/tcp www-ldap-gw www-ldap-gw
1760/udp www-ldap-gw www-ldap-gw
1761/tcp cft-0 cft-0
1761/udp cft-0 cft-0
1762/tcp cft-1 cft-1
1762/udp cft-1 cft-1
1763/tcp cft-2 cft-2
1763/udp cft-2 cft-2
1764/tcp cft-3 cft-3
1764/udp cft-3 cft-3
1765/tcp cft-4 cft-4
1765/udp cft-4 cft-4
1766/tcp cft-5 cft-5
1766/udp cft-5 cft-5
1767/tcp cft-6 cft-6
1767/udp cft-6 cft-6
1768/tcp cft-7 cft-7
1768/udp cft-7 cft-7
1769/tcp bmc-net-adm bmc-net-adm
1769/udp bmc-net-adm bmc-net-adm
1770/tcp bmc-net-svc bmc-net-svc
1770/udp bmc-net-svc bmc-net-svc
1771/tcp vaultbase vaultbase
1771/udp vaultbase vaultbase
1772/tcp essweb-gw EssWeb Gateway
1772/udp essweb-gw EssWeb Gateway
1773/tcp kmscontrol KMSControl
1773/udp kmscontrol KMSControl
1774/tcp global-dtserv global-dtserv
1774/udp global-dtserv global-dtserv
1776/tcp femis Federal Emergency Management Information System
1776/udp femis Federal Emergency Management Information System
1777/tcp powerguardian powerguardian
1777/udp powerguardian powerguardian
1778/tcp prodigy-intrnet prodigy-internet
1778/udp prodigy-intrnet prodigy-internet
1779/tcp pharmasoft pharmasoft
1779/udp pharmasoft pharmasoft
1780/tcp dpkeyserv dpkeyserv
1780/udp dpkeyserv dpkeyserv
1781/tcp answersoft-lm answersoft-lm
1781/udp answersoft-lm answersoft-lm
1782/tcp hp-hcip hp-hcip
1782/udp hp-hcip hp-hcip
1783/tcp fjris Fujitsu Remote Install Service
1783/udp fjris Fujitsu Remote Install Service
1784/tcp finle-lm Finle License Manager
1784/udp finle-lm Finle License Manager
1785/tcp windlm Wind River Systems License Manager
1785/udp windlm Wind River Systems License Manager
1786/tcp funk-logger funk-logger
1786/udp funk-logger funk-logger
1787/tcp funk-license funk-license
1787/udp funk-license funk-license
1788/tcp psmond psmond
1788/udp psmond psmond
1789/tcp hello hello
1789/udp hello hello
1790/tcp nmsp Narrative Media Streaming Protocol
1790/udp nmsp Narrative Media Streaming Protocol
1791/tcp ea1 EA1
1791/udp ea1 EA1
1792/tcp ibm-dt-2 ibm-dt-2
1792/udp ibm-dt-2 ibm-dt-2
1793/tcp rsc-robot rsc-robot
1793/udp rsc-robot rsc-robot
1794/tcp cera-bcm cera-bcm
1794/udp cera-bcm cera-bcm
1795/tcp dpi-proxy dpi-proxy
1795/udp dpi-proxy dpi-proxy
1796/tcp vocaltec-admin Vocaltec Server Administration
1796/udp vocaltec-admin Vocaltec Server Administration
1797/tcp uma UMA
1797/udp uma UMA
1798/tcp etp Event Transfer Protocol
1798/udp etp Event Transfer Protocol
1799/tcp netrisk NETRISK
1799/udp netrisk NETRISK
1800/tcp ansys-lm ANSYS-License manager
1800/udp ansys-lm ANSYS-License manager
1801/tcp msmq Microsoft Message Que
1801/udp msmq Microsoft Message Que
1802/tcp concomp1 ConComp1
1802/udp concomp1 ConComp1
1803/tcp hp-hcip-gwy HP-HCIP-GWY
1803/udp hp-hcip-gwy HP-HCIP-GWY
1804/tcp enl ENL
1804/udp enl ENL
1805/tcp enl-name ENL-Name
1805/udp enl-name ENL-Name
1806/tcp musiconline Musiconline
1806/udp musiconline Musiconline
1807/tcp fhsp Fujitsu Hot Standby Protocol
1807/udp fhsp Fujitsu Hot Standby Protocol
1808/tcp oracle-vp2 Oracle-VP2
1808/udp oracle-vp2 Oracle-VP2
1809/tcp oracle-vp1 Oracle-VP1
1809/udp oracle-vp1 Oracle-VP1
1810/tcp jerand-lm Jerand License Manager
1810/udp jerand-lm Jerand License Manager
1811/tcp scientia-sdb Scientia-SDB
1811/udp scientia-sdb Scientia-SDB
1812/tcp radius RADIUS
1812/udp radius RADIUS
1813/tcp radius-acct RADIUS Accounting
1813/udp radius-acct RADIUS Accounting
1814/tcp tdp-suite TDP Suite
1814/udp tdp-suite TDP Suite
1815/tcp mmpft MMPFT
1815/udp mmpft MMPFT
1816/tcp harp HARP
1816/udp harp HARP
1818/tcp etftp Enhanced Trivial File Transfer Protocol
1818/udp etftp Enhanced Trivial File Transfer Protocol
1819/tcp plato-lm Plato License Manager
1819/udp plato-lm Plato License Manager
1820/tcp mcagent mcagent
1820/udp mcagent mcagent
1821/tcp donnyworld donnyworld
1821/udp donnyworld donnyworld
1822/tcp es-elmd es-elmd
1822/udp es-elmd es-elmd
1823/tcp unisys-lm Unisys Natural Language License Manager
1823/udp unisys-lm Unisys Natural Language License Manager
1824/tcp metrics-pas metrics-pas
1824/udp metrics-pas metrics-pas
1828/tcp itm-mcell-u itm-mcell-u
1828/udp itm-mcell-u itm-mcell-u
1850/tcp gsi GSI
1850/udp gsi GSI
1860/tcp sunscalar-svc SunSCALAR Services
1860/udp sunscalar-svc SunSCALAR Services
1861/tcp lecroy-vicp LeCroy VICP
1861/udp lecroy-vicp LeCroy VICP
1862/tcp techra-server techra-server
1862/udp techra-server techra-server
1863/tcp msnp MSNP
1863/udp msnp MSNP
1864/tcp paradym-31port Paradym 31 Port
1864/udp paradym-31port Paradym 31 Port
1865/tcp entp ENTP
1865/udp entp ENTP
1870/tcp sunscalar-dns SunSCALAR DNS Service
1870/udp sunscalar-dns SunSCALAR DNS Service
1881/tcp ibm-mqseries2 IBM MQSeries
1881/udp ibm-mqseries2 IBM MQSeries
1900/tcp ms-upnp Microsoft Universal Plug-and-Play
1900/udp ms-upnp Microsoft Universal Plug-and-Play
1901/tcp fjicl-tep-a Fujitsu ICL Terminal Emulator Program A
1901/udp fjicl-tep-a Fujitsu ICL Terminal Emulator Program A
1902/tcp fjicl-tep-b Fujitsu ICL Terminal Emulator Program B
1902/udp fjicl-tep-b Fujitsu ICL Terminal Emulator Program B
1903/tcp linkname Local Link Name Resolution
1903/udp linkname Local Link Name Resolution
1904/tcp fjicl-tep-c Fujitsu ICL Terminal Emulator Program C
1904/udp fjicl-tep-c Fujitsu ICL Terminal Emulator Program C
1905/tcp sugp Secure UP.Link Gateway Protocol
1905/udp sugp Secure UP.Link Gateway Protocol
1906/tcp tpmd TPortMapperReq
1906/udp tpmd TPortMapperReq
1907/tcp intrastar IntraSTAR
1907/udp intrastar IntraSTAR
1908/tcp dawn Dawn
1908/udp dawn Dawn
1909/tcp global-wlink Global World Link
1909/udp global-wlink Global World Link
1911/tcp mtp Starlight Networks Multimedia Transport Protocol
1911/udp mtp Starlight Networks Multimedia Transport Protocol
1913/tcp armadp armadp
1913/udp armadp armadp
1914/tcp elm-momentum Elm-Momentum
1914/udp elm-momentum Elm-Momentum
1915/tcp facelink FACELINK
1915/udp facelink FACELINK
1916/tcp persona Persoft Persona
1916/udp persona Persoft Persona
1917/tcp noagent nOAgent
1917/udp noagent nOAgent
1918/tcp can-nds Candle Directory Service - NDS
1918/udp can-nds Candle Directory Service - NDS
1919/tcp can-dch Candle Directory Service - DCH
1919/udp can-dch Candle Directory Service - DCH
1920/tcp can-ferret Candle Directory Service - FERRET
1920/udp can-ferret Candle Directory Service - FERRET
1921/tcp noadmin NoAdmin
1921/udp noadmin NoAdmin
1944/tcp close-combat close-combat
1944/udp close-combat close-combat
1945/tcp dialogic-elmd dialogic-elmd
1945/udp dialogic-elmd dialogic-elmd
1946/tcp tekpls tekpls
1946/udp tekpls tekpls
1947/tcp hlserver hlserver
1947/udp hlserver hlserver
1948/tcp eye2eye eye2eye
1948/udp eye2eye eye2eye
1949/tcp ismaeasdaqlive ISMA Easdaq Live
1949/udp ismaeasdaqlive ISMA Easdaq Live
1950/tcp ismaeasdaqtest ISMA Easdaq Test
1950/udp ismaeasdaqtest ISMA Easdaq Test
1951/tcp bcs-lmserver bcs-lmserver
1951/udp bcs-lmserver bcs-lmserver
1973/tcp dlsrap Data Link Switching Remote Access Protocol
1973/udp dlsrap Data Link Switching Remote Access Protocol
1985/tcp hsrp Hot Standby Router Protocol
1985/udp hsrp Hot Standby Router Protocol
1986/tcp licensedaemon cisco license management
1986/udp licensedaemon cisco license management
1987/tcp tr-rsrb-p1 cisco RSRB Priority 1 port
1987/udp tr-rsrb-p1 cisco RSRB Priority 1 port
1988/tcp tr-rsrb-p2 cisco RSRB Priority 2 port
1988/udp tr-rsrb-p2 cisco RSRB Priority 2 port
1989/tcp tr-rsrb-p3 cisco RSRB Priority 3 port
1989/udp tr-rsrb-p3 cisco RSRB Priority 3 port
1989/tcp mshnet MHSnet system
1989/udp mshnet MHSnet system
1990/tcp stun-p1 cisco STUN Priority 1 port
1990/udp stun-p1 cisco STUN Priority 1 port
1991/tcp stun-p2 cisco STUN Priority 2 port
1991/udp stun-p2 cisco STUN Priority 2 port
1992/tcp stun-p3 cisco STUN Priority 3 port
1992/udp stun-p3 cisco STUN Priority 3 port
1992/tcp ipsendmsg IPsendmsg
1992/udp ipsendmsg IPsendmsg
1993/tcp snmp-tcp-port cisco SNMP TCP port
1993/udp snmp-tcp-port cisco SNMP TCP port
1994/tcp stun-port cisco serial tunnel port
1994/udp stun-port cisco serial tunnel port
1995/tcp perf-port cisco perf port
1995/udp perf-port cisco perf port
1996/tcp tr-rsrb-port cisco Remote SRB port
1996/udp tr-rsrb-port cisco Remote SRB port
1997/tcp gdp-port cisco Gateway Discovery Protocol
1997/udp gdp-port cisco Gateway Discovery Protocol
1998/tcp x25-svc-port cisco X.25 service (XOT)
1998/udp x25-svc-port cisco X.25 service (XOT)
1999/tcp tcp-id-port cisco identification port
1999/udp tcp-id-port cisco identification port
2000/tcp callbook
2000/udp callbook
2001/tcp dc
2001/udp wizard curry
2002/tcp globe
2002/udp globe
2004/tcp mailbox
2004/udp emce CCWS mm conf
2005/tcp berknet
2005/udp oracle
2006/tcp invokator
2006/udp raid-cc raid
2007/tcp dectalk
2007/udp raid-am
2008/tcp conf
2008/udp terminaldb
2009/tcp news
2009/udp whosockami
2010/tcp search
2010/udp pipe_server
2011/tcp raid-cc raid
2011/udp servserv
2012/tcp ttyinfo
2012/udp raid-ac
2013/tcp raid-am
2013/udp raid-cd
2014/tcp troff
2014/udp raid-sf
2015/tcp cypress
2015/udp raid-cs
2016/tcp bootserver
2016/udp bootserver
2017/tcp cypress-stat
2017/udp bootclient
2018/tcp terminaldb
2018/udp rellpack
2019/tcp whosockami
2019/udp about
2020/tcp xinupageserver
2020/udp xinupageserver
2021/tcp servexec
2021/udp xinuexpansion1
2022/tcp down
2022/udp xinuexpansion2
2023/tcp xinuexpansion3
2023/udp xinuexpansion3
2024/tcp xinuexpansion4
2024/udp xinuexpansion4
2025/tcp ellpack
2025/udp xribs
2026/tcp scrabble
2026/udp scrabble
2027/tcp shadowserver
2027/udp shadowserver
2028/tcp submitserver
2028/udp submitserver
2030/tcp device2
2030/udp device2
2032/tcp blackboard
2032/udp blackboard
2033/tcp glogger
2033/udp glogger
2034/tcp scoremgr
2034/udp scoremgr
2035/tcp imsldoc
2035/udp imsldoc
2038/tcp objectmanager
2038/udp objectmanager
2040/tcp lam
2040/udp lam
2041/tcp interbase
2041/udp interbase
2042/tcp isis isis
2042/udp isis isis
2043/tcp isis-bcast isis-bcast
2043/udp isis-bcast isis-bcast
2044/tcp rimsl
2044/udp rimsl
2045/tcp cdfunc
2045/udp cdfunc
2046/tcp sdfunc
2046/udp sdfunc
2047/tcp dls
2047/udp dls
2048/tcp dls-monitor
2048/udp dls-monitor
2049/tcp shilp
2049/udp shilp
2049/tcp nfs Network File System - Sun Microsystems
2049/udp nfs Network File System - Sun Microsystems
2065/tcp dlsrpn Data Link Switch Read Port Number
2065/udp dlsrpn Data Link Switch Read Port Number
2067/tcp dlswpn Data Link Switch Write Port Number
2067/udp dlswpn Data Link Switch Write Port Number
2090/tcp lrp Load Report Protocol
2090/udp lrp Load Report Protocol
2091/tcp prp PRP
2091/udp prp PRP
2100/tcp amiganetfs amiganetfs
2100/udp amiganetfs amiganetfs
2102/tcp zephyr-srv Zephyr server
2102/udp zephyr-srv Zephyr server
2103/tcp zephyr-clt Zephyr serv-hm connection
2103/udp zephyr-clt Zephyr serv-hm connection
2104/tcp zephyr-hm Zephyr hostmanager
2104/udp zephyr-hm Zephyr hostmanager
2105/tcp minipay MiniPay
2105/udp minipay MiniPay
2180/tcp mc-gt-srv Millicent Vendor Gateway Server
2180/udp mc-gt-srv Millicent Vendor Gateway Server
2200/tcp ici ICI
2200/udp ici ICI
2201/tcp ats Advanced Training System Program
2201/udp ats Advanced Training System Program
2202/tcp imtc-map Int. Multimedia Teleconferencing Cosortium
2202/udp imtc-map Int. Multimedia Teleconferencing Cosortium
2213/tcp kali Kali
2213/udp kali Kali
2220/tcp ganymede Ganymede
2220/udp ganymede Ganymede
2221/tcp unreg-ab1 Allen-Bradley unregistered port
2221/udp unreg-ab1 Allen-Bradley unregistered port
2222/tcp unreg-ab2 Allen-Bradley unregistered port
2222/udp unreg-ab2 Allen-Bradley unregistered port
2223/tcp inreg-ab3 Allen-Bradley unregistered port
2223/udp inreg-ab3 Allen-Bradley unregistered port
2232/tcp ivs-video IVS Video default
2232/udp ivs-video IVS Video default
2233/tcp infocrypt INFOCRYPT
2233/udp infocrypt INFOCRYPT
2234/tcp directplay DirectPlay
2234/udp directplay DirectPlay
2235/tcp sercomm-wlink Sercomm-WLink
2235/udp sercomm-wlink Sercomm-WLink
2236/tcp nani Nani
2236/udp nani Nani
2237/tcp optech-port1-lm Optech Port1 License Manager
2237/udp optech-port1-lm Optech Port1 License Manager
2238/tcp aviva-sna AVIVA SNA SERVER
2238/udp aviva-sna AVIVA SNA SERVER
2239/tcp imagequery Image Query
2239/udp imagequery Image Query
2240/tcp recipe RECIPe
2240/udp recipe RECIPe
2241/tcp ivsd IVS Daemon
2241/udp ivsd IVS Daemon
2242/tcp foliocorp Folio Remote Server
2242/udp foliocorp Folio Remote Server
2279/tcp xmquery xmquery
2279/udp xmquery xmquery
2280/tcp lnvpoller LNVPOLLER
2280/udp lnvpoller LNVPOLLER
2281/tcp lnvconsole LNVCONSOLE
2281/udp lnvconsole LNVCONSOLE
2282/tcp lnvalarm LNVALARM
2282/udp lnvalarm LNVALARM
2283/tcp lnvstatus LNVSTATUS
2283/udp lnvstatus LNVSTATUS
2284/tcp lnvmaps LNVMAPS
2284/udp lnvmaps LNVMAPS
2285/tcp lnvmailmon LNVMAILMON
2285/udp lnvmailmon LNVMAILMON
2286/tcp nas-metering NAS-Metering
2286/udp nas-metering NAS-Metering
2287/tcp dna DNA
2287/udp dna DNA
2288/tcp netml NETML
2288/udp netml NETML
2295/tcp advant-lm Advant License Manager
2295/udp advant-lm Advant License Manager
2296/tcp theta-lm Theta License Manager (Rainbow)
2296/udp theta-lm Theta License Manager (Rainbow)
2297/tcp d2k-datamover1 D2K DataMover 1
2297/udp d2k-datamover1 D2K DataMover 1
2298/tcp d2k-datamover2 D2K DataMover 2
2298/udp d2k-datamover2 D2K DataMover 2
2299/tcp pc-telecommute PC Telecommute
2299/udp pc-telecommute PC Telecommute
2300/tcp cvmmon CVMMON
2300/udp cvmmon CVMMON
2301/tcp cpq-wbem Compaq HTTP
2301/udp cpq-wbem Compaq HTTP
2302/tcp binderysupport Bindery Support
2302/udp binderysupport Bindery Support
2303/tcp proxy-gateway Proxy Gateway
2303/udp proxy-gateway Proxy Gateway
2304/tcp attachmate-uts Attachmate UTS
2304/udp attachmate-uts Attachmate UTS
2305/tcp mt-scaleserver MT ScaleServer
2305/udp mt-scaleserver MT ScaleServer
2306/tcp tappi-boxnet TAPPI BoxNet
2306/udp tappi-boxnet TAPPI BoxNet
2307/tcp pehelp pehelp
2307/udp pehelp pehelp
2308/tcp sdhelp sdhelp
2308/udp sdhelp sdhelp
2309/tcp sdserver SD Server
2309/udp sdserver SD Server
2310/tcp sdclient SD Client
2310/udp sdclient SD Client
2311/tcp messageservice Message Service
2311/udp messageservice Message Service
2313/tcp iapp IAPP (Inter Access Point Protocol)
2313/udp iapp IAPP (Inter Access Point Protocol)
2314/tcp cr-websystems CR WebSystems
2314/udp cr-websystems CR WebSystems
2315/tcp precise-sft Precise Sft.
2315/udp precise-sft Precise Sft.
2316/tcp sent-lm SENT License Manager
2316/udp sent-lm SENT License Manager
2317/tcp attachmate-g32 Attachmate G32
2317/udp attachmate-g32 Attachmate G32
2318/tcp cadencecontrol Cadence Control
2318/udp cadencecontrol Cadence Control
2319/tcp infolibria InfoLibria
2319/udp infolibria InfoLibria
2320/tcp siebel-ns Siebel NS
2320/udp siebel-ns Siebel NS
2321/tcp rdlap RDLAP over UDP
2321/udp rdlap RDLAP
2322/tcp ofsd ofsd
2322/udp ofsd ofsd
2323/tcp 3d-nfsd 3d-nfsd
2323/udp 3d-nfsd 3d-nfsd
2324/tcp cosmocall Cosmocall
2324/udp cosmocall Cosmocall
2325/tcp designspace-lm Design Space License Management
2325/udp designspace-lm Design Space License Management
2326/tcp idcp IDCP
2326/udp idcp IDCP
2327/tcp xingcsm xingcsm
2327/udp xingcsm xingcsm
2328/tcp netrix-sftm Netrix SFTM
2328/udp netrix-sftm Netrix SFTM
2329/tcp nvd NVD
2329/udp nvd NVD
2330/tcp tscchat TSCCHAT
2330/udp tscchat TSCCHAT
2331/tcp agentview AGENTVIEW
2331/udp agentview AGENTVIEW
2332/tcp rcc-host RCC Host
2332/udp rcc-host RCC Host
2333/tcp snapp SNAPP
2333/udp snapp SNAPP
2334/tcp ace-client ACE Client Auth
2334/udp ace-client ACE Client Auth
2335/tcp ace-proxy ACE Proxy
2335/udp ace-proxy ACE Proxy
2336/tcp appleugcontrol Apple UG Control
2336/udp appleugcontrol Apple UG Control
2337/tcp ideesrv ideesrv
2337/udp ideesrv ideesrv
2338/tcp norton-lambert Norton Lambert
2338/udp norton-lambert Norton Lambert
2339/tcp 3com-webview 3Com WebView
2339/udp 3com-webview 3Com WebView
2340/tcp wrs_registry WRS Registry
2340/udp wrs_registry WRS Registry
2341/tcp xiostatus XIO Status
2341/udp xiostatus XIO Status
2342/tcp manage-exec Seagate Manage Exec
2342/udp manage-exec Seagate Manage Exec
2343/tcp nati-logos nati logos
2343/udp nati-logos nati logos
2344/tcp fcmsys fcmsys
2344/udp fcmsys fcmsys
2345/tcp dbm dbm
2345/udp dbm dbm
2346/tcp redstorm_join Game Connection Port
2346/udp redstorm_join Game Connection Port
2347/tcp redstorm_find Game Announcement and Location
2347/udp redstorm_find Game Announcement and Location
2348/tcp redstorm_info Information to query for game status
2348/udp redstorm_info Information to query for game status
2349/tcp redstorm_diag Diagnostics Port
2349/udp redstorm_diag Disgnostics Port
2350/tcp psbserver psbserver
2350/udp psbserver psbserver
2351/tcp psrserver psrserver
2351/udp psrserver psrserver
2352/tcp pslserver pslserver
2352/udp pslserver pslserver
2353/tcp pspserver pspserver
2353/udp pspserver pspserver
2354/tcp psprserver psprserver
2354/udp psprserver psprserver
2355/tcp psdbserver psdbserver
2355/udp psdbserver psdbserver
2356/tcp gxtelmd GXT License Managemant
2356/udp gxtelmd GXT License Managemant
2357/tcp unihub-server UniHub Server
2357/udp unihub-server UniHub Server
2358/tcp futrix Futrix
2358/udp futrix Futrix
2359/tcp flukeserver FlukeServer
2359/udp flukeserver FlukeServer
2389/tcp ovsessionmgr OpenView Session Mgr
2389/udp ovsessionmgr OpenView Session Mgr
2390/tcp rsmtp RSMTP
2390/udp rsmtp RSMTP
2391/tcp 3com-net-mgmt 3COM Net Management
2391/udp 3com-net-mgmt 3COM Net Management
2392/tcp tacticalauth Tactical Auth
2392/udp tacticalauth Tactical Auth
2393/tcp ms-olap1 MS OLAP 1
2393/udp ms-olap1 MS OLAP 1
2394/tcp ms-olap2 MS OLAP 2
2394/udp ms-olap2 MA OLAP 2
2395/tcp lan900_remote LAN900 Remote
2395/udp lan900_remote LAN900 Remote
2396/tcp wusage Wusage
2396/udp wusage Wusage
2397/tcp ncl NCL
2397/udp ncl NCL
2398/tcp orbiter Orbiter
2398/udp orbiter Orbiter
2399/tcp fmpro-fdal FileMaker, Inc. - Data Access Layer
2399/udp fmpro-fdal FileMaker, Inc. - Data Access Layer
2400/tcp opequus-server OpEquus Server
2400/udp opequus-server OpEquus Server
2401/tcp cvspserver cvspserver
2401/udp cvspserver cvspserver
2402/tcp taskmaster2000 TaskMaster 2000 Server
2402/udp taskmaster2000 TaskMaster 2000 Server
2403/tcp taskmaster2000 TaskMaster 2000 Web
2403/udp taskmaster2000 TaskMaster 2000 Web
2404/tcp iec870-5-104 IEC870-5-104
2404/udp iec870-5-104 IEC870-5-104
2405/tcp trc-netpoll TRC Netpoll
2405/udp trc-netpoll TRC Netpoll
2406/tcp jediserver JediServer
2406/udp jediserver JediServer
2407/tcp orion Orion
2407/udp orion Orion
2408/tcp optimanet OptimaNet
2408/udp optimanet OptimaNet
2409/tcp sns-protocol SNS Protocol
2409/udp sns-protocol SNS Protocol
2410/tcp vrts-registry VRTS Registry
2410/udp vrts-registry VRTS Registry
2411/tcp netwave-ap-mgmt Netwave AP Management
2411/udp netwave-ap-mgmt Netwave AP Management
2412/tcp cdn CDN
2412/udp cdn CDN
2413/tcp orion-rmi-reg orion-rmi-reg
2413/udp orion-rmi-reg orion-rmi-reg
2414/tcp interlingua Interlingua
2414/udp interlingua Interlingua
2415/tcp comtest COMTEST
2415/udp comtest COMTEST
2416/tcp rmtserver RMT Server
2416/udp rmtserver RMT Server
2417/tcp composit-server Composit Server
2417/udp composit-server Composit Server
2418/tcp cas cas
2418/udp cas cas
2419/tcp attachmate-s2s Attachmate S2S
2419/udp attachmate-s2s Attachmate S2S
2420/tcp dslremote-mgmt DSL Remote Management
2420/udp dslremote-mgmt DSL Remote Management
2421/tcp g-talk G-Talk
2421/udp g-talk G-Talk
2422/tcp crmsbits CRMSBITS
2422/udp crmsbits CRMSBITS
2423/tcp rnrp RNRP
2423/udp rnrp RNRP
2424/tcp kofax-svr KOFAX-SVR
2424/udp kofax-svr KOFAX-SVR
2425/tcp fjitsuappmgr Fujitsu App Manager
2425/udp fjitsuappmgr Fujitsu App Manager
2426/tcp applianttcp Appliant TCP
2426/udp appliantudp Appliant UDP
2427/tcp stgcp Simple telephony Gateway Control Protocol
2427/udp stgcp Simple telephony Gateway Control Protocol
2428/tcp ott One Way Trip Time
2428/udp ott One Way Trip Time
2429/tcp ft-role FT-ROLE
2429/udp ft-role FT-ROLE
2430/tcp venus venus
2430/udp venus venus
2431/tcp venus-se venus-se
2431/udp venus-se venus-se
2432/tcp codasrv codasrv
2432/udp codasrv codasrv
2433/tcp codasrv-se codasrv-se
2433/udp codasrv-se codasrv-se
2434/tcp pxc-epmap pxc-epmap
2434/udp pxc-epmap pxc-epmap
2435/tcp optilogic OptiLogic
2435/udp optilogic OptiLogic
2436/tcp topx TOP/X
2436/udp topx TOP/X
2437/tcp unicontrol UniControl
2437/udp unicontrol UniControl
2438/tcp msp MSP
2438/udp msp MSP
2439/tcp sybasedbsynch SybaseDBSynch
2439/udp sybasedbsynch SybaseDBSynch
2440/tcp spearway Spearway Lockers
2440/udp spearway Spearway Lockser
2441/tcp pvsw-inet pvsw-inet
2441/udp pvsw-inet pvsw-inet
2442/tcp netangel Netangel
2442/udp netangel Netangel
2443/tcp powerclientcsf PowerClient Central Storage Facility
2443/udp powerclientcsf PowerClient Central Storage Facility
2444/tcp btpp2sectrans BT PP2 Sectrans
2444/udp btpp2sectrans BT PP2 Sectrans
2445/tcp dtn1 DTN1
2445/udp dtn1 DTN1
2446/tcp bues_service bues_service
2446/udp bues_service bues_service
2447/tcp ovwdb OpenView NNM daemon
2447/udp ovwdb OpenView NNM daemon
2448/tcp hpppssvr hpppsvr
2448/udp hpppssvr hpppsvr
2449/tcp ratl RATL
2449/udp ratl RATL
2450/tcp netadmin netadmin
2450/udp netadmin netadmin
2451/tcp netchat netchat
2451/udp netchat netchat
2452/tcp netpodclient NetPodClient
2452/udp netpodclient NetPodClient
2453/tcp madge-om madge-om
2453/udp madge-om madge-om
2454/tcp indx-dds IndX-DDS
2454/udp indx-dds IndX-DDS
2455/tcp wago-io-system WAGO-IO-SYSTEM
2455/udp wago-io-system WAGO-IO-SYSTEM
2456/tcp altav-remmgt altav-remmgt
2456/udp altav-remmgt altav-remmgt
2457/tcp rapido-ip Rapido_IP
2457/udp rapido-ip Rapido_IP
2458/tcp griffin griffin
2458/udp griffin griffin
2500/tcp rtsserv Resource Tracking system server
2500/udp rtsserv Resource Tracking system server
2501/tcp rtsclient Resource Tracking system client
2501/udp rtsclient Resource Tracking system client
2524/tcp optiwave-lm Optiwave License Management
2524/udp optiwave-lm Optiwave License Management
2525/tcp ms-v-worlds MS V-Worlds
2525/udp ms-v-worlds MS V-Worlds
2526/tcp ema-sent-lm EMA License Manager
2526/udp ema-sent-lm EMA License Manager
2527/tcp iqserver IQ Server
2527/udp iqserver IQ Server
2528/tcp ncr_ccl NCR CCL
2528/udp ncr_ccl NCR CCL
2529/tcp utsftp UTS FTP
2529/udp utsftp UTS FTP
2530/tcp vrcommerce VR Commerce
2530/udp vrcommerce VR Commerce
2531/tcp ito-e-gui ITO-E GUI
2531/udp ito-e-gui ITO-E GUI
2532/tcp ovtopmd OVTOPMD
2532/udp ovtopmd OVTOPMD
2534/tcp combox-web-acc Combox Web Access
2534/udp combox-web-acc Combox Web Access
2564/tcp hp-3000-telnet HP 3000 NS/VT block mode telnet
2592/tcp netrek netrek
2592/udp netrek netrek
2593/tcp mns-mail MNS Mail Notice Service
2593/udp mns-mail MNS Mail Notice Service
2628/tcp dict DICT
2628/udp dict DICT
2629/tcp sitaraserver Sitara Server
2629/udp sitaraserver Sitara Server
2630/tcp sitaramgmt Sitara Management
2630/udp sitaramgmt Sitara Management
2631/tcp sitaradir Sitara Dir
2631/udp sitaradir Sitara Dir
2632/tcp irdg-post IRdg Post
2632/udp irdg-post IRdg Post
2633/tcp interintelli InterIntelli
2633/udp interintelli InterIntelli
2634/tcp pk-electronics PK Electronics
2634/udp pk-electronics PK Electronics
2635/tcp backburner Back Burner
2635/udp backburner Back Burner
2636/tcp solve Solve
2636/udp solve Solve
2637/tcp imdocsvc Import Document Service
2637/udp imdocsvc Import Document Service
2638/tcp sybaseanywhere Sybase Anywhere
2638/udp sybaseanywhere Sybase Anywhere
2639/tcp aminet AMInet
2639/udp aminet AMInet
2640/tcp sai_sentlm Sabbagh Associates Licence Manager
2640/udp sai_sentlm Sabbagh Associates Licence Manager
2641/tcp hdl-srv HDL Server
2641/udp hdl-srv HDL Server
2642/tcp tragic Tragic
2642/udp tragic Tragic
2643/tcp gte-samp GTE-SAMP
2643/udp gte-samp GTE-SAMP
2644/tcp travsoft-ipx-t Travsoft IPX Tunnel
2644/udp travsoft-ipx-t Travsoft IPX Tunnel
2645/tcp novell-ipx-cmd Novell IPX CMD
2645/udp novell-ipx-cmd Novell IPX CMD
2646/tcp and-lm AND Licence Manager
2646/udp and-lm AND License Manager
2647/tcp syncserver SyncServer
2647/udp syncserver SyncServer
2648/tcp upsnotifyprot Upsnotifyprot
2648/udp upsnotifyprot Upsnotifyprot
2649/tcp vpsipport VPSIPPORT
2649/udp vpsipport VPSIPPORT
2650/tcp eristwoguns eristwoguns
2650/udp eristwoguns eristwoguns
2651/tcp ebinsite EBInSite
2651/udp ebinsite EBInSite
2652/tcp interpathpanel InterPathPanel
2652/udp interpathpanel InterPathPanel
2653/tcp sonus Sonus
2653/udp sonus Sonus
2654/tcp corel_vncadmin Corel VNC Admin
2654/udp corel_vncadmin Corel VNC Admin
2655/tcp unglue UNIX Nt Glue
2655/udp unglue UNIX Nt Glue
2656/tcp kana Kana
2656/udp kana Kana
2657/tcp sns-dispatcher SNS Dispatcher
2657/udp sns-dispatcher SNS Dispatcher
2658/tcp sns-admin SNS Admin
2658/udp sns-admin SNS Admin
2659/tcp sns-query SNS Query
2659/udp sns-query SNS Query
2700/tcp tqdata tqdata
2700/udp tqdata tqdata
2784/tcp www-dev world wide web - development
2784/udp www-dev world wide web - development
2785/tcp aic-np aic-np
2785/udp aic-np aic-np
2786/tcp aic-oncrpc aic-oncrpc - Destiny MCD database
2786/udp aic-oncrpc aic-oncrpc - Destiny MCD database
2787/tcp piccolo piccolo - Cornerstone Software
2787/udp piccolo piccolo - Cornerstone Software
2788/tcp fryeserv NetWare Loadable Module - Seagate Software
2788/udp fryeserv NetWare Loadable Module - Seagate Software
2789/tcp media-agent Media Agent
2789/udp media-agent Media Agent
2908/tcp mao mao
2908/udp mao mao
2909/tcp funk-dialout Funk Dialout
2909/udp funk-dialout Funk Dialout
2910/tcp tdaccess TDAccess
2910/udp tdaccess TDAccess
2911/tcp blockade Blockade
2911/udp blockade Blockade
2912/tcp epicon Epicon
2912/udp epicon Epicon
2913/tcp boosterware Booster Ware
2913/udp boosterware Booster Ware
2914/tcp gamelobby Game Lobby
2914/udp gamelobby Game Lobby
2915/tcp tksocket TK Socket
2915/udp tksocket TK Socket
2916/tcp elvin_server Elvin Server
2916/ucp elvin_server Elvin Server
2917/tcp elvin_client Elvin Client
2917/udp elvin_client Elvin Client
2918/tcp kastenchasepad Kasten Chase Pad
2918/udp kastenchasepad Kasten Chase Pad
2971/tcp netclip Net Clip
2971/udp netclip Net Clip
2972/tcp pmsm-webrctl PMSM Webrctl
2972/udp pmsm-webrctl PMSM Webrctl
2973/tcp svnetworks SV Networks
2973/udp svnetworks SV Networks
2974/tcp signal Signal
2974/udp signal Signal
2975/tcp fjmpcm Fujitsu Configuration Management Service
2975/udp fjmpcm Fujitsu Configuration Management Service
2998/tcp realsecure Real Secure
2998/udp realsecure Real Secure
2999/tcp remoteware-un RemoteWare Unassigned
2999/udp remoteware-un RemoteWare Unassigned
3000/tcp hbci HBCI
3000/udp hbci HBCI
3000/tcp remoteware-cl RemoteWare Client
3000/udp remoteware-cl RemoteWare Client
3001/tcp redwood-broker Redwood Broker
3001/udp redwood-broker Redwood Broker
3002/tcp exlm-agent EXLM Agent
3002/udp exlm-agent EXLM Agent
3002/tcp remoteware-srv RemoteWare Server
3002/udp remoteware-srv RemoteWare Server
3003/tcp cgms CGMS
3003/udp cgms CGMS
3004/tcp csoftragent Csoft Agent
3004/udp csoftragent Csoft Agent
3005/tcp geniuslm Genius License Manager
3005/udp geniuslm Genius License Manager
3006/tcp ii-admin Instant Internet Admin
3006/udp ii-admin Instant Internet Admin
3007/tcp lotusmtap Lotus Mail Tracking Agent Protocol
3007/udp lotusmtap Lotus Mail Tracking Agent Protocol
3008/tcp midnight-tech Midnight Technologies
3008/udp midnight-tech Midnight Technologies
3009/tcp pxc-ntfy PXC-NTFY
3009/udp pxc-ntfy PXC-NTFY
3010/tcp gw Telerate Workstation
3010/udp ping-pong Telerate Workstation
3011/tcp trusted-web Trusted Web
3011/udp trusted-web Trusted Web
3012/tcp twsdss Trusted Web Client
3012/udp twsdss Trusted Web Client
3013/tcp gilatskysurfer Gilat Sky Surfer
3013/udp gilatskysurfer Gilat Sky Surfer
3014/tcp broker_service Broker Service
3014/udp broker_service Broker Service
3015/tcp nati-dstp NATI DSTP
3015/udp nati-dstp NATI DSTP
3016/tcp notify_srvr Notify Server
3016/udp notify_srvr Notify Server
3017/tcp event_listener Event Listener
3017/udp event_listener Event Listener
3018/tcp srvc_registry Service Registry
3018/udp srvc_registry Service Registry
3019/tcp resource_mgr Resource Manager
3019/udp resource_mgr Resource Manager
3020/tcp cifs CIFS
3020/udp cifs CIFS
3021/tcp agriserver AGRI Server
3021/udp agriserver AGRI Server
3047/tcp hlserver Fast Security HL Server
3047/udp hlserver Fast Security HL Server
3048/tcp pctrader Sierra Net PC Trader
3048/udp pctrader Sierra Net PC Trader
3049/tcp nsws NSWS
3049/udp nsws NSWS
3080/tcp stm_pproc stm_pproc
3080/udp stm_pproc stm_pproc
3105/tcp cardbox Cardbox
3105/udp cardbox Cardbox
3106/tcp cardbox-http Cardbox HTTP
3106/udp cardbox-http Cardbox HTTP
3130/tcp icpv2 ICPv2
3130/udp icpv2 ICPv2
3131/tcp netbookmark Net Book Mark
3131/udp netbookmark Net Book Mark
3141/tcp vmodem VMODEM
3141/udp vmodem VMODEM
3142/tcp rdc-wh-eos RDC WH EOS
3142/udp rdc-wh-eos RDC WH EOS
3143/tcp seaview Sea View
3143/udp seaview Sea View
3144/tcp tarantella Tarantella
3144/udp tarantella Tarantella
3145/tcp csi-lfap CSI-LFAP
3145/udp csi-lfap CSI-LFAP
3147/tcp rfio RFIO
3147/udp rfio RFIO
3180/tcp mc-brk-srv Millicent Broker Server
3180/udp mc-brk-srv Millicent Broker Server
3264/tcp ccmail cc:mail/lotus
3264/udp ccmail cc:mail/lotus
3265/tcp altav-tunnel Altav Tunnel
3265/udp altav-tunnel Altav Tunnel
3266/tcp ns-cfg-server NS CFG Server
3266/udp ns-cfg-server NS CFG Server
3267/tcp ibm-dial-out IBM Dial Out
3267/udp ibm-dial-out IBM Dial Out
3268/tcp msft-gc Microsoft Global Catalog
3268/udp msft-gc Microsoft Global Catalog
3269/tcp msft-gc-ssl Microsoft Global Catalog with LDAP/SSL
3269/udp msft-gc-ssl Microsoft Global Catalog with LDAP/SSL
3270/tcp verismart Verismart
3270/udp verismart Verismart
3271/tcp csoft-prev CSoft Prev Port
3271/udp csoft-prev CSoft Prev Port
3272/tcp user-manager Fujitsu User Manager
3272/udp user-manager Fujitsu User Manager
3273/tcp sxmp Simple Extensible Multiplexed Protocol
3273/udp sxmp Simple Extensible Multiplexed Protocol
3274/tcp ordinox-server Ordinox Server
3274/udp ordinox-server Ordinox Server
3275/tcp samd SAMD
3275/udp samd SAMD
3276/tcp maxim-asics Maxim ASICs
3276/udp maxim-asics Maxim ASICs
3277/tcp awg-proxy AWG Proxy
3277/udp awg-proxy AWG Proxy
3278/tcp lkcmserver LKCM Server
3278/udp lkcmserver LKCM Server
3279/tcp admind admind
3279/udp admind admind
3280/tcp vs-server VS Server
3280/udp vs-server VS Server
3281/tcp sysopt SYSOPT
3281/udp sysopt SYSOPT
3282/tcp datusorb Datusorb
3282/udp datusorb Datusorb
3283/tcp net-assistant Net Assistant
3283/udp net-assistant Net Assistant
3284/tcp 4talk 4Talk
3284/udp 4talk 4Talk
3285/tcp plato Plato
3285/udp plato Plato
3286/tcp e-net E-Net
3286/udp e-net E-Net
3287/tcp directvdata DIRECTVDATA
3287/udp directvdata DIRECTVDATA
3288/tcp cops COPS
3288/udp cops COPS
3289/tcp enpc ENPC
3289/udp enpc ENPC
3290/tcp caps-lm CAPS LOGISTICS TOOLKIT - LM
3290/udp caps-lm CAPS LOGISTICS TOOLKIT - LM
3291/tcp sah-lm S A Holditch & Associates - LM
3291/udp sah-lm S A Holditch & Associates - LM
3292/tcp cart-o-rama Cart O Rama
3292/udp cart-o-rama Cart O Rama
3293/tcp fg-fps fg-fps
3293/udp fg-fps fg-fps
3294/tcp fg-gip fg-gip
3294/udp fg-gip fg-gip
3295/tcp dyniplookup Dynamic IP Lookup
3295/udp dyniplookup Dynamic IP Lookup
3296/tcp rib-slm Rib License Manager
3296/udp rib-slm Rib License Manager
3297/tcp cytel-lm Cytel License Manager
3297/udp cytel-lm Cytel License Manager
3298/tcp transview Transview
3298/udp transview Transview
3299/tcp pdrncs pdrncs
3299/udp pdrncs pdrncs
3300/tcp bmcpatrolagent BMC Patrol Agent
3300/udp bmcpatrolagent BMC Patrol Agent
3301/tcp bmcpatrolrnvu BMC Patrol Rendezvous
3301/udp bmcpatrolrnvu BMC Patrol Rendezvous
3302/tcp mcs-fastmail MCS Fastmail
3302/udp mcs-fastmail MCS Fastmail
3303/tcp opsession-clnt OP Session Client
3303/udp opsession-clnt OP Session Client
3304/tcp opsession-srvr OP Session Server
3304/udp opsession-srvr OP Session Server
3305/tcp odette-ftp ODETTE-FTP
3305/udp odette-ftp ODETTE-FTP
3306/tcp mysql MySQL
3306/udp mysql MySQL
3307/tcp opsession-prxy OP Session Proxy
3307/udp opsession-prxy OP Session Proxy
3308/tcp tns-server TNS Server
3308/udp tns-server TNS Server
3309/tcp tns-adv TNS ADV
3309/udp tns-adv TND ADV
3310/tcp dyna-access Dyna Access
3310/udp dyna-access Dyna Access
3311/tcp mcns-tel-ret MCNS Tel Ret
3311/udp mcns-tel-ret MCNS Tel Ret
3312/tcp appman-server Application Management Server
3312/udp appman-server Application Management Server
3313/tcp uorb Unify Object Broker
3313/udp uorb Unify Object Broker
3314/tcp uohost Unify Object Host
3314/udp uohost Unify Object Host
3315/tcp cdid CDID
3315/udp cdid CDID
3316/tcp aicc-cmi AICC/CMI
3316/udp aicc-cmi AICC/CMI
3317/tcp vsaiport VSAI PORT
3317/udp vsaiport VSAI PORT
3318/tcp ssrip Swith to Swith Routing Information Protocol
3318/udp ssrip Swith to Swith Routing Information Protocol
3319/tcp sdt-lmd SDT License Manager
3319/udp sdt-lmd SDT License Manager
3320/tcp officelink2000 Office Link 2000
3320/udp officelink2000 Office Link 2000
3321/tcp vnsstr VNSSTR
3321/udp vnsstr VNSSTR
3322/tcp active-net Active Networks
3322/udp active-net Active Networks
3323/tcp active-net Active Networks
3323/udp active-net Active Networks
3324/tcp active-net Active Networks
3324/udp active-net Active Networks
3325/tcp active-net Active Networks
3325/udp active-net Active Networks
3326/tcp sftu SFTU
3326/udp sftu SFTU
3327/tcp bbars BBARS
3327/udp bbars BBARS
3328/tcp egptlm Eaglepoint License Manager
3328/udp egptlm Eaglepoint License Manager
3329/tcp hp-device-disc HP Device Disc
3329/udp hp-device-disc HP Device Disc
3330/tcp mcs-calypsoicf MCS Calypso ICF
3330/udp mcs-calypsoicf MCS Calypso ICF
3331/tcp mcs-messaging MCS Messaging
3331/udp mcs-messaging MCS Messaging
3332/tcp mcs-mailsvr MCS Mail Server
3332/udp mcs-mailsvr MCS Mail Server
3333/tcp dec-notes DEC Notes
3333/udp dec-notes DEC Notes
3334/tcp directv-web Direct TV Webcasting
3334/udp directv-web Direct TV Webcasting
3335/tcp directv-soft Direct TV Software Updates
3335/udp directv-soft Direct TV Software Updates
3336/tcp directv-tick Direct TV Tickers
3336/udp directv-tick Direct TV Tickers
3337/tcp directv-catlg Direct TV Data Catalog
3337/udp directv-catlg Direct TV Data Catalog
3338/tcp anet-b OMF data b
3338/udp anet-b OMF data b
3339/tcp anet-l OMF data l
3339/udp anet-l OMF data l
3340/tcp anet-m OMF data m
3340/udp anet-m OMF data m
3341/tcp anet-h OMF data h
3341/udp anet-h OMF data h
3342/tcp webtie WebTIE
3342/udp webtie WebTIE
3343/tcp ms-cluster-net MS Cluster Net
3343/udp ms-cluster-net MS Cluster Net
3344/tcp bnt-manager BNT Manager
3344/udp bnt-manager BNT Manager
3345/tcp influence Influence
3345/udp influence Influence
3346/tcp trnsprntproxy Trnsprnt Proxy
3346/udp trnsprntproxy Trnsprnt Proxy
3347/tcp phoenix-rpc Phoenix RPC
3347/udp phoenix-rpc Phoenix RPC
3348/tcp pangolin-laser Pangolin Laser
3348/udp pangolin-laser Pangolin Laser
3349/tcp chevinservices Chevin Services
3349/udp chevinservices Chevin Services
3350/tcp findviatv FINDVIATV
3350/udp findviatv FINDVIATV
3351/tcp btrieve BTRIEVE
3351/udp btrieve BTRIEVE
3352/tcp ssql SSQL
3352/udp ssql SSQL
3353/tcp fatpipe FATPIPE
3353/udp fatpipe FATPIPE
3354/tcp suitjd SUITJD
3354/udp suitjd SUITJD
3355/tcp ordinox-dbase Ordinox Dbase
3355/udp ordinox-dbase Ordinox Dbase
3356/tcp upnotifyps UPNOTIFYPS
3356/udp upnotifyps UPNOTIFYPS
3357/tcp adtech-test Adtech Test IP
3357/udp adtech-test Adtech Test IP
3358/tcp mpsysrmsvr Mp Sys Rmsvr
3358/udp mpsysrmsvr Mp Sys Rmsvr
3359/tcp wg-netforce WG NetForce
3359/udp wg-netforce WG NetForce
3360/tcp kv-server KV Server
3360/udp kv-server KV Server
3361/tcp kv-agent KV Agent
3361/udp kv-agent KV Agent
3362/tcp dj-ilm DJ ILM
3362/udp dj-ilm DJ ILM
3363/tcp nati-vi-server NATI Vi Server
3363/udp nati-vi-server NATI Vi Server
3364/tcp creativeserver Creative Server
3364/udp creativeserver Creative Server
3365/tcp contentserver Content Server
3365/udp contentserver Content Server
3366/tcp creativepartnr Creative Partner
3366/udp creativepartnr Creative Partner
3367/tcp satvid-datalnk Satellite Video Data Link
3367/udp satvid-datalnk Satellite Video Data Link
3368/tcp satvid-datalnk Satellite Video Data Link
3368/udp satvid-datalnk Satellite Video Data Link
3369/tcp satvid-datalnk Satellite Video Data Link
3369/udp satvid-datalnk Satellite Video Data Link
3370/tcp satvid-datalnk Satellite Video Data Link
3370/udp satvid-datalnk Satellite Video Data Link
3371/tcp satvid-datalnk Satellite Video Data Link
3371/udp satvid-datalnk Satellite Video Data Link
3372/tcp tip2 TIP 2
3372/udp tip2 TIP 2
3373/tcp lavenir-lm Lavenir License Manager
3373/udp lavenir-lm Lavenir License Manager
3374/tcp cluster-disc Cluster Disc
3374/udp cluster-disc Cluster Disc
3375/tcp vsnm-agent VSNM Agent
3375/udp vsnm-agent VSNM Agent
3376/tcp cdborker CD Broker
3376/udp cdbroker CD Broker
3377/tcp cogsys-lm Cogsys Network License Manager
3377/udp cogsys-lm Cogsys Network License Manager
3378/tcp wsicopy WSICOPY
3378/udp wsicopy WSICOPY
3379/tcp socorfs SOCORFS
3379/udp socorfs SOCORFS
3380/tcp sns-channels SNS Channels
3380/udp sns-channels SNS Channels
3381/tcp geneous Geneous
3381/udp geneous Geneous
3382/tcp fujitsu-neat Fujitsu Network Enhanced Antitheft function
3382/udp fujitsu-neat Fujitsu Network Enhanced Antitheft function
3383/tcp esp-lm Enterprise Software Products License Manager
3383/udp esp-lm Enterprise Software Products License Manager
3384/tcp hp-clic Cluster Management Services
3384/udp hp-clic Hardware Management
3385/tcp qnxnetman qnxnetman
3385/udp qnxnetman qnxnetman
3386/tcp gprs-data GPRS Data
3386/udp gprs-sig GPRS SIG
3387/tcp backroomnet Back Room Net
3387/udp backroomnet Back Room Net
3388/tcp cbserver CB Server
3388/udp cbserver CB Server
3389/tcp ms-wbt-server MS WBT Server
3389/udp ms-wbt-server MS WBT Server
3390/tcp dsc Distributed Service Coordinator
3390/udp dsc Distributed Service Coordinator
3391/tcp savant SAVANT
3391/udp savant SAVANT
3392/tcp efi-lm EFI License Management
3392/udp efi-lm EFI License Management
3393/tcp d2k-tapestry1 D2K Tapestry Client to Server
3393/udp d2k-tapestry1 D2K Tapestry Client to Server
3394/tcp d2k-tapestry2 D2K Tapestry Server to Server
3394/udp d2k-tapestry2 D2K Tapestry Server to Server
3395/tcp dyna-lm Dyna License Manager (Elam)
3395/udp dyna-lm Dyna License Manager (Elam)
3396/tcp printer_agent Printer Agent
3396/udp printer_agent Printer Agent
3397/tcp cloanto-lm Cloanto License Manager
3397/udp cloanto-lm Cloanto License Manager
3398/tcp mercantile Mercantile
3398/udp mercantile Mercantile
3421/tcp bmap Bull Apprise portmapper
3421/udp bmap Bull Apprise portmapper
3454/tcp mira Apple Remote Access Protocol
3455/tcp prsvp RSVP Port
3455/udp prsvp RSVP Port
3456/tcp vat VAT default data
3456/udp vat VAT default data
3457/tcp vat-control VAT default control
3457/udp vat-control VAT default control
3458/tcp d3winosfi D3WinOsfi
3458/udp d3winosfi DsWinOSFI
3459/tcp integral Integral
3459/udp integral Integral
3460/tcp edm-manager EDM Manger
3460/udp edm-manager EDM Manger
3461/tcp edm-stager EDM Stager
3461/udp edm-stager EDM Stager
3462/tcp edm-std-notify EDM STD Notify
3462/udp edm-std-notify EDM STD Notify
3463/tcp edm-adm-notify EDM ADM Notify
3463/udp edm-adm-notify EDM ADM Notify
3464/tcp edm-mgr-sync EDM MGR Sync
3464/udp edm-mgr-sync EDM MGR Sync
3465/tcp edm-mgr-cntrl EDM MGR Cntrl
3465/udp edm-mgr-cntrl EDM MGR Cntrl
3466/tcp workflow WORKFLOW
3466/udp workflow WORKFLOW
3563/tcp watcomdebug Watcom Debug
3563/udp watcomdebug Watcom Debug
3900/tcp udt_os Unidata UDT OS
3900/udp udt_os Unidata UDT OS
3984/tcp mapper-nodemgr MAPPER network node manager
3984/udp mapper-nodemgr MAPPER network node manager
3985/tcp mapper-mapethd MAPPER TCP/IP server
3985/udp mapper-mapethd MAPPER TCP/IP server
3986/tcp mapper-ws_ethd MAPPER workstation server
3986/udp mapper-ws_ethd MAPPER workstation server
3987/tcp centerline Centerline
3987/udp centerline Centerline

Shared Cache - .Net Caching made easy

All information about Shared Cache is available here: http://www.sharedcache.com/. Its free and easy to use, we provide all sources at codeplex.

Facebook Badge