Rabu, 12 Oktober 2011

Setting GAL Zimbra menggunakan microsoft office 2007

Langsung aja kita lihat snapshootnya























Disi dengan uid=erwin.prayudha,ou=People,dc=tgs-indo,dc=com
keterangan : uid=nama-user ou=Group dc=nama_domain













Minggu, 17 April 2011

Installasi VNC Server di Centos 5.5

1 Pendahuluan

Dokumen ini menjelaskan cara menginstal layanan VNC di Server Centos 5 dengan X.

2 Instalasi Paket VNC

yum install vnc-server

3 Konfigurasi Desktop Sesi Persistent

Membuat entri di /etc/sysconfig/vncservers untuk setiap account pengguna yang Anda ingin memberikan akses VNC, misalnya

VNCSERVERS = "1: root 2: sysadmin"
VNCSERVERARGS [1] = "-geometry 1024x768"
VNCSERVERARGS [2] = "-geometry 1024x768"

4 Set Password VNC

Jalankan untuk beralih kepengguna untuk setiap account dan mengatur password VNC

su -
vncpasswd
keluar

5 Konfigurasi Startup Layanan

chkconfig vncserver on
service vncserver start

6 Mengkonfigurasi Windows Manager

Secara default twm Windows Manager digunakan dalam sesi VNC. Untuk memulai standar Windows Manager tanda komentar dua baris dalam $ HOME / .vnc / xstartup

unset SESSION_MANAGER
exec / etc/X11/xinit/xinitrc

Restart Layanan VNC

service vncserver restart

7 Pengujian

Jalankan VNC Viewer, misalnya pada PC Windows dan terhubung ke server. Tambahkan nomor tampilan dengan nama host dipisahkan oleh titik dua. Misalnya dalam sampel ini config

192.168.1.100:2

menghubungkan pada layar: 2 sebagai user sysadmin.

Jumat, 08 April 2011

Openldap dengan Server Centos 5.5 dan Client Fedora 14

Setting System Linux dengan LDAP Server Centos 5.5
===================================================

A. Instalasi LDAP
-----------------
Paket-paket yang harus diinstall untuk LDAP adalah openldap-server openldap-clients nss_ldap.
Caranya :
# yum install openldap-servers openldap-clients nss_ldap

B. Mengkonfigurasi LDAP Server
------------------------------
1. Memberikan password administrator untuk openldap server.
# slappasswd
New password:
Re-enter new password:
{SSHA}ntokc0c+JJwxXWqoAI17EqX7UvNMzXQd
2. Edit file /etc/openldap/slapd.conf.
# vim /etc/openldap/slapd.conf
Ubah pada :
suffix "dc=tunas,dc=com"
rootdn "cn=Manager,dc=tunas,dc=com"
rootpw "{SSHA}ntokc0c+JJwxXWqoAI17EqX7UvNMzXQd"
3. Restart openldap-server anda.
# service ldap restart

C. Menambahkan nilai ke dalam LDAP Server
-----------------------------------------
1. Ubahlah konfigurasi default migrasi pada
/usr/share/openldap/migration/migrate_common.ph
# vim /usr/share/openldap/migration/migrate_common.ph
ubah pada :
-------------------------------------------
# Default DNS domain
$DEFAULT_MAIL_DOMAIN = "tunas.com";

# Default base
$DEFAULT_BASE = "dc=tunas,dc=com";
-------------------------------------------
2. Buatlah file ldif, untuk dimasukkan
# /usr/share/openldap/migration/migrate_base.pl > root.ldif
# vim root.ldif
Hapus baris yang tidak diperlukan hingga menjadi :
dn: dc=tunas,dc=com
dc: tunas
objectClass: top
objectClass: domain

dn: ou=People,dc=tunas,dc=com
ou: People
objectClass: top
objectClass: organizationalUnit

dn: ou=Group,dc=tunas,dc=com
ou: Group
objectClass: top
objectClass: organizationalUnit

3. Masukkan root.ldif ke dalam LDAP
# ldapadd -x -D "cn=Manager,dc=tunas,dc=com" -f root.ldif -W
4. Memigrasi user dan password di system ke dalam LDAP
# /usr/share/openldap/migration/migrate_passwd.pl /etc/passwd user.ldif
5. Masukkan user.ldif ke dalam LDAP
# ldapadd -x -D "cn=Manager,dc=tunas,dc=com" -f user.ldif -W
6. Memigrasi group dan password di system ke dalam LDAP
# /usr/share/openldap/migration/migrate_group.pl /etc/group group.ldif
7. Masukan group.ldif ke dalam LDAP
# ldapadd -x -D "cn=Manager,dc=tunas,dc=com" -f group.ldif -W

D. Mengatur autentikasi Sistem menggunakan LDAP Client Fedora 14
---------------------------------------------

1. Install tools ldap client
[root@www03 ~]# yum -y install openldap-clients nss_ldap

2. Jalankan perintah :
# setup
+--------[ Choose a Tool ]---------+
| |
| Authentication configuration |
| Firewall configuration |
| Keyboard configuration |
| Network configuration |
| System services |
| Timezone configuration |
| X configuration |
| |
| +----------+ +------+ |
| | Run Tool | | Quit | |
| +----------+ +------+ |
| |
| |
+----------------------------------+
Pilih : Authentication configuration
+----------------[ Authentication Configuration ]-----------------+
| |
| User Information Authentication |
| [ ] Cache Information [*] Use MD5 Passwords |
| [ ] Use Hesiod [*] Use Shadow Passwords |
| [*] Use LDAP [*] Use LDAP Authentication |
| [ ] Use NIS [ ] Use Kerberos |
| [ ] Use Winbind [ ] Use SMB Authentication |
| [ ] Use Winbind Authentication |
| [ ] Local authorization is sufficient |
| |
| +--------+ +------+ |
| | Cancel | | Next | |
| +--------+ +------+ |
| |
| |
+-----------------------------------------------------------------+
Berikan bintang "*" seperti contoh di atas, kemudian klik Next.
+-----------------[ LDAP Settings ]-----------------+
| |
| [ ] Use TLS |
| Server: ldap://192.168.1.1/_______________________ |
| Base DN: dc=tunas,dc=com________________________ |
| |
| +------+ +----+ |
| | Back | | Ok | |
| +------+ +----+ |
| |
| |
+---------------------------------------------------+
Masukkan server di 127.0.0.1 dan Base DN : dc=pctoto, dc=com

3. Edit file ldap.conf dan pastikan sudah terdapat comment berikut:
[root@www03 ~]# vi /etc/openldap/ldap.conf
URI ldap://192.168.1.1/
BASE dc=tunas,dc=com
TLS_CACERTDIR /etc/openldap/cacerts

4. Edit file nss_ldap dan pastikan sudah terdapat comment berikut:
[root@www03 ~]# vi /etc/nss_ldap.conf
base dc=tunas,dc=com
uri ldap://192.168.1.1/
ssl no
tls_cacertdir /etc/openldap/cacerts

5. Edit file pam_ldap.conf dan pastikan sudah terdapat comment berikut:
[root@www03 ~]# vi /etc/pam_ldap.conf
base dc=tunas,dc=com
uri ldap://192.168.1.1/
ssl no
tls_cacertdir /etc/openldap/cacerts

6. Edit file system-auth dan pastikan sudah terdapat comment berikut:
[root@www03 ~]# vi /etc/pam.d/system-auth
auth required pam_env.so
auth sufficient pam_fprintd.so
auth sufficient pam_unix.so nullok try_first_pass
auth requisite pam_succeed_if.so uid >= 500 quiet
auth sufficient pam_ldap.so use_first_pass
auth required pam_deny.so

account required pam_unix.so
account sufficient pam_localuser.so
account sufficient pam_succeed_if.so uid < 500 quiet
account [default=bad success=ok user_unknown=ignore] pam_ldap.so
account required pam_permit.so

password requisite pam_cracklib.so try_first_pass retry=3 type=
password sufficient pam_unix.so sha512 shadow nullok try_first_pass use_authtok
password sufficient pam_ldap.so use_authtok
password required pam_deny.so

session optional pam_keyinit.so revoke
session required pam_limits.so
session [success=1 default=ignore] pam_succeed_if.so service in crond quiet use_uid
session required pam_unix.so
session optional pam_ldap.so

# Masukkan comment ini apabila ingin membuat home folder otomatis

session optional pam_mkhomedir.so skel=/etc/skel umask=077

7. Edit file nsswitch.conf dan pastikan terdapat comment berikut ini:
[root@www03 ~]# vi /etc/nsswitch.conf
passwd: files ldap
shadow: files ldap
group: files ldap
netgroup: nisplus ldap

8. Setelah itu restart operating system:
[root@www03 ~]# shutdown -r now


E. Autentikasi Squid dengan LDAP
--------------------------------
1. Edit paramater authentication pada Squid
# vim /etc/squid/squid.conf
-----------------------------------------------
auth_param basic program /usr/lib/squid/squid_ldap_auth -b dc=tunas,dc=com -f "cn=%s" -s sub -h localhost
auth_param basic children 5
auth_param basic realm Login dulu yach
auth_param basic credentialsttl 2 hours
auth_param basic casesensitive off

acl proxy_user proxy_auth REQUIRED
acl lan src 192.168.1.0/24
http_access allow lan proxy_user
http_access deny all
-----------------------------------------------

2. Restart service squid
# service squid restart

3. Atur client agar menggunakan proxy Anda.

Jumat, 04 Maret 2011

Setting IP Address di UBUNTU

Pada intinya, setting network pada debian ditentukan oleh beberapa file yaitu:

1. /etc/network/interfaces.
2. /etc/network/options.

/etc/network/interfaces

File ini memuat konfigurasi IP yang akan digunakan oleh Network Interface yang terpasang pada suatu komputer. Selain alamat IP, file ini juga menyimpan informasi tentang routing. Di bawah ini adalah salah satu contoh isi file /etc/network/intefaces:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.30.10
network 192.168.30.0
netmask 255.255.255.0
broadcast 192.168.30.255
gateway 192.168.30.11

Kata auto yang mendahului nama suatu interface menandakan bahwa interface tersebut akan dinyalakan secara otomatis pada saat booting. Interface lo tidak memiliki konfigurasi IP karena lo digunakan sebagai loopback sehingga memiliki IP yang pasti yakni 127.0.0.1. Alamat IP ini digunakan oleh komputer untuk berkomunikasi dengan dirinya sendiri.
Konfigurasi untuk eth0 harus diberikan karena interface ini dikonfigurasi menggunakan IP statis. Parameter-parameter yang harus disebutkan untuk jenis interface static adalah:

1. address: menentukan IP address yang digunakan suatu komputer.
2. network: menentukan Network Address komputer.
3. netmask: menentukan subnet mask network komputer.
4. broadcast: menentukan alamat broadcast yang digunakan komputer untuk memperkenalkan diri pada jaringan.
5. gateway: menentukan default gateway yang digunakan apabila komputer tersebut mengirimkan paket data ke luar jaringan anggotanya.

Setelah selesai melakukan perubahan pada file ini anda dapat mengaktifkan setting ini dengan menjalankan perintah:

debian:~# /etc/init.d/networking start

Untuk memeriksa apakah setting ini sudah benar, ketikkan ifconfig di terminal dan jika muncul :

eth0 Link encap:Ethernet HWaddr 00:10:83:01:18:41
inet addr:192.168.30.10 Bcast:192.168.30.255 Mask:255.255.255.0
inet6 addr: fe80::210:83ff:fe01:1841/64 Scope:Link
UP BROADCAST RUNNING PROMISC MULTICAST MTU:1500 Metric:1
RX packets:116392026 errors:0 dropped:0 overruns:0 frame:0
TX packets:172631398 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1681468257 (1.5 GiB) TX bytes:3669393927 (3.4 GiB)
Interrupt:9 Base address:0xece0
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0….

settingan dah bener! test coba ping ke kompie sebelah..

/etc/network/options

File ini memuat beberapa pilihan yang dapat dijalankan bersamaan dengan aktifasi alamat IP pada bagian di atas. Secara default, file ini mengandung 3 baris. Isi file ini kurang lebih seperti di bawah ini.

ip_forward=no
spoofprotect=yes
syncookies=no

Baris pertama menunjukkan bahwa komputer ini tidak digunakan untuk memforward paket data yang diterimanya ke komputer lain. ip_forward harus diset yes bila memang komputer ini dibangun untuk bertindak sebagai router atau bridge. Baris kedua menunjukkan bahwa perlindungan ipspoof aktif. Ada baiknya pilihan ini selalu yes untuk menghindari terjadinya spoofing alamat IP kita oleh orang lain. Baris ketiga menyatakan bahwa syncookies tidak diaktifkan. Pilihan ini bertujuan untuk membatasi jumlah usaha membuat koneksi baru dari komputer lain ke komputer kita. Bila komputer kita menerima semua request secara serentak dengan jumlah banyak, besar kemungkinan bahwa komputer kita akan hang dalam waktu singkat.

Selasa, 01 Maret 2011

Daftar Port Aplikasi








































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































PortTCPUDPDescriptionStatus
0UDPReservedOfficial
1TCPUDPTCP Port Service Multiplexer (TCPMUX)Official
2TCPUDPCompressNET[2] Management Utility[3]Official
3TCPUDPCompressNET[2] Compression Process[4]Official
4TCPUDPUnassignedOfficial
5TCPUDPRemote Job EntryOfficial
6TCPUDPUnassignedOfficial
7TCPUDPEcho ProtocolOfficial
8TCPUDPUnassignedOfficial
9TCPUDPDiscard ProtocolOfficial
10TCPUDPUnassignedOfficial
11TCPUDPActive Users (systat service[5])Official
12TCPUDPUnassignedOfficial
13TCPUDPDaytime Protocol (RFC 867)Official
14TCPUDPUnassignedOfficial
15TCPUDPnetstat service[5]Unofficial
16TCPUDPUnassignedOfficial
17TCPUDPQuote of the DayOfficial
18TCPUDPMessage Send ProtocolOfficial
19TCPUDPCharacter Generator Protocol (CHARGEN)Official
20TCPFTP—data transferOfficial
21TCPFTP—control (command)Official
22TCPUDPSecure Shell (SSH)—used for secure logins, file transfers (scp, sftp) and port forwardingOfficial
23TCPTelnet protocol—unencrypted text communicationsOfficial
24TCPUDPPriv-mail : any private mail system.Official
25TCPSimple Mail Transfer Protocol (SMTP)—used for e-mail routing between mail serversOfficial
34TCPUDPRemote File (RF)—used to transfer files between machinesUnofficial
35TCPUDPAny private printer server protocolOfficial
37TCPUDPTIME protocolOfficial
39TCPUDPResource Location Protocol[6] (RLP)—used for determining the location of higher level services from hosts on a networkOfficial
41TCPUDPGraphicsOfficial
42TCPUDPnameserver, ARPA Host Name Server ProtocolOfficial
42TCPUDPWINSUnofficial
43TCPWHOIS protocolOfficial
47TCPUDPNI FTP[6]Official
49TCPUDPTACACS Login Host protocolOfficial
50TCPUDPRemote Mail Checking Protocol[7]Official
51TCPUDPIMP Logical Address MaintenanceOfficial
52TCPUDPXNS (Xerox Network Systems) Time ProtocolOfficial
53TCPUDPDomain Name System (DNS)Official
54TCPUDPXNS (Xerox Network Systems) ClearinghouseOfficial
55TCPUDPISI Graphics Language (ISI-GL)Official
56TCPUDPXNS (Xerox Network Systems) AuthenticationOfficial
56TCPUDPRoute Access Protocol (RAP)[8]Unofficial
57TCPMail Transfer Protocol (MTP)Unofficial
58TCPUDPXNS (Xerox Network Systems) MailOfficial
67UDPBootstrap Protocol (BOOTP) Server; also used by Dynamic Host Configuration Protocol (DHCP)Official
68UDPBootstrap Protocol (BOOTP) Client; also used by Dynamic Host Configuration Protocol (DHCP)Official
69UDPTrivial File Transfer Protocol (TFTP)Official
70TCPGopher protocolOfficial
79TCPFinger protocolOfficial
80TCPUDPHypertext Transfer Protocol (HTTP)Official
81TCPTorparkOnion routingUnofficial
82UDPTorpark—ControlUnofficial
83TCPMIT ML DeviceOfficial
88TCPUDPKerberos—authentication systemOfficial
90TCPUDPdnsix (DoD Network Security for Information Exchange) Securit Attribute Token MapOfficial
90TCPUDPPointcastUnofficial
99TCPWIP Message ProtocolUnofficial
101TCPNIC host nameOfficial
102TCPISO-TSAP (Transport Service Access Point) Class 0 protocol[9]Official
104TCPUDPACR/NEMA Digital Imaging and Communications in MedicineOfficial
105TCPUDPCCSO Nameserver Protocol (Qi/Ph)Official
107TCPRemote TELNET Service[10] protocolOfficial
108TCPUDPSNA Gateway Access Server [11]Official
109TCPPost Office Protocol v2 (POP2)Official
110TCPPost Office Protocol v3 (POP3)Official
111TCPUDPONC RPC (SunRPC)Official
113TCPident—Identification Protocol,[12] used by IRC servers to identify usersUnofficial
113TCPAuthentication Service[12] (auth)Official
113UDPAuthentication Service[12] (auth)Official
115TCPSimple File Transfer Protocol (SFTP)Official
117TCPUUCP Path ServiceOfficial
118TCPUDPSQL (Structured Query Language) ServicesOfficial
119TCPNetwork News Transfer Protocol (NNTP)—retrieval of newsgroup messagesOfficial
123UDPNetwork Time Protocol (NTP)—used for time synchronizationOfficial
135TCPUDPDCE endpoint resolutionOfficial
135TCPUDPMicrosoft EPMAP (End Point Mapper), also known as DCE/RPC Locator service,[13] used to remotely manage services including DHCP server, DNS server and WINS. Also used by DCOMUnofficial
137TCPUDPNetBIOS NetBIOS Name ServiceOfficial
138TCPUDPNetBIOS NetBIOS Datagram ServiceOfficial
139TCPUDPNetBIOS NetBIOS Session ServiceOfficial
143TCPUDPInternet Message Access Protocol (IMAP)—management of email messagesOfficial
152TCPUDPBackground File Transfer Program (BFTP)[14]Official
153TCPUDPSGMP, Simple Gateway Monitoring ProtocolOfficial
156TCPUDPSQL ServiceOfficial
158TCPUDPDMSP, Distributed Mail Service ProtocolUnofficial
161UDPSimple Network Management Protocol (SNMP)Official
162TCPUDPSimple Network Management Protocol Trap (SNMPTRAP)[15]Official
170TCPPrint-srv, Network PostScriptOfficial
177TCPUDPX Display Manager Control Protocol (XDMCP)Official
179TCPBGP (Border Gateway Protocol)Official
194TCPUDPInternet Relay Chat (IRC)Official
199TCPUDPSMUX, SNMP Unix MultiplexerOfficial
201TCPUDPAppleTalk Routing MaintenanceOfficial
209TCPUDPThe Quick Mail Transfer ProtocolOfficial
210TCPUDPANSI Z39.50Official
213TCPUDPInternetwork Packet Exchange (IPX)Official
218TCPUDPMessage posting protocol (MPP)Official
220TCPUDPInternet Message Access Protocol (IMAP), version 3Official
256TCPUDP2DEV "2SP" PortUnofficial
259TCPUDPESRO, Efficient Short Remote OperationsOfficial
264TCPUDPBGMP, Border Gateway Multicast ProtocolOfficial
308TCPNovastor Online BackupOfficial
311TCPMac OS X Server Admin (officially AppleShare IP Web administration)Official
318TCPUDPPKIX TSP, Time Stamp ProtocolOfficial
319UDPPrecision time protocol event messagesOfficial
320UDPPrecision time protocol general messagesOfficial
323TCPUDPIMMP, Internet Message Mapping ProtocolUnofficial
350TCPUDPMATIP-Type A, Mapping of Airline Traffic over Internet ProtocolOfficial
351TCPUDPMATIP-Type B, Mapping of Airline Traffic over Internet ProtocolOfficial
366TCPUDPODMR, On-Demand Mail RelayOfficial
369TCPUDPRpc2portmapOfficial
370TCPcodaauth2—Coda authentication serverOfficial
370UDPcodaauth2—Coda authentication serverOfficial
370UDPsecurecast1—Outgoing packets to NAI's servers [16][dead link]Unofficial
371TCPUDPClearCase albdOfficial
383TCPUDPHP data alarm managerOfficial
384TCPUDPA Remote Network Server SystemOfficial
387TCPUDPAURP, AppleTalk Update-based Routing Protocol[17]Official
389TCPUDPLightweight Directory Access Protocol (LDAP)Official
401TCPUDPUPS Uninterruptible Power SupplyOfficial
402TCPAltiris, Altiris Deployment ClientUnofficial
411TCPDirect Connect HubUnofficial
412TCPDirect Connect Client-to-ClientUnofficial
427TCPUDPService Location Protocol (SLP)Official
443TCPHTTPS (Hypertext Transfer Protocol over SSL/TLS)Official
444TCPUDPSNPP, Simple Network Paging Protocol (RFC 1568)Official
445TCPMicrosoft-DS Active Directory, Windows sharesOfficial
445TCPMicrosoft-DS SMB file sharingOfficial
464TCPUDPKerberos Change/Set passwordOfficial
465TCPCisco protocolUnofficial
465TCPSMTP over SSLUnofficial
475TCPUDPtcpnethaspsrv (Aladdin Knowledge Systems Hasp services, TCP/IP version)Official
497TCPDantz RetrospectOfficial
500UDPInternet Security Association and Key Management Protocol (ISAKMP)Official
501TCPSTMF, Simple Transportation Management Framework—DOT NTCIP 1101Unofficial
502TCPUDPasa-appl-proto, ProtocolUnofficial
502TCPUDPModbus, ProtocolUnofficial
504TCPUDPCitadel—multiservice protocol for dedicated clients for the Citadel groupware systemOfficial
510TCPFirst Class ProtocolUnofficial
512TCPRexec, Remote Process ExecutionOfficial
512UDPcomsat, together with biffOfficial
513TCPrloginOfficial
513UDPWhoOfficial
514TCPShell—used to execute non-interactive commands on a remote system (Remote Shell, rsh, remsh)Official
514UDPSyslog—used for system loggingOfficial
515TCPLine Printer Daemon—print serviceOfficial
517UDPTalkOfficial
518UDPNTalkOfficial
520TCPefs, extended file name serverOfficial
520UDPRouting Information Protocol (RIP)Official
524TCPUDPNetWare Core Protocol (NCP) is used for a variety things such as access to primary NetWare server resources, Time Synchronization, etc.Official
525UDPTimed, TimeserverOfficial
530TCPUDPRPCOfficial
531TCPUDPAOL Instant Messenger, IRCUnofficial
532TCPnetnewsOfficial
533UDPnetwall, For Emergency BroadcastsOfficial
540TCPUUCP (Unix-to-Unix Copy Protocol)Official
542TCPUDPcommerce (Commerce Applications)Official
543TCPklogin, Kerberos loginOfficial
544TCPkshell, Kerberos Remote shellOfficial
545TCPOSIsoft PI (VMS), OSISoft PI Server Client AccessUnofficial
546TCPUDPDHCPv6 clientOfficial
547TCPUDPDHCPv6 serverOfficial
548TCPApple Filing Protocol (AFP) over TCPOfficial
550UDPnew-rwho, new-whoOfficial
554TCPUDPReal Time Streaming Protocol (RTSP)Official
556TCPRemotefs, RFS, rfs_serverOfficial
560UDPrmonitor, Remote MonitorOfficial
561UDPmonitorOfficial
563TCPUDPNNTP protocol over TLS/SSL (NNTPS)Official
587TCPe-mail message submission[18] (SMTP)Official
591TCPFileMaker 6.0 (and later) Web Sharing (HTTP Alternate, also see port 80)Official
593TCPUDPHTTP RPC Ep Map, Remote procedure call over Hypertext Transfer Protocol, often used by Distributed Component Object Model services and Microsoft Exchange ServerOfficial
604TCPTUNNEL profile,[19] a protocol for BEEP peers to form an application layer tunnelOfficial
623UDPASF Remote Management and Control Protocol (ASF-RMCP)Official
631TCPUDPInternet Printing Protocol (IPP)Official
631TCPUDPCommon Unix Printing System (CUPS)Unofficial
635TCPUDPRLZ DBaseOfficial
636TCPUDPLightweight Directory Access Protocol over TLS/SSL (LDAPS)Official
639TCPUDPMSDP, Multicast Source Discovery ProtocolOfficial
641TCPUDPSupportSoft Nexus Remote Command (control/listening): A proxy gateway connecting remote control trafficOfficial
646TCPUDPLDP, Label Distribution Protocol, a routing protocol used in MPLS networksOfficial
647TCPDHCP Failover protocol[20]Official
648TCPRRP (Registry Registrar Protocol)[21]Official
651TCPUDPIEEE-MMSOfficial
652TCPDTCP, Dynamic Tunnel Configuration ProtocolUnofficial
653TCPUDPSupportSoft Nexus Remote Command (data): A proxy gateway connecting remote control trafficOfficial
654TCPMedia Management System (MMS) Media Management Protocol (MMP)[22]Official
657TCPUDPIBM RMC (Remote monitoring and Control) protocol, used by System p5 AIX Integrated Virtualization Manager (IVM)[23] and Hardware Management Console to connect managed logical partitions (LPAR) to enable dynamic partition reconfigurationOfficial
660TCPMac OS X Server administrationOfficial
665TCPsun-dr, Remote Dynamic ReconfigurationUnofficial
666UDPDoom, first online first-person shooterOfficial
674TCPACAP (Application Configuration Access Protocol)Official
691TCPMS Exchange RoutingOfficial
692TCPHyperwave-ISPOfficial
694TCPUDPLinux-HA High availability HeartbeatOfficial
695TCPIEEE-MMS-SSL (IEEE Media Management System over SSL)[24]Official
698UDPOLSR (Optimized Link State Routing)Official
699TCPAccess NetworkOfficial
700TCPEPP (Extensible Provisioning Protocol), a protocol for communication between domain name registries and registrars (RFC 5734)Official
701TCPLMP (Link Management Protocol (Internet)),[25] a protocol that runs between a pair of nodes and is used to manage traffic engineering (TE) linksOfficial
702TCPIRIS[26][27] (Internet Registry Information Service) over BEEP (Blocks Extensible Exchange Protocol)[28] (RFC 3983)Official
706TCPSecure Internet Live Conferencing (SILC)Official
711TCPCisco Tag Distribution Protocol[29][30][31]—being replaced by the MPLS Label Distribution Protocol[32]Official
712TCPTopology Broadcast based on Reverse-Path Forwarding routing protocol (TBRPF) (RFC 3684)Official
712UDPPromise RAID ControllerUnofficial
720TCPSMQP, Simple Message Queue ProtocolUnofficial
749TCPUDPKerberos (protocol) administrationOfficial
750TCPrfileOfficial
750UDPloadavOfficial
750UDPkerberos-iv, Kerberos version IVOfficial
751TCPUDPpumpOfficial
751TCPUDPkerberos_master, Kerberos authenticationUnofficial
752TCPqrhOfficial
752UDPqrhOfficial
752UDPpasswd_server, Kerberos Password (kpasswd) serverUnofficial
753TCPReverse Routing Header (rrh)[33]Official
753UDPReverse Routing Header (rrh)Official
753UDPuserreg_server, Kerberos userreg serverUnofficial
754TCPtell sendOfficial
754TCPkrb5_prop, Kerberos v5 slave propagationUnofficial
754UDPtell sendOfficial
760TCPUDPnsOfficial
760TCPUDPkrbupdate [kreg], Kerberos registrationUnofficial
782TCPConserver serial-console management serverUnofficial
783TCPSpamAssassin spamd daemonUnofficial
829TCPCMP (Certificate Management Protocol)Unofficial
843TCPAdobe Flash socket policy serverUnofficial
847TCPDHCP Failover protocolOfficial
860TCPiSCSI (RFC 3720)Official
873TCPrsync file synchronisation protocolOfficial USA only
888TCPcddbp, CD DataBase (CDDB) protocol (CDDBP)—unassigned but widespread useUnofficial
901TCPSamba Web Administration Tool (SWAT)Unofficial
901TCPVMware Virtual Infrastructure Client (UDP from server being managed to management console)Unofficial
901UDPVMware Virtual Infrastructure Client (UDP from server being managed to management console)Unofficial
902TCPideafarm-door 902/tcp self documenting Door: send 0x00 for infoOfficial
902TCPVMware Server Console (TCP from management console to server being Managed)Unofficial
902UDPideafarm-doorOfficial
902UDPVMware Server Console (UDP from server being managed to management console)Unofficial
903TCPVMware Remote Console [34]Unofficial
904TCPVMware Server Alternate (if 902 is in use, i.e. SUSE linux)Unofficial
911TCPNetwork Console on Acid (NCA)—local tty redirection over OpenSSHUnofficial
953TCPUDPDomain Name System (DNS) RNDC ServiceUnofficial
981TCPSofaWare Technologies Remote HTTPS management for firewall devices running embedded Check Point FireWall-1 softwareUnofficial
989TCPUDPFTPS Protocol (data): FTP over TLS/SSLOfficial
990TCPUDPFTPS Protocol (control): FTP over TLS/SSLOfficial
991TCPUDPNAS (Netnews Administration System)Official
992TCPUDPTELNET protocol over TLS/SSLOfficial
993TCPInternet Message Access Protocol over SSL (IMAPS)Official
995TCPPost Office Protocol 3 over TLS/SSL (POP3S)Official
999TCPScimoreDB Database SystemUnofficial
1001TCPJtoMBUnofficial
1002TCPOpsware agent (aka cogbot)Unofficial
1023TCPUDPReserved[1]Official

[edit] Registered ports: 1024–49151



The range of port number from 1024 to 49151 are the registered ports. They are assigned by IANA for specific service upon application by a requesting entity.[1] On most systems registered ports can be used by ordinary users.




























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































PortTCPUDPDescriptionStatus
1024TCPUDPReserved[1]Official
1025TCPNFS or IIS or TeradataUnofficial
1026TCPOften used by Microsoft DCOM servicesUnofficial
1029TCPOften used by Microsoft DCOM servicesUnofficial
1058TCPUDPnim, IBM AIX Network Installation Manager (NIM)Official
1059TCPUDPnimreg, IBM AIX Network Installation Manager (NIM)Official
1080TCPSOCKS proxyOfficial
1085TCPUDPWebObjectsOfficial
1098TCPUDPrmiactivation, RMI ActivationOfficial
1099TCPUDPrmiregistry, RMI RegistryOfficial
1109UDPReserved[1]Official
1109TCPReserved[1]Official
1109TCPKerberos Post Office Protocol (KPOP)Unofficial
1110UDPEasyBits School network discovery protocol (for Intel's CMPC platform)Unofficial
1140TCPUDPAutoNOC protocolOfficial
1167UDPphone, conference callingUnofficial
1169TCPUDPTripwireOfficial
1176TCPPerceptive Automation Indigo Home automation serverOfficial
1182TCPUDPAcceleNet Intelligent Transfer ProtocolOfficial
1194TCPUDPOpenVPNOfficial
1198TCPUDPThe cajo project Free dynamic transparent distributed computing in JavaOfficial
1200TCPscol, protocol used by SCOL 3D virtual worlds server to answer world name resolution client request[35]Official
1200UDPscol, protocol used by SCOL 3D virtual worlds server to answer world name resolution client requestOfficial
1200UDPSteam Friends AppletUnofficial
1214TCPKazaaOfficial
1217TCPUvora OnlineUnofficial
1220TCPQuickTime Streaming Server administrationOfficial
1223TCPUDPTGP, TrulyGlobal Protocol, also known as "The Gur Protocol" (named for Gur Kimchi of TrulyGlobal)Official
1234UDPVLC media player Default port for UDP/RTP streamUnofficial
1236TCPSymantec BindView Control UNIX Default port for TCP management server connectionsUnofficial
1241TCPUDPNessus Security ScannerOfficial
1270TCPUDPMicrosoft System Center Operations Manager (SCOM) (formerly Microsoft Operations Manager (MOM)) agentOfficial
1293TCPUDPIPSec (Internet Protocol Security)Official
1301TCPPalmer Performance OBDNetUnofficial
1309TCPAltera Quartus jtagdUnofficial
1311TCPDell OpenManage HTTPSOfficial
1313TCPXbiim (Canvii server)Unofficial
1319TCPAMX ICSPOfficial
1319UDPAMX ICSPOfficial
1337UDPMen and Mice DNSOfficial
1337TCPMen and Mice DNSOfficial
1337TCPPowerFolder P2P Encrypted File Synchronization ProgramUnofficial
1337TCPWASTE Encrypted File Sharing ProgramUnofficial
1337TCPNiax's Minecraft ServerUnofficial
1352TCPIBM Lotus Notes/Domino[36] (RPC) protocolOfficial
1387TCPUDPcadsi-lm, LMS International (formerly Computer Aided Design Software, Inc. (CADSI)) LMOfficial
1414TCPIBM WebSphere MQ (formerly known as MQSeries)Official
1417TCPUDPTimbuktu Service 1 PortOfficial
1418TCPUDPTimbuktu Service 2 PortOfficial
1419TCPUDPTimbuktu Service 3 PortOfficial
1420TCPUDPTimbuktu Service 4 PortOfficial
1431TCPReverse Gossip Transport Protocol (RGTP), used to access a General-purpose Reverse-Ordered Gossip Gathering System (GROGGS) bulletin board, such as that implemented on the Cambridge University's Phoenix systemOfficial
1433TCPMSSQL (Microsoft SQL Server database management system) ServerOfficial
1434TCPUDPMSSQL (Microsoft SQL Server database management system) MonitorOfficial
1470TCPSolarwinds Kiwi Log ServerOfficial
1494TCPCitrix XenApp Independent Computing Architecture (ICA) thin client protocolOfficial
1500TCPNetGuard GuardianPro firewall (NT4-based) Remote ManagementUnofficial
1501UDPNetGuard GuardianPro firewall (NT4-based) Authentication ClientUnofficial
1503TCPUDPWindows Live Messenger (Whiteboard and Application Sharing)Unofficial
1512TCPUDPMicrosoft Windows Internet Name Service (WINS)Official
1513TCPUDPGarena Garena Gaming ClientOfficial
1521TCPnCube License ManagerOfficial
1521TCPOracle database default listener, in future releases official port 2483Unofficial
1524TCPUDPingreslock, ingresOfficial
1526TCPOracle database common alternative for listenerUnofficial
1533TCPIBM Sametime IM—Virtual Places Chat Microsoft SQL ServerOfficial
1547TCPUDPLaplinkOfficial
1550Gadu-Gadu (direct client-to-client)Unofficial
1581UDPMIL STD 2045-47001 VMFOfficial
1589UDPCisco VQP (VLAN Query Protocol) / VMPSUnofficial
1627iSketchUnofficial
1645TCPUDPradius auth, RADIUS authentication protocol (default for Cisco and Juniper Networks RADIUS servers)Unofficial
1646TCPUDPradius acct, RADIUS authentication protocol (default for Cisco and Juniper Networks RADIUS servers)Unofficial
1666TCPPerforceUnofficial
1677TCPUDPNovell GroupWise clients in client/server access modeOfficial
1701UDPLayer 2 Forwarding Protocol (L2F) & Layer 2 Tunneling Protocol (L2TP)Official
1707TCPRomtoc Packet Protocol (L2F) & Layer 2 Tunneling Protocol (L2TP)Unofficial
1716TCPAmerica's Army Massively multiplayer online game (MMO)Unofficial
1719UDPH.323 Registration and alternate communicationOfficial
1720TCPH.323 Call signallingOfficial
1723TCPUDPMicrosoft Point-to-Point Tunneling Protocol (PPTP)Official
1725UDPValve Steam ClientUnofficial
1755TCPUDPMicrosoft Media Services (MMS, ms-streaming)Official
1761UDPcft-0Official
1761TCPcft-0Official
1761TCPNovell Zenworks Remote Control utilityUnofficial
1762–1768TCPUDPcft-1 to cft-7Official
1801TCPUDPMicrosoft Message QueuingOfficial
1812TCPUDPradius, RADIUS authentication protocolOfficial
1813TCPUDPradacct, RADIUS accounting protocolOfficial
1863TCPMSNP (Microsoft Notification Protocol), used by the .NET Messenger Service and a number of Instant Messaging clientsOfficial
1883TCPUDPMQ Telemetry Transport (MQTT), formerly known as MQIsdp (MQSeries SCADA protocol)Official
1886TCPLeonardo over IP Pro2col LtdUnofficial
1900UDPMicrosoft SSDP Enables discovery of UPnP devicesOfficial
1920TCPIBM Tivoli Monitoring Console (https)Unofficial
1935TCPAdobe Systems Macromedia Flash Real Time Messaging Protocol (RTMP) "plain" protocolOfficial
1947TCPUDPSentinelSRM (hasplm), Aladdin HASP License ManagerOfficial
1967UDPCisco IOS IP Service Level Agreements (IP SLAs) Control ProtocolUnofficial
1970TCPUDPNetop Business Solutions Netop Remote ControlOfficial
1971TCPUDPNetop Business Solutions Netop SchoolOfficial
1972TCPUDPInterSystems CachéOfficial
1975–1977UDPCisco TCO (Documentation)Official
1984TCPBig Brother System and Network MonitorOfficial
1985UDPCisco HSRPOfficial
1994TCPUDPCisco STUN-SDLC (Serial Tunneling—Synchronous Data Link Control) protocolOfficial
1997TCPChizmo Networks Transfer ToolUnofficial
1998TCPUDPCisco X.25 over TCP (XOT) serviceOfficial
2000TCPUDPCisco SCCP (Skinny)Official
2001UDPCAPTAN Test Stand SystemUnofficial
2002TCPSecure Access Control Server (ACS) for WindowsUnofficial
2030Oracle Services for Microsoft Transaction ServerUnofficial
2031TCPUDPmobrien-chat(http://chat.mobrien.com:2031)Official
2041TCPMail.Ru Agent communication protocolUnofficial
2049UDPNetwork File SystemOfficial
2049UDPshilpOfficial
2053UDPlot105-ds-upd Lot105 DSuper UpdatesOfficial
2053TCPlot105-ds-upd Lot105 DSuper UpdatesOfficial
2053TCPknetd Kerberos de-multiplexorUnofficial
2056UDPCivilization 4 multiplayerUnofficial
2073TCPUDPDataReel DatabaseOfficial
2074TCPUDPVertel VMF SA (i.e. App.. SpeakFreely)Official
2082TCPInfowave Mobility ServerOfficial
2082TCPCPanel defaultUnofficial
2083TCPSecure Radius Service (radsec)Official
2083TCPCPanel default SSLUnofficial
2086TCPGNUnetOfficial
2086TCPWebHost Manager defaultUnofficial
2087TCPWebHost Manager default SSLUnofficial
2095TCPCPanel default Web mailUnofficial
2096TCPCPanel default SSL Web mailUnofficial
2102TCPUDPzephyr-srv Project Athena Zephyr Notification Service serverOfficial
2103TCPUDPzephyr-clt Project Athena Zephyr Notification Service serv-hm connectionOfficial
2104TCPUDPzephyr-hm Project Athena Zephyr Notification Service hostmanagerOfficial
2105TCPUDPIBM MiniPayOfficial
2105TCPUDPeklogin Kerberos encrypted remote login (rlogin)Unofficial
2105TCPUDPzephyr-hm-srv Project Athena Zephyr Notification Service hm-serv connection (should use port 2102)Unofficial
2144TCPIron Mountain LiveVault AgentUnOfficial
2145TCPIron Mountain LiveVault AgentUnOfficial
2156UDPTalari Reliable ProtocolOfficial
2161TCPAPC AgentOfficial
2181TCPUDPEForward-document transport systemOfficial
2190UDPTiVoConnect BeaconUnofficial
2200UDPTuxanci game server[37]Unofficial
2210UDPNOAAPORT Broadcast NetworkOfficial
2210TCPNOAAPORT Broadcast NetworkOfficial
2210TCPMikroTik Remote management for "The Dude"Unofficial
2211UDPEMWINOfficial
2211TCPEMWINOfficial
2211TCPMikroTik Secure management for "The Dude"Unofficial
2212UDPLeeCO POS Server ServiceOfficial
2212TCPLeeCO POS Server ServiceOfficial
2212TCPPort-A-Pour Remote WinBatchUnofficial
2219TCPUDPNetIQ NCAP ProtocolOfficial
2220TCPUDPNetIQ End2EndOfficial
2221TCPESET Anti-virus updatesUnofficial
2222TCPDirectAdmin default & ESET Remote AdministrationUnofficial
2223UDPMicrosoft Office OS X antipiracy network monitorUnofficial
2261TCPUDPCoMotion MasterOfficial
2262TCPUDPCoMotion BackupOfficial
2301TCPHP System Management Redirect to port 2381Unofficial
2302UDPArmA multiplayer (default for game)Unofficial
2302UDPHalo: Combat Evolved multiplayerUnofficial
2303UDPArmA multiplayer (default for server reporting) (default port for game +1)Unofficial
2305UDPArmA multiplayer (default for VoN) (default port for game +3)Unofficial
2369TCPDefault for BMC Software Control-M/Server—Configuration Agent, though often changed during installationOfficial
2370TCPDefault for BMC Software Control-M/Server—to allow the Control-M/Enterprise Manager to connect to the Control-M/Server, though often changed during installationOfficial
2381TCPHP Insight Manager default for Web serverUnofficial
2401TCPCVS version control systemUnofficial
2404TCPIEC 60870-5 -104, used to send electric power telecontrol messages between two systems via directly connected data circuitsOfficial
2420UDPWestell Remote AccessOfficial
2427UDPCisco MGCPOfficial
2447TCPUDPovwdb—OpenView Network Node Manager (NNM) daemonOfficial
2483TCPUDPOracle database listening for unsecure client connections to the listener, replaces port 1521Official
2484TCPUDPOracle database listening for SSL client connections to the listenerOfficial
2500TCPTHEÒSMESSENGER listening for TheòsMessenger client connectionsOfficial
2501TCPTheosNet-Admin listening for TheòsMessenger client connectionsOfficial
2518TCPUDPWillyOfficial
2525TCPSMTP alternateUnofficial
2546TCPUDPEVault—Data Protection ServicesUnofficial
2593TCPUDPRunUO—Ultima Online serverUnofficial
2598TCPnew ICA—when Session Reliability is enabled, TCP port 2598 replaces port 1494Unofficial
2599TCPSonicWALL Antispam traffic between Remote Analyzer (RA) and Control Center (CC)Unofficial
2610TCPDark AgesUnofficial
2612TCPUDPQPasa from MQSoftwareOfficial
2638TCPSybase database listenerUnofficial
2700–2800TCPKnowShowGo P2POfficial
2710TCPXBT Bittorrent TrackerUnofficial
2710UDPXBT Bittorrent Tracker experimental UDP tracker extensionUnofficial
2710TCPKnuddels.deUnofficial
2713TCPUDPRaven Trinity Broker ServiceOfficial
2714TCPUDPRaven Trinity Data MoverOfficial
2735TCPUDPNetIQ Monitor ConsoleOfficial
2809TCPcorbaloc:iiop URL, per the CORBA 3.0.3 specificationOfficial
2809TCPIBM WebSphere Application Server (WAS) Bootstrap/rmi defaultUnofficial
2809UDPcorbaloc:iiop URL, per the CORBA 3.0.3 specification.Official
2868TCPUDPNorman Proprietary Event Protocol NPEPOfficial
2944UDPMegaco Text H.248Unofficial
2945UDPMegaco Binary (ASN.1) H.248Unofficial
2947TCPgpsd GPS daemonOfficial
2948TCPUDPWAP-push Multimedia Messaging Service (MMS)Official
2949TCPUDPWAP-pushsecure Multimedia Messaging Service (MMS)Official
2967TCPSymantec AntiVirus Corporate EditionUnofficial
3000TCPMiralix License serverUnofficial
3000UDPDistributed Interactive Simulation (DIS), modifiable defaultUnofficial
3001TCPMiralix Phone MonitorUnofficial
3001TCPOpsware server (Satellite)Unofficial
3002TCPMiralix CSTAUnofficial
3003TCPMiralix GreenBox APIUnofficial
3004TCPMiralix InfoLinkUnofficial
3005TCPMiralix TimeOutUnofficial
3006TCPMiralix SMS Client ConnectorUnofficial
3007TCPMiralix OM ServerUnofficial
3008TCPMiralix ProxyUnofficial
3017TCPMiralix IVR and VoicemailUnofficial
3025TCPnetpd.orgUnofficial
3030TCPUDPNetPanzerUnofficial
3050TCPUDPgds_db (Interbase/Firebird)Official
3051TCPUDPGalaxy Server (Gateway Ticketing Systems)Official
3074TCPUDPXbox LIVE and/or Games for Windows - LIVEOfficial
3100TCPHTTP used by Tatsoft as the default listen portUnofficial
3101TCPBlackBerry Enterprise Server communication to cloudUnofficial
3128TCPHTTP used by Web caches and the default for the Squid (software)Unofficial
3128TCPHTTP used by Tatsoft as the default client connectionUnofficial
3225TCPUDPFCIP (Fiber Channel over Internet Protocol)Official
3233TCPUDPWhiskerControl research control protocolOfficial
3235TCPUDPGalaxy Network Service (Gateway Ticketing Systems)Official
3260TCPiSCSI targetOfficial
3268TCPUDPmsft-gc, Microsoft Global Catalog (LDAP service which contains data from Active Directory forests)Official
3269TCPUDPmsft-gc-ssl, Microsoft Global Catalog over SSL (similar to port 3268, LDAP over SSL)Official
3283TCPApple Remote Desktop reporting (officially Net Assistant, referring to an earlier product)Official
3299TCPSAP-Router (routing application proxy for SAP R/3)Unofficial
3300TCPUDPDebate Gopher backend database systemUnofficial
3305TCPUDPodette-ftp, Odette File Transfer Protocol (OFTP)Official
3306TCPUDPMySQL database systemOfficial
3313TCPVerisys - File Integrity Monitoring SoftwareUnofficial
3333TCPNetwork Caller ID serverUnofficial
3386TCPUDPGTP' 3GPP GSM/UMTS CDR logging protocolOfficial
3389TCPUDPMicrosoft Terminal Server (RDP) officially registered as Windows Based Terminal (WBT) - LinkOfficial
3396TCPUDPNovell NDPS Printer AgentOfficial
3412TCPUDPxmlBlasterOfficial
3455TCPUDP[RSVP] Reservation ProtocolOfficial
3423TCPXware xTrm Communication ProtocolOfficial
3424TCPXware xTrm Communication Protocol over SSLOfficial
3478TCPUDPSTUN, a protocol for NAT traversalOfficial
3483UDPSlim Devices discovery protocolOfficial
3483TCPSlim Devices SlimProto protocolOfficial
3516TCPUDPSmartcard PortOfficial
3527UDPMicrosoft Message QueuingOfficial
3532TCPUDPRaven Remote Management ControlOfficial
3533TCPUDPRaven Remote Management DataOfficial
3535TCPSMTP alternateUnofficial
3537TCPUDPni-visa-remoteUnofficial
3544UDPTeredo tunnelingOfficial
3605UDPComCam IO PortOfficial
3606TCPUDPSplitlock ServerOfficial
3632TCPdistributed compilerOfficial
3689TCPDigital Audio Access Protocol (DAAP)—used by Apple’s iTunes and AirPort ExpressOfficial
3690TCPUDPSubversion version control systemOfficial
3702TCPUDPWeb Services Dynamic Discovery (WS-Discovery), used by various components of Windows VistaOfficial
3723TCPUDPUsed by many Battle.net Blizzard games (Diablo II, Warcraft II, Warcraft III, StarCraft)Unofficial
3724UDPWorld of Warcraft Online gaming MMORPGUnofficial
3724TCPWorld of Warcraft Online gaming MMORPGUnofficial
3724TCPClub Penguin Disney online game for kidsUnofficial
3784TCPUDPVentrilo VoIP program used by VentriloUnofficial
3785UDPVentrilo VoIP program used by VentriloUnofficial
3800TCPUsed by HGG programsUnofficial
3880TCPUDPIGRSOfficial
3868TCPSCTPDiameter base protocol (RFC 3588)Official
3872TCPOracle Management Remote AgentUnofficial
3899TCPRemote AdministratorUnofficial
3900TCPudt_os, IBM UniData UDT OS[38]Official
3945TCPUDPEMCADS service, a Giritech product used by G/OnOfficial
3978TCPUDPOpenTTD game (masterserver and content service)Unofficial
3979TCPUDPOpenTTD gameUnofficial
3999TCPUDPNorman distributed scanning serviceOfficial
4000TCPUDPDiablo II gameUnofficial
4001TCPMicrosoft Ants gameUnofficial
4007TCPPrintBuzzer printer monitoring socket serverUnofficial
4018TCPUDPprotocol information and warningsOfficial
4069UDPMinger Email Address Verification Protocol[39]Official
4089TCPUDPOpenCORE Remote Control ServiceOfficial
4093TCPUDPPxPlus Client server interface ProvideXOfficial
4096TCPUDPAscom Timeplex BRE (Bridge Relay Element)Official
4100WatchGuard Authentication Applet—defaultUnofficial
4111TCPXgridOfficial
4116TCPUDPSmartcard-TLSOfficial
4125TCPMicrosoft Remote Web Workplace administrationUnofficial
4201TCPTinyMUD and various derivativesUnofficial
4226TCPUDPAleph One (game)Unofficial
4224TCPCisco Audio Session TunnelingUnofficial
4321TCPReferral Whois (RWhois) Protocol[40]Official
4323UDPLincoln Electric's ArcLink/XTUnofficial
4433-4436TCPAxence nVisionUnofficial
4500UDPIPSec NAT Traversal (RFC 3947)Official
4534UDPArmagetron Advanced default server portUnofficial
4567TCPSinatra default server port in development mode (HTTP)Unofficial
4569UDPInter-Asterisk eXchange (IAX2)Official
4610–4640TCPQualiSystems TestShell Suite ServicesUnofficial
4662UDPOrbitNet Message ServiceOfficial
4662TCPOrbitNet Message ServiceOfficial
4662TCPoften used by eMuleUnofficial
4664TCPGoogle Desktop SearchUnofficial
4672UDPeMule—often usedUnofficial
4711TCPMcAfee Web Gateway 7 - Default GUI Port HTTPUnofficial
4712TCPMcAfee Web Gateway 7 - Default GUI Port HTTPSUnofficial
4728TCPComputer Associates Desktop and Server Management (DMP)/Port Multiplexer [41]Official
4747TCPApprenticeUnofficial
4750TCPBladeLogic AgentUnofficial
4840TCPUDPOPC UA TCP Protocol for OPC Unified Architecture from OPC FoundationOfficial
4843TCPUDPOPC UA TCP Protocol over TLS/SSL for OPC Unified Architecture from OPC FoundationOfficial
4847TCPUDPWeb Fresh Communication, Quadrion Software & Odorless EntertainmentOfficial
4894TCPUDPLysKOM Protocol AOfficial
4899TCPUDPRadmin remote administration tool (program sometimes used by a Trojan horse)Official
4949TCPMunin Resource Monitoring ToolOfficial
4950TCPUDPCylon Controls UC32 Communications PortOfficial
4982TCPUDPSolar Data Log (JK client app for PV solar inverters )Unofficial
4993TCPUDPHome FTP Server web Interface Default PortUnofficial
5000TCPcommplex-mainOfficial
5000TCPUPnP—Windows network device interoperabilityUnofficial
5000TCPVTunVPN SoftwareUnofficial
5000UDPVTunVPN SoftwareUnofficial
5001TCPcommplex-linkOfficial
5001TCPSlingbox and SlingplayerUnofficial
5001TCPIperf (Tool for measuring TCP and UDP bandwidth performance)Unofficial
5001UDPIperf (Tool for measuring TCP and UDP bandwidth performance)Unofficial
5002TCPSOLICARD ARX[42]Unofficial
5003TCPUDPFileMakerOfficial
5004TCPUDP,DCCPRTP (Real-time Transport Protocol) media data (RFC 3551, RFC 4571)Official
5005TCPUDP,DCCPRTP (Real-time Transport Protocol) control protocol (RFC 3551, RFC 4571)Official
5029TCPSonic Robot Blast 2 : MultiplayerUnofficial
5031TCPUDPAVM CAPI-over-TCP (ISDN over Ethernet tunneling)Unofficial
5050TCPYahoo! MessengerUnofficial
5051TCPita-agent Symantec Intruder Alert[43]Official
5060TCPUDPSession Initiation Protocol (SIP)Official
5061TCPSession Initiation Protocol (SIP) over TLSOfficial
5070TCPBinary Floor Control Protocol (BFCP),[44] published as RFC 4582, is a protocol that allows for an additional video channel (known as the content channel) alongside the main video channel in a video-conferencing call that uses SIP. Also used for Session Initiation Protocol (SIP) preferred port for PUBLISH on SIP Trunk to Cisco Unified Presence Server (CUPS)Unofficial
5082TCPUDPQpur Communication ProtocolOfficial
5083TCPUDPQpur File ProtocolOfficial
5084TCPUDPEPCglobal Low Level Reader Protocol (LLRP)Official
5085TCPUDPEPCglobal Low Level Reader Protocol (LLRP) over TLSOfficial
5093UDPSafeNet, Inc Sentinel LM, Sentinel RMS, License Manager, Client-to-ServerOfficial
5099TCPUDPSafeNet, Inc Sentinel LM, Sentinel RMS, License Manager, Server-to-ServerOfficial
5104TCPIBM Tivoli Framework NetCOOL/Impact[45] HTTP ServiceUnofficial
5106TCPA-Talk Common connectionUnofficial
5107TCPA-Talk Remote server connectionUnofficial
5108TCPVPOP3 Mail Server WebmailUnofficial
5109TCPUDPVPOP3 Mail Server StatusUnofficial
5110TCPProRat ServerUnofficial
5121TCPNeverwinter NightsUnofficial
5150TCPUDPATMP Ascend Tunnel Management Protocol[46]Official
5150TCPUDPMalware Cerberus RATUnofficial
5151TCPESRI SDE InstanceOfficial
5151UDPESRI SDE Remote StartOfficial
5154TCPUDPBZFlagOfficial
5176TCPConsoleWorks default UI interfaceUnofficial
5190TCPICQ and AOL Instant MessengerOfficial
5222TCPExtensible Messaging and Presence Protocol (XMPP) client connection[47]Official
5223TCPExtensible Messaging and Presence Protocol (XMPP) client connection over SSLUnofficial
5246UDPControl And Provisioning of Wireless Access Points (CAPWAP) CAPWAP control)[48]Official
5247UDPControl And Provisioning of Wireless Access Points (CAPWAP) CAPWAP data[48]Official
5269TCPExtensible Messaging and Presence Protocol (XMPP) server connection[47]Official
5298TCPUDPExtensible Messaging and Presence Protocol (XMPP) JEP-0174: Link-Local Messaging / XEP-0174: Serverless MessagingOfficial
5310TCPUDPGinever.net data communication portUnofficial
5311TCPUDPGinever.net data communication portUnofficial
5312TCPUDPGinever.net data communication portUnofficial
5313TCPUDPGinever.net data communication portUnofficial
5314TCPUDPGinever.net data communication portUnofficial
5315TCPUDPGinever.net data communication portUnofficial
5351TCPUDPNAT Port Mapping Protocol—client-requested configuration for inbound connections through network address translatorsOfficial
5353UDPMulticast DNS (mDNS)Official
5355TCPUDPLLMNR—Link-Local Multicast Name Resolution, allows hosts to perform name resolution for hosts on the same local link (only provided by Windows Vista and Server 2008)Official
5357TCPUDPWeb Services for Devices (WSDAPI) (only provided by Windows Vista, Windows 7 and Server 2008)Unofficial
5358TCPUDPWSDAPI Applications to Use a Secure Channel (only provided by Windows Vista, Windows 7 and Server 2008)Unofficial
5402TCPUDPmftp, Stratacache OmniCast content delivery system MFTP file sharing protocolOfficial
5405TCPUDPNetSupport ManagerOfficial
5421TCPUDPNetSupport ManagerOfficial
5432TCPUDPPostgreSQL database systemOfficial
5433TCPBouwsoft file/webserver <http://www.bouwsoft.be>Unofficial
5445UDPCisco Unified Video AdvantageUnofficial
5450TCPOSIsoft PI Server Client AccessUnofficial
5457TCPOSIsoft PI Asset Framework Client AccessUnofficial
5458TCPOSIsoft PI Notifications Client AccessUnofficial
5495TCPApplix TM1 Admin serverUnofficial
5498TCPHotline tracker server connectionUnofficial
5499UDPHotline tracker server discoveryUnofficial
5500TCPVNC remote desktop protocol—for incoming listening viewer, Hotline control connectionUnofficial
5501TCPHotline file transfer connectionUnofficial
5517TCPSetiqueue Proxy server client for SETI@Home projectUnofficial
5550TCPHewlett-Packard Data ProtectorUnofficial
5555TCPFreeciv versions up to 2.0, Hewlett-Packard Data Protector, McAfee EndPoint Encryption Database Server, SAPUnofficial
5556TCPUDPFreecivOfficial
5591TCPDefault for Tidal Enterprise Scheduler master-Socket used for communication between Agent-to-Master, though can be changedUnofficial
5631TCPpcANYWHEREdata, Symantec pcAnywhere (version 7.52 and later[49])[50] dataOfficial
5632UDPpcANYWHEREstat, Symantec pcAnywhere (version 7.52 and later) statusOfficial
5656TCPIBM Sametime p2p file transferUnofficial
5666TCPNRPE (Nagios)Unofficial
5667TCPNSCA (Nagios)Unofficial
5678UDPMikrotik RouterOS Neighbor Discovery Protocol (MNDP)Unofficial
5721TCPUDPKaseyaUnofficial
5723TCPOperations ManagerUnofficial
5800TCPVNC remote desktop protocol—for use over HTTPUnofficial
5814TCPUDPHewlett-Packard Support Automation (HP OpenView Self-Healing Services)Official
5850TCPCOMIT SE (PCR)Unofficial
5852TCPAdeona client: communications to OpenDHTUnofficial
5900TCPUDPVirtual Network Computing (VNC) remote desktop protocol (used by Apple Remote Desktop and others)Official
5912TCPDefault for Tidal Enterprise Scheduler agent-Socket used for communication between Master-to-Agent, though can be changedUnofficial
5938TCPUDPTeamViewer[51] remote desktop protocolUnofficial
5984TCPUDPCouchDB database serverOfficial
5999TCPCVSup [52] file update toolOfficial
6000TCPX11—used between an X client and server over the networkOfficial
6001UDPX11—used between an X client and server over the networkOfficial
6005TCPDefault for BMC Software Control-M/Server—Socket used for communication between Control-M processes—though often changed during installationOfficial
6005TCPDefault for Camfrog Chat & Cam Client http://www.camfrog.comUnofficial
6050TCPBrightstor Arcserve BackupUnofficial
6050TCPNortel SoftwareUnofficial
6051TCPBrightstor Arcserve BackupUnofficial
6072TCPiOperator Protocol Signal PortUnofficial
6086TCPPDTP—FTP like file server in a P2P networkOfficial
6100TCPVizrt SystemUnofficial
6100TCPVentrilo This is the authentication port that must be allowed outbound for version 3 of VentriloOfficial
6101TCPBackup Exec Agent BrowserUnofficial
6110TCPUDPsoftcm, HP Softbench CMOfficial
6111TCPUDPspc, HP Softbench Sub-Process ControlOfficial
6112UDP"dtspcd"—a network daemon that accepts requests from clients to execute commands and launch applications remotelyOfficial
6112TCP"dtspcd"—a network daemon that accepts requests from clients to execute commands and launch applications remotelyOfficial
6112TCPBlizzard's Battle.net gaming service, ArenaNet gaming service, Relic gaming serciveUnofficial
6112TCPClub Penguin Disney online game for kidsUnofficial
6113TCPClub Penguin Disney online game for kidsUnofficial
6129TCPDameWare Remote ControlOfficial
6257UDPWinMX (see also 6699)Unofficial
6260TCPUDPplanet M.U.L.E.Unofficial
6262TCPSybase Advantage Database ServerUnofficial
6343UDPSFlow, sFlow traffic monitoringOfficial
6346TCPUDPgnutella-svc, gnutella (FrostWire, Limewire, Shareaza, etc.)Official
6347TCPUDPgnutella-rtr, Gnutella alternateOfficial
6350TCPUDPApp Discovery and Access ProtocolOfficial
6389TCPEMC CLARiiONUnofficial
6432TCPPgBouncer - A connection pooler for PostgreSQLOfficial
6444TCPUDPSun Grid Engine—Qmaster ServiceOfficial
6445TCPUDPSun Grid Engine—Execution ServiceOfficial
6502TCPUDPNetop Business Solutions - NetOp Remote ControlUnofficial
6503UDPNetop Business Solutions - NetOp SchoolUnofficial
6522TCPGobby (and other libobby-based software)Unofficial
6523TCPGobby 0.5 (and other libinfinity-based software)Unofficial
6543UDPParadigm Research & Development Jetnet[53] defaultUnofficial
6566TCPSANE (Scanner Access Now Easy)—SANE network scanner daemonUnofficial
6571Windows Live FolderShare clientUnofficial
6600TCPMusic Playing Daemon (MPD)Unofficial
6619TCPUDPodette-ftps, Odette File Transfer Protocol (OFTP) over TLS/SSLOfficial
6646UDPMcAfee Network AgentUnofficial
6660–6664TCPInternet Relay Chat (IRC)Unofficial
6665–6669TCPInternet Relay Chat (IRC)Official
6679TCPIRC SSL (Secure Internet Relay Chat)—often usedUnofficial
6697TCPIRC SSL (Secure Internet Relay Chat)—often usedUnofficial
6699TCPWinMX (see also 6257)Unofficial
6702TCPDefault for Tidal Enterprise Scheduler client-Socket used for communication between Client-to-Master, though can be changedUnofficial
6771UDPPolycom server broadcastUnofficial
6789TCPDatalogger Support Software Campbell Scientific Loggernet SoftwareUnofficial
6881–6887TCPUDPBitTorrent part of full range of ports used most oftenUnofficial
6888TCPUDPMUSEOfficial
6888TCPUDPBitTorrent part of full range of ports used most oftenUnofficial
6889–6890TCPUDPBitTorrent part of full range of ports used most oftenUnofficial
6891–6900TCPUDPBitTorrent part of full range of ports used most oftenUnofficial
6891–6900TCPUDPWindows Live Messenger (File transfer)Unofficial
6901TCPUDPWindows Live Messenger (Voice)Unofficial
6901TCPUDPBitTorrent part of full range of ports used most oftenUnofficial
6902–6968TCPUDPBitTorrent part of full range of ports used most oftenUnofficial
6969TCPUDPacmsodaOfficial
6969TCPBitTorrent trackerUnofficial
6970–6999TCPUDPBitTorrent part of full range of ports used most oftenUnofficial
7000TCPDefault for Vuze's built in HTTPS Bittorrent TrackerUnofficial
7001TCPDefault for BEA WebLogic Server's HTTP server, though often changed during installationUnofficial
7002TCPDefault for BEA WebLogic Server's HTTPS server, though often changed during installationUnofficial
7005TCPDefault for BMC Software Control-M/Server and Control-M/Agent for Agent-to-Server, though often changed during installationUnofficial
7006TCPDefault for BMC Software Control-M/Server and Control-M/Agent for Server-to-Agent, though often changed during installationUnofficial
7010TCPDefault for Cisco AON AMC (AON Management Console) [54]Unofficial
7025TCPZimbra LMTP [mailbox]—local mail deliveryUnofficial
7047TCPZimbra conversion serverUnofficial
7133TCPEnemy Territory: Quake WarsUnofficial
7144TCPPeercastUnofficial
7145TCPPeercastUnofficial
7171TCPTibiaUnofficial
7306TCPZimbra mysql [mailbox]Unofficial
7307TCPZimbra mysql [logger]Unofficial
7312UDPSibelius License ServerUnofficial
7400TCPUDPRTPS (Real Time Publish Subscribe) DDS DiscoveryOfficial
7401TCPUDPRTPS (Real Time Publish Subscribe) DDS User-TrafficOfficial
7402TCPUDPRTPS (Real Time Publish Subscribe) DDS Meta-TrafficOfficial
7547TCPUDPCPE WAN Management Protocol Technical Report 069Official
7615TCPISL Online[55] communication protocolUnofficial
7670TCPBrettspielWelt BSW Boardgame PortalUnofficial
7676TCPAqumin AlphaVision Remote Command InterfaceUnofficial
7700UDPP2P DC (RedHub)Unofficial
7777TCPiChat server file transfer proxyUnofficial
7777TCPOracle Cluster File System 2Unofficial
7777TCPWindows backdoor program tini.exe defaultUnofficial
7777TCPXivio.com Chat Server InterfaceUnofficial
7778TCPBad Trip MUDUnofficial
7777-7788UDPUnreal Tournament series default serverUnofficial
7777-7788TCPUnreal Tournament series default serverUnofficial
7787-7788TCPGFI EventsManager 7 & 8Official
7831TCPDefault used by Smartlaunch Internet Cafe Administration[56] softwareUnofficial
7880TCPUDPPowerSchool Gradebook ServerUnofficial
7915TCPDefault for YSFlight server [1]Unofficial
7935TCPFixed port used for Adobe Flash Debug Player to communicate with a debugger (Flash IDE, Flex Builder or fdb).[57]Unofficial
7937-9936TCPUDPEMC2 (Legato) Networker or Sun Solcitice BackupOfficial
8000UDPiRDMI (Intel Remote Desktop Management Interface)[58]—sometimes erroneously used instead of port 8080Official
8000TCPiRDMI (Intel Remote Desktop Management Interface)[58]—sometimes erroneously used instead of port 8080Official
8000TCPCommonly used for internet radio streams such as those using SHOUTcastUnofficial
8001TCPCommonly used for internet radio streams such as those using SHOUTcastUnofficial
8002TCPCisco Systems Unified Call Manager InterclusterUnofficial
8008TCPHTTP AlternateOfficial
8008TCPIBM HTTP Server administration defaultUnofficial
8009TCPajp13—Apache JServ Protocol AJP ConnectorUnofficial
8010TCPXMPP File transfersUnofficial
8011-8014TCPHTTP/TCP Symon Communications Event and Query EngineUnofficial
8074TCPGadu-GaduUnofficial
8078TCPUDPDefault port for most Endless Online-based serversUnofficial
8080TCPHTTP alternate (http_alt)—commonly used for Web proxy and caching server, or for running a Web server as a non-root userOfficial
8080TCPApache TomcatUnofficial
8080UDPFilePhile Master/RelayUnofficial
8081TCPHTTP alternate, VibeStreamer, e.g. McAfee ePolicy Orchestrator (ePO)Unofficial
8086TCPHELM Web Host Automation Windows Control PanelUnofficial
8086TCPKaspersky AV Control CenterUnofficial
8087TCPHosting Accelerator Control PanelUnofficial
8087TCPParallels Plesk Control PanelUnofficial
8087UDPKaspersky AV Control CenterUnofficial
8089TCPSplunk DaemonUnofficial
8090TCPHTTP Alternate (http_alt_alt)—used as an alternative to port 8080Unofficial
8116UDPCheck Point Cluster Control ProtocolUnofficial
8118TCPPrivoxy—advertisement-filtering Web proxyOfficial
8123TCPPolipo Web proxyOfficial
8192TCPSophos Remote Management SystemUnofficial
8193TCPSophos Remote Management SystemUnofficial
8194TCPSophos Remote Management SystemUnofficial
8200TCPGoToMyPCUnofficial
8222TCPVMware Server Management User Interface[59] (insecure Web interface).[60] See also port 8333Unofficial
8243TCPUDPHTTPS listener for Apache Synapse [61]Official
8280TCPUDPHTTP listener for Apache Synapse [61]Official
8291TCPWinbox—Default on a MikroTik RouterOS for a Windows application used to administer MikroTik RouterOSUnofficial
8303UDPTeeworlds ServerOfficial
8332TCPBitcoin JSON-RPC server[62]Unofficial
8333TCPBitcoin[63]Unofficial
8333TCPVMware Server Management User Interface[59] (secure Web interface).[60] See also port 8222Unofficial
8400TCPUDPcvp, Commvault Unified Data ManagementOfficial
8442TCPUDPCyBro A-bus, Cybrotech Ltd.Official
8443TCPSW Soft Plesk Control Panel, Apache Tomcat SSL, Promise WebPAM SSLUnofficial
8484TCPUDPMapleStoryUnofficial
8500TCPUDPColdFusion Macromedia/Adobe ColdFusion default and Duke Nukem 3D—defaultUnofficial
8501TCP[2] DukesterX —defaultUnofficial
8691TCPUltra Fractal default server port for distributing calculations over network computersUnofficial
8701UDPSoftPerfect Bandwidth ManagerUnofficial
8702UDPSoftPerfect Bandwidth ManagerUnofficial
8767UDPTeamSpeak—defaultUnofficial
8768UDPTeamSpeak—alternateUnofficial
8880UDPcddbp-alt, CD DataBase (CDDB) protocol (CDDBP) alternateOfficial
8880TCPcddbp-alt, CD DataBase (CDDB) protocol (CDDBP) alternateOfficial
8880TCPWebSphere Application Server SOAP connector defaultUnofficial
8880TCPWin Media Streamer to Server SOAP connector defaultUnofficial
8881TCPAtlasz Informatics Research Ltd [3] Secure Application ServerUnofficial
8882TCPAtlasz Informatics Research Ltd [4] Secure Application ServerUnofficial
8883TCPUDPSecure MQ Telemetry Transport (MQTT over SSL)Official
8888UDPNewsEDGE serverOfficial
8888TCPNewsEDGE serverOfficial
8888TCPSun Answerbook dwhttpd server (deprecated by docs.sun.com)Unofficial
8888TCPGNUmp3d HTTP music streaming and Web interfaceUnofficial
8888TCPLoLo Catcher HTTP Web interface (www.optiform.com)Unofficial
8888TCPD2GS Admin Console Telnet administration console for D2GS servers (Diablo 2)Unofficial
8888TCPEarthland Relams 2 Server (AU1_2)Unofficial
8889TCPEarthland Relams 2 Server (AU1_1)Unofficial
8983TCPDefault for Apache Solr 1.4Unofficial
9000TCPBuffalo LinkSystem Web accessUnofficial
9000TCPDBGpUnofficial
9000TCPSqueezeCenter web server & streamingUnofficial
9000UDPUDPCastUnofficial
9001TCPUDPETL Service Manager[64]Official
9001Microsoft Sharepoint Authoring EnvironmentUnofficial
9001cisco-xremote router configurationUnofficial
9001Tor network defaultUnofficial
9001TCPDBGp ProxyUnofficial
9009TCPUDPPichat Server—Peer to peer chat softwareOfficial
9030TCPTor often usedUnofficial
9043TCPWebSphere Application Server Administration Console secureUnofficial
9050TCPTorUnofficial
9051TCPTorUnofficial
9060TCPWebSphere Application Server Administration ConsoleUnofficial
9080UDPglrpc, Groove Collaboration software GLRPCOfficial
9080TCPglrpc, Groove Collaboration software GLRPCOfficial
9080TCPWebSphere Application Server HTTP Transport (port 1) defaultUnofficial
9090TCPWebwasher, Secure Web, McAfee Web Gateway - Default Proxy PortUnofficial
9090TCPOpenfire Administration ConsoleUnofficial
9090TCPSqueezeCenter control (CLI)Unofficial
9091TCPOpenfire Administration Console (SSL Secured)Unofficial
9100TCPPDL Data StreamOfficial
9101TCPUDPBacula DirectorOfficial
9102TCPUDPBacula File DaemonOfficial
9103TCPUDPBacula Storage DaemonOfficial
9105TCPUDPXadmin Control DaemonOfficial
9110UDPSSMP Message protocolUnofficial
9119TCPUDPMXit Instant MessengerOfficial
9293TCPSony Playstation RemotePlayUnofficial
9300TCPIBM Cognos 8 SOAP Business Intelligence and Performance ManagementUnofficial
9303UDPD-Link Shareport Share storage and MFP printersUnofficial
9306TCPSphinx Native APIOfficial
9312TCPSphinx SphinxQLOfficial
9418TCPUDPgit, Git pack transfer serviceOfficial
9420TCPMooseFS distributed file system—master server to chunk serversUnofficial
9421TCPMooseFS distributed file system—master server to clientsUnofficial
9422TCPMooseFS distributed file system—chunk servers to clientsUnofficial
9535TCPUDPmngsuite, LANDesk Management Suite Remote ControlOfficial
9536TCPUDPlaes-bf, IP Fabrics Surveillance buffering functionOfficial
9561TCPUDPNetwork Time System ServerUnofficial
9600UDPOmron FINS, OMRON FINS PLC communicationOfficial
9695UDPCCNxOfficial
9800TCPUDPWebDAV SourceOfficial
9800WebCT e-learning portalUnofficial
9875TCPClub Penguin Disney online game for kidsUnofficial
9898UDPMonkeyComOfficial
9898TCPMonkeyComOfficial
9898TCPTripwire—File Integrity Monitoring SoftwareUnofficial
9987UDPTeamSpeak 3 server default (voice) port (for the conflicting service see the IANA list)Unofficial
9996TCPUDPThe Palace "The Palace" Virtual Reality Chat software.—5Official
9999Hydranode—edonkey2000 TELNET controlUnofficial
9999TCPLantronix UDS-10/UDS100[65] RS-485 to Ethernet Converter TELNET controlUnofficial
9999Urchin Web AnalyticsUnofficial
10000Webmin—Web-based Linux admin toolUnofficial
10000BackupExecUnofficial
10000Ericsson Account Manager (avim)Unofficial
10001TCPLantronix UDS-10/UDS100[66] RS-485 to Ethernet Converter defaultUnofficial
10008TCPUDPOctopus Multiplexer, primary port for the CROMP protocol, which provides a platform-independent means for communication of objects across a networkOfficial
10009TCPUDPCross Fire, a multiplayer online First Person Shooter.
10010TCPOpen Object Rexx (ooRexx) rxapi daemonOfficial
10017AIX,NeXT, HPUX—rexd daemon controlUnofficial
10024TCPZimbra smtp [mta]—to amavis from postfixUnofficial
10025TCPZimbra smtp [mta]—back to postfix from amavisUnofficial
10050TCPUDPZabbix-AgentOfficial
10051TCPUDPZabbix-TrapperOfficial
10113TCPUDPNetIQ EndpointOfficial
10114TCPUDPNetIQ QcheckOfficial
10115TCPUDPNetIQ EndpointOfficial
10116TCPUDPNetIQ VoIP AssessorOfficial
10200TCPFRISK Software International's fpscand virus scanning daemon for Unix platforms [67]Unofficial
10200TCPFRISK Software International's f-protd virus scanning daemon for Unix platforms [68]Unofficial
10201–10204TCPFRISK Software International's f-protd virus scanning daemon for Unix platforms [68]Unofficial
10308Lock-on: Modern Air CombatUnofficial
10480SWAT 4 Dedicated ServerUnofficial
11211memcachedUnofficial
11235Savage:Battle for Newerth Server HostingUnofficial
11294Blood Quest Online ServerUnofficial
11371OpenPGP HTTP key serverOfficial
11576IPStor Server management communicationUnofficial
12010TCPElevateDB default database port [69]Unofficial
12011TCPAxence nVisionUnofficial
12012TCPAxence nVisionUnofficial
12012TCPAudition Online Dance Battle, Korea Server—Status/Version CheckUnofficial
12012UDPAudition Online Dance Battle, Korea Server—Status/Version CheckUnofficial
12013TCPUDPAudition Online Dance Battle, Korea ServerUnofficial
12035UDPLinden Lab viewer to sim on SecondLifeUnofficial
12222UDPLight Weight Access Point Protocol (LWAPP) LWAPP data (RFC 5412)Official
12223UDPLight Weight Access Point Protocol (LWAPP) LWAPP control (RFC 5412)Official
12345NetBus—remote administration tool (often Trojan horse). Also used by NetBuster. Little Fighter 2 (TCP).Unofficial
12489TCPNSClient/NSClient++/NC_Net (Nagios)Unofficial
12975TCPLogMeIn Hamachi (VPN tunnel software; also port 32976)—used to connect to Mediation Server (bibi.hamachi.cc); will attempt to use SSL (TCP port 443) if both 12975 & 32976 fail to connectUnofficial
12998–12999UDPTakenaka RDI Mirror World on SecondLifeUnofficial
13000–13050UDPLinden Lab viewer to sim on SecondLifeUnofficial
13008TCPUDPCross Fire, a multiplayer online First Person Shooter.
13076TCPDefault for BMC Software Control-M/Enterprise Manager Corba communication, though often changed during installationOfficial
13720TCPUDPSymantec NetBackup—bprd (formerly VERITAS)Official
13721TCPUDPSymantec NetBackup—bpdbm (formerly VERITAS)Official
13724TCPUDPSymantec Network Utility—vnetd (formerly VERITAS)Official
13782TCPUDPSymantec NetBackup—bpcd (formerly VERITAS)Official
13783TCPUDPSymantec VOPIED protocol (formerly VERITAS)Official
13785TCPUDPSymantec NetBackup Database—nbdb (formerly VERITAS)Official
13786TCPUDPSymantec nomdb (formerly VERITAS)Official
14439TCPAPRS UI-View Amateur Radio[70] UI-WebServerUnofficial
14567UDPBattlefield 1942 and modsUnofficial
15000TCPpsyBNCUnofficial
15000TCPWesnothUnofficial
15000TCPKaspersky Network AgentUnofficial
15000TCPhydap, Hypack Hydrographic Software Packages Data AcquisitionOfficial
15000UDPhydap, Hypack Hydrographic Software Packages Data AcquisitionOfficial
15567UDPBattlefield Vietnam and modsUnofficial
15345TCPUDPXPilot ContactOfficial
16000TCPshroudBNCUnofficial
16080TCPMac OS X Server Web (HTTP) service with performance cache[71]Unofficial
16384UDPIron Mountain Digital online backupUnofficial
16567UDPBattlefield 2 and modsUnofficial
17500TCPDropbox LanSync Protocol (db-lsp); used to synchronize file catalogs between Dropbox clients on your local network.Official
17500UDPDropbox LanSync Discovery (db-lsp-disc); used to synchronize file catalogs between Dropbox clients on your local network; is transmitted to broadcast addresses.Official
18010TCPSuper Dancer Online Extreme(SDO-X)—CiB Net Station Malaysia ServerUnofficial
18104TCPRAD PDF ServiceOfficial
18180TCPDART Reporting serverUnofficial
18200TCPUDPAudition Online Dance Battle, AsiaSoft Thailand Server—Status/Version CheckUnofficial
18201TCPUDPAudition Online Dance Battle, AsiaSoft Thailand ServerUnofficial
18206TCPUDPAudition Online Dance Battle, AsiaSoft Thailand Server—FAM DatabaseUnofficial
18300TCPUDPAudition Online Dance Battle, AsiaSoft SEA Server—Status/Version CheckUnofficial
18301TCPUDPAudition Online Dance Battle, AsiaSoft SEA ServerUnofficial
18306TCPUDPAudition Online Dance Battle, AsiaSoft SEA Server—FAM DatabaseUnofficial
18400TCPUDPAudition Online Dance Battle, KAIZEN Brazil Server—Status/Version CheckUnofficial
18401TCPUDPAudition Online Dance Battle, KAIZEN Brazil ServerUnofficial
18505TCPUDPAudition Online Dance Battle, Nexon Server—Status/Version CheckUnofficial
18506TCPUDPAudition Online Dance Battle, Nexon ServerUnofficial
18605TCPUDPX-BEAT—Status/Version CheckUnofficial
18606TCPUDPX-BEATUnofficial
19000TCPUDPAudition Online Dance Battle, G10/alaplaya Server—Status/Version CheckUnofficial
19001TCPUDPAudition Online Dance Battle, G10/alaplaya ServerUnofficial
19226TCPPanda Software AdminSecure Communication AgentUnofficial
19283TCPUDPK2 - KeyAuditor & KeyServer, Sassafras Software Inc. Software Asset Management toolsOfficial
19294TCPGoogle Talk Voice and Video connections [72]Unofficial
19295UDPGoogle Talk Voice and Video connections [72]Unofficial
19302UDPGoogle Talk Voice and Video connections [72]Unofficial
19315TCPUDPKeyShadow for K2 - KeyAuditor & KeyServer, Sassafras Software Inc. Software Asset Management toolsOfficial
19638TCPEnsim Control PanelUnofficial
19771TCPUDPSoftros LAN MessengerUnofficial
19812TCP4D database SQL CommunicationUnofficial
19813TCP4D database Client Server CommunicationUnofficial
19814TCP4D database DB4D CommunicationUnofficial
19880TCPSoftros LAN MessengerUnofficial
19999DNP - Secure (Distributed Network Protocol - Secure), a secure version of the protocol used in SCADA systems between communicating RTU's and IED'sOfficial
20000DNP (Distributed Network Protocol), a protocol used in SCADA systems between communicating RTU's and IED'sOfficial
20000Usermin, Web-based user toolUnofficial
20014TCPDART Reporting serverUnofficial
20720TCPSymantec i3 Web GUI serverUnofficial
21001TCPAMLFilter, AMLFilter Inc. amlf-admin default portUnofficial
21011TCPAMLFilter, AMLFilter Inc. amlf-engine-01 default http portUnofficial
21012TCPAMLFilter, AMLFilter Inc. amlf-engine-01 default https portUnofficial
21021TCPAMLFilter, AMLFilter Inc. amlf-engine-02 default http portUnofficial
21022TCPAMLFilter, AMLFilter Inc. amlf-engine-02 default https portUnofficial
22136TCPFLIR Systems Camera Resource ProtocolUnofficial
22347TCPUDPWibuKey, WIBU-SYSTEMS AG Software protection systemOfficial
22350TCPUDPCodeMeter, WIBU-SYSTEMS AG Software protection systemOfficial
23073Soldat Dedicated ServerUnofficial
23399Skype Default ProtocolUnofficial
23513Duke Nukem 3D#Source code Duke Nukem PortsUnofficial
24444NetBeans integrated development environmentUnofficial
24465TCPUDPTonido Directory Server for Tonido which is a Personal Web App and P2P platformOfficial
24554TCPUDPBINKP, Fidonet mail transfers over TCP/IPOfficial
24800Synergy: keyboard/mouse sharing softwareUnofficial
24842StepMania: Online: Dance Dance Revolution SimulatorUnofficial
25565Amazing Freebuild Original Minecraft Freebuild ServerUnofficial
25565Minecraft Dedicated ServerUnofficial
25565MySQL Standart MySQL portUnofficial
25888UDPXfire (Firewall Report, UDP_IN) IP Address (206.220.40.146) resolves to gameservertracking.xfire.com. Use unknown.Unofficial
25999TCPXfireUnofficial
26000UDPid Software's Quake serverOfficial
26000TCPid Software's Quake serverOfficial
26000TCPCCP's EVE Online Online gaming MMORPGUnofficial
26900TCPCCP's EVE Online Online gaming MMORPGUnofficial
26901TCPCCP's EVE Online Online gaming MMORPGUnofficial
27000UDP(through 27006) id Software's QuakeWorld master serverUnofficial
27000-27009TCPFlexNet Publisher's License server (from the range of default ports)Unofficial
27010Source engine dedicated server portUnofficial
27014Source engine dedicated server port (rare)Unofficial
27015GoldSrc and Source engine dedicated server portUnofficial
27016Magicka server portUnofficial
27017mongoDB server portUnofficial
27374Sub7 default.Unofficial
27500UDP(through 27900) id Software's QuakeWorldUnofficial
27888UDPKaillera serverUnofficial
27900-27901Nintendo Wi-Fi ConnectionUnofficial
27901UDP(through 27910) id Software's Quake II master serverUnofficial
27960UDP(through 27969) Activision's Enemy Territory and id Software's Quake III Arena, Quake III and Quake Live and some ioquake3 derived gamesUnofficial
28000Bitfighter Common/default Bitfighter ServerUnofficial
28001Starsiege: Tribes Common/default Tribes v.1 ServerUnofficial
28395TCPwww.SmartSystemsLLC.com Used by Smart Sale 5.0Unofficial
28910Nintendo Wi-Fi ConnectionUnofficial
28960UDPCall of Duty; Call of Duty: United Offensive; Call of Duty 2; Call of Duty 4: Modern Warfare; Call of Duty: World at War (PC Version)Unofficial
29000Perfect World International Used by the Perfect World International ClientUnofficial
29900-29901Nintendo Wi-Fi ConnectionUnofficial
29920Nintendo Wi-Fi ConnectionUnofficial
30000Pokémon NetbattleUnofficial
30301BitTorrentUnofficial
30564TCPMultiplicity: keyboard/mouse/clipboard sharing softwareUnofficial
30718UDPLantronix Discovery for Lantronix serial-to-ethernet devicesUnofficial
30777TCPZangZing agentUnofficial
31337TCPBack Orifice—remote administration tool (often Trojan horse)Unofficial
31415ThoughtSignal—Server Communication Service (often Informational)Unofficial
31456TCPTetriNET IRC gateway on some serversUnofficial
31457TCPTetriNETOfficial
31458TCPTetriNET Used for game spectatorsUnofficial
32123TCPx3Lobby Used by x3Lobby, an internet application.Unofficial
32245TCPMMTSG-mutualed over MMT (encrypted transmission)Unofficial
32769TCPFileNet RPCUnofficial
32976TCPLogMeIn Hamachi (VPN tunnel software; also port 12975)—used to connect to Mediation Server (bibi.hamachi.cc); will attempt to use SSL (TCP port 443) if both 12975 & 32976 fail to connectUnofficial
33434TCPUDPtracerouteOfficial
34443Linksys PSUS4 print serverUnofficial
36963UDPAny of the USGN online games, most notably Counter Strike 2D multiplayer (2D clone of popular CounterStrike computer game)Unofficial
37659TCPAxence nVisionUnofficial
37777TCPDigital Video Recorder hardwareUnofficial
40000TCPUDPSafetyNET p Real-time Industrial Ethernet protocolOfficial
43047TCPTheòsMessenger second port for service TheòsMessengerOfficial
43048TCPTheòsMessenger third port for service TheòsMessengerOfficial
43594–43595TCPJagex, RuneScape, FunOrb, etc...Unofficial
47808TCPUDPBACnet Building Automation and Control Networks (4780810 = BAC016)Official
49151TCPUDPReserved[1]Official