-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathports2.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 5 in line 1.
1853 lines (1853 loc) · 150 KB
/
ports2.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#TYPE System.Management.Automation.PSCustomObject
"Port","Protocol","H1","Description","Status"
"0","","UDP","Reserved","Port is officialy registered by IANA for this application"
"1","TCP","UDP","TCP Port Service Multiplexer","Port is officialy registered by IANA for this application"
"","","","(TCPMUX)",""
"2","TCP","UDP","CompressNET 2 Management Utility 3","Port is officialy registered by IANA for this application"
"3","TCP","UDP","CompressNET 2 Compression Process 4","Port is officialy registered by IANA for this application"
"4","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"5","TCP","UDP","Remote Job Entry","Port is officialy registered by IANA for this application"
"7","TCP","UDP","Echo Protocol","Port is officialy registered by IANA for this application"
"8","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"9","TCP","UDP","Discard Protocol","Port is officialy registered by IANA for this application"
"10","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"11","TCP","UDP","Active Users (systat service)","Port is officialy registered by IANA for this application"
"","","","5 6",""
"12","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"13","TCP","UDP","Daytime Protocol (RFC 867)","Port is officialy registered by IANA for this application"
"14","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"15","TCP","UDP","Previously netstat service","Port is not officialy registered by IANA for this application"
"","","","5",""
"16","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"17","TCP","UDP","Quote of the Day","Port is officialy registered by IANA for this application"
"18","TCP","UDP","Message Send Protocol","Port is officialy registered by IANA for this application"
"19","TCP","UDP","Character Generator Protocol","Port is officialy registered by IANA for this application"
"","","","(CHARGEN)",""
"20","TCP","","FTP?data transfer","Port is officialy registered by IANA for this application"
"21","TCP","","FTP?control (command)","Port is officialy registered by IANA for this application"
"22","TCP","","Secure Shell (SSH)?used","Port is officialy registered by IANA for this application"
"","","","for secure logins, file transfers (scp, sftp) and port forwarding",""
"23","TCP","","Telnet","Port is officialy registered by IANA for this application"
"","","","protocol?unencrypted text communications",""
"24","TCP","UDP","Priv-mail : any private mail","Port is officialy registered by IANA for this application"
"","","","system. citation needed",""
"25","TCP","","Simple Mail Transfer Protocol","Port is officialy registered by IANA for this application"
"","","","(SMTP)?used for e-mail routing between mail servers",""
"26","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"27","TCP","UDP","NSW User System FE citation","Port is officialy registered by IANA for this application"
"","","","needed",""
"29","TCP","UDP","MSG ICP citation needed","Port is officialy registered by IANA for this application"
"33","TCP","UDP","Display Support Protocol","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"34","TCP","UDP","Remote File (RF)?used to","Port is not officialy registered by IANA for this application"
"","","","transfer files between machines citation needed",""
"35","TCP","UDP","Any private printer server","Port is officialy registered by IANA for this application"
"","","","protocol citation needed",""
"37","TCP","UDP","TIME protocol","Port is officialy registered by IANA for this application"
"39","TCP","UDP","Resource Location Protocol","Port is officialy registered by IANA for this application"
"","","","7 (RLP)?used for",""
"","","","determining the location of higher level services from hosts on a network",""
"40","TCP","UDP","Unassigned","Port is officialy registered by IANA for this application"
"42","TCP","UDP","ARPA Host Name Server Protocol","Port is officialy registered by IANA for this application"
"42","TCP","UDP","Windows Internet Name Service","Port is not officialy registered by IANA for this application"
"43","TCP","","WHOIS protocol","Port is officialy registered by IANA for this application"
"47","TCP","UDP","NI FTP 7","Port is officialy registered by IANA for this application"
"49","TCP","UDP","TACACS Login Host protocol","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"50","TCP","UDP","Remote Mail Checking Protocol","Port is officialy registered by IANA for this application"
"","","","8",""
"51","TCP","UDP","IMP Logical Address Maintenance","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"52","TCP","UDP","XNS (Xerox Network Systems) Time","Port is officialy registered by IANA for this application"
"","","","Protocol",""
"53","TCP","UDP","Domain Name System (DNS)","Port is officialy registered by IANA for this application"
"54","TCP","UDP","XNS (Xerox Network Systems)","Port is officialy registered by IANA for this application"
"","","","Clearinghouse",""
"55","TCP","UDP","ISI Graphics Language (ISI-GL)","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"56","TCP","UDP","XNS (Xerox Network Systems)","Port is officialy registered by IANA for this application"
"","","","Authentication",""
"56","TCP","UDP","Route Access Protocol (RAP)","Port is not officialy registered by IANA for this application"
"","","","9",""
"57","TCP","","Mail Transfer Protocol (RFC 780)","Port is not officialy registered by IANA for this application"
"58","TCP","UDP","XNS (Xerox Network Systems) Mail","Port is officialy registered by IANA for this application"
"67","","UDP","Bootstrap Protocol (BOOTP)","Port is officialy registered by IANA for this application"
"","","","Server; also used by Dynamic Host Configuration Protocol (DHCP)",""
"68","","UDP","Bootstrap Protocol (BOOTP)","Port is officialy registered by IANA for this application"
"","","","Client; also used by Dynamic Host Configuration Protocol (DHCP)",""
"69","","UDP","Trivial File Transfer Protocol","Port is officialy registered by IANA for this application"
"","","","(TFTP)",""
"70","TCP","","Gopher protocol","Port is officialy registered by IANA for this application"
"71","TCP","","NETRJS protocol","Port is officialy registered by IANA for this application"
"72","TCP","","NETRJS protocol","Port is officialy registered by IANA for this application"
"73","TCP","","NETRJS protocol","Port is officialy registered by IANA for this application"
"74","TCP","","NETRJS protocol","Port is officialy registered by IANA for this application"
"79","TCP","","Finger protocol","Port is officialy registered by IANA for this application"
"80","TCP","UDP","Hypertext Transfer Protocol","Port is officialy registered by IANA for this application"
"","","","(HTTP)",""
"81","TCP","","Torpark?Onion routing","Port is not officialy registered by IANA for this application"
"82","","UDP","Torpark?Control","Port is not officialy registered by IANA for this application"
"88","TCP","UDP","Kerberos?authentication","Port is officialy registered by IANA for this application"
"","","","system citation needed",""
"90","TCP","UDP","dnsix (DoD Network Security for","Port is officialy registered by IANA for this application"
"","","","Information Exchange) Securit Attribute Token Map citation needed",""
"90","TCP","UDP","Pointcast","Port is not officialy registered by IANA for this application"
"99","TCP","","WIP Message protocol","Port is not officialy registered by IANA for this application"
"101","TCP","","NIC host name","Port is officialy registered by IANA for this application"
"102","TCP","","ISO-TSAP (Transport Service","Port is officialy registered by IANA for this application"
"","","","Access Point) Class 0 protocol 10",""
"104","TCP","UDP","ACR/NEMA Digital Imaging and","Port is officialy registered by IANA for this application"
"","","","Communications in Medicine",""
"105","TCP","UDP","CCSO Nameserver Protocol (Qi/Ph)","Port is officialy registered by IANA for this application"
"107","TCP","","Remote TELNET Service 11 protocol","Port is officialy registered by IANA for this application"
"108","TCP","UDP","SNA Gateway Access Server 12","Port is officialy registered by IANA for this application"
"109","TCP","","Post Office Protocol v2 (POP2)","Port is officialy registered by IANA for this application"
"110","TCP","","Post Office Protocol v3 (POP3)","Port is officialy registered by IANA for this application"
"111","TCP","UDP","ONC RPC (SunRPC)","Port is officialy registered by IANA for this application"
"113","TCP","","ident?Authentication","Port is officialy registered by IANA for this application"
"","","","Service/Identification Protocol, 13",""
"","","","used by IRC servers to identify users",""
"113","","UDP","Authentication Service 13 (auth)","Port is officialy registered by IANA for this application"
"115","TCP","","Simple File Transfer Protocol","Port is officialy registered by IANA for this application"
"","","","(SFTP)",""
"117","TCP","","UUCP Path Service","Port is officialy registered by IANA for this application"
"118","TCP","UDP","SQL (Structured Query Language)","Port is officialy registered by IANA for this application"
"","","","Services",""
"119","TCP","","Network News Transfer Protocol","Port is officialy registered by IANA for this application"
"","","","(NNTP)?retrieval of newsgroup messages",""
"123","","UDP","Network Time Protocol","Port is officialy registered by IANA for this application"
"","","","(NTP)?used for time synchronization",""
"135","TCP","UDP","DCE endpoint resolution","Port is officialy registered by IANA for this application"
"135","TCP","UDP","Microsoft EPMAP (End Point","Port is not officialy registered by IANA for this application"
"","","","Mapper), also known as DCE/RPC Locator service, 14 used to remotely manage services",""
"","","","including DHCP server, DNS server and WINS. Also used by DCOM",""
"137","TCP","UDP","NetBIOS NetBIOS Name Service","Port is officialy registered by IANA for this application"
"138","TCP","UDP","NetBIOS NetBIOS Datagram Service","Port is officialy registered by IANA for this application"
"139","TCP","UDP","NetBIOS NetBIOS Session Service","Port is officialy registered by IANA for this application"
"143","TCP","","Internet Message Access Protocol","Port is officialy registered by IANA for this application"
"","","","(IMAP)?management of email messages",""
"152","TCP","UDP","Background File Transfer Program","Port is officialy registered by IANA for this application"
"","","","(BFTP) 15",""
"153","TCP","UDP","SGMP, Simple Gateway Monitoring","Port is officialy registered by IANA for this application"
"","","","Protocol",""
"156","TCP","UDP","SQL Service","Port is officialy registered by IANA for this application"
"158","TCP","UDP","DMSP, Distributed Mail Service","Port is not officialy registered by IANA for this application"
"","","","Protocol 16",""
"161","","UDP","Simple Network Management","Port is officialy registered by IANA for this application"
"","","","Protocol (SNMP)",""
"162","TCP","UDP","Simple Network Management","Port is officialy registered by IANA for this application"
"","","","Protocol Trap (SNMPTRAP) 17",""
"170","TCP","","Print-srv, Network PostScript","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"175","TCP","","VMNET (IBM z/VM, z/OS &","Port is officialy registered by IANA for this application"
"","","","z/VSE ? Network Job Entry(NJE)) citation needed",""
"177","TCP","UDP","X Display Manager Control","Port is officialy registered by IANA for this application"
"","","","Protocol (XDMCP)",""
"179","TCP","","BGP (Border Gateway Protocol)","Port is officialy registered by IANA for this application"
"194","TCP","UDP","Internet Relay Chat (IRC)","Port is officialy registered by IANA for this application"
"199","TCP","UDP","SMUX, SNMP Unix Multiplexer","Port is officialy registered by IANA for this application"
"201","TCP","UDP","AppleTalk Routing Maintenance","Port is officialy registered by IANA for this application"
"209","TCP","UDP","The Quick Mail Transfer Protocol","Port is officialy registered by IANA for this application"
"210","TCP","UDP","ANSI Z39.50","Port is officialy registered by IANA for this application"
"213","TCP","UDP","Internetwork Packet Exchange","Port is officialy registered by IANA for this application"
"","","","(IPX)",""
"218","TCP","UDP","Message posting protocol (MPP)","Port is officialy registered by IANA for this application"
"220","TCP","UDP","Internet Message Access Protocol","Port is officialy registered by IANA for this application"
"","","","(IMAP), version 3",""
"256","TCP","UDP","2DEV ?2SP? Port","Port is not officialy registered by IANA for this application"
"","","","citation needed",""
"259","TCP","UDP","ESRO, Efficient Short Remote","Port is officialy registered by IANA for this application"
"","","","Operations citation needed",""
"264","TCP","UDP","BGMP, Border Gateway Multicast","Port is officialy registered by IANA for this application"
"","","","Protocol",""
"280","TCP","UDP","http-mgmt","Port is officialy registered by IANA for this application"
"308","TCP","","Novastor Online Backup","Port is officialy registered by IANA for this application"
"311","TCP","","Mac OS X Server Admin","Port is officialy registered by IANA for this application"
"","","","(officially AppleShare IP Web administration) citation needed",""
"318","TCP","UDP","PKIX TSP, Time Stamp Protocol","Port is officialy registered by IANA for this application"
"319","","UDP","Precision time protocol event","Port is officialy registered by IANA for this application"
"","","","messages",""
"320","","UDP","Precision time protocol general","Port is officialy registered by IANA for this application"
"","","","messages",""
"323","TCP","UDP","IMMP, Internet Message Mapping","Port is not officialy registered by IANA for this application"
"","","","Protocol citation needed",""
"350","TCP","UDP","MATIP-Type A, Mapping of Airline","Port is officialy registered by IANA for this application"
"","","","Traffic over Internet Protocol citation needed",""
"351","TCP","UDP","MATIP-Type B, Mapping of Airline","Port is officialy registered by IANA for this application"
"","","","Traffic over Internet Protocol citation needed",""
"366","TCP","UDP","ODMR, On-Demand Mail Relay","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"369","TCP","UDP","Rpc2portmap citation needed","Port is officialy registered by IANA for this application"
"370","TCP","","codaauth2?Coda","Port is officialy registered by IANA for this application"
"","","","authentication server citation needed",""
"370","","UDP","codaauth2?Coda","Port is officialy registered by IANA for this application"
"","","","authentication server citation needed",""
"370","","UDP","securecast1?Outgoing","Port is not officialy registered by IANA for this application"
"","","","packets to NAI?s servers 18 dead link",""
"371","TCP","UDP","ClearCase albd citation","Port is officialy registered by IANA for this application"
"","","","needed",""
"383","TCP","UDP","HP data alarm manager citation","Port is officialy registered by IANA for this application"
"","","","needed",""
"384","TCP","UDP","A Remote Network Server System","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"387","TCP","UDP","AURP, AppleTalk Update-based","Port is officialy registered by IANA for this application"
"","","","Routing Protocol 19",""
"389","TCP","UDP","Lightweight Directory Access","Port is officialy registered by IANA for this application"
"","","","Protocol (LDAP)",""
"401","TCP","UDP","UPS Uninterruptible Power Supply","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"402","TCP","","Altiris, Altiris Deployment","Port is not officialy registered by IANA for this application"
"","","","Client citation needed",""
"411","TCP","","Direct Connect Hub","Port is not officialy registered by IANA for this application"
"412","TCP","","Direct Connect Client-to-Client","Port is not officialy registered by IANA for this application"
"427","TCP","UDP","Service Location Protocol (SLP)","Port is officialy registered by IANA for this application"
"443","TCP","","HTTPS (Hypertext Transfer","Port is officialy registered by IANA for this application"
"","","","Protocol over SSL/TLS)",""
"444","TCP","UDP","SNPP, Simple Network Paging","Port is officialy registered by IANA for this application"
"","","","Protocol (RFC 1568)",""
"445","TCP","","Microsoft-DS Active Directory,","Port is officialy registered by IANA for this application"
"","","","Windows shares",""
"445","TCP","","Microsoft-DS SMB file sharing","Port is officialy registered by IANA for this application"
"464","TCP","UDP","Kerberos Change/Set password","Port is officialy registered by IANA for this application"
"465","TCP","","Cisco protocol citation","Port is not officialy registered by IANA for this application"
"","","","needed",""
"465","TCP","","SMTP over SSL","Port is not officialy registered by IANA for this application"
"475","TCP","UDP","tcpnethaspsrv (Aladdin Knowledge","Port is officialy registered by IANA for this application"
"","","","Systems Hasp services, TCP/IP version) citation needed",""
"497","TCP","","Dantz Retrospect","Port is officialy registered by IANA for this application"
"500","TCP","","Qmatic Qwin communication port","Port is not officialy registered by IANA for this application"
"","","","citation needed",""
"500","","UDP","Internet Security Association","Port is officialy registered by IANA for this application"
"","","","and Key Management Protocol (ISAKMP)",""
"501","TCP","","STMF, Simple Transportation","Port is not officialy registered by IANA for this application"
"","","","Management Framework?DOT NTCIP 1101 citation needed",""
"502","TCP","UDP","asa-appl-proto, Protocol","Port is not officialy registered by IANA for this application"
"","","","citation needed",""
"502","TCP","UDP","Modbus, Protocol","Port is not officialy registered by IANA for this application"
"504","TCP","UDP","Citadel?multiservice","Port is officialy registered by IANA for this application"
"","","","protocol for dedicated clients for the Citadel groupware system",""
"510","TCP","","First Class Protocol citation","Port is not officialy registered by IANA for this application"
"","","","needed",""
"512","TCP","","Rexec, Remote Process Execution","Port is officialy registered by IANA for this application"
"512","","UDP","comsat, together with biff","Port is officialy registered by IANA for this application"
"513","TCP","","rlogin","Port is officialy registered by IANA for this application"
"513","","UDP","Who citation needed","Port is officialy registered by IANA for this application"
"514","TCP","","Shell?used to execute","Port is officialy registered by IANA for this application"
"","","","non-interactive commands on a remote system (Remote Shell, rsh, remsh)",""
"514","","UDP","Syslog?used for system","Port is officialy registered by IANA for this application"
"","","","logging",""
"515","TCP","","Line Printer Daemon?print","Port is officialy registered by IANA for this application"
"","","","service",""
"517","","UDP","Talk citation needed","Port is officialy registered by IANA for this application"
"518","","UDP","NTalk citation needed","Port is officialy registered by IANA for this application"
"520","TCP","","efs, extended file name server","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"520","","UDP","Routing Information Protocol","Port is officialy registered by IANA for this application"
"","","","(RIP)",""
"524","TCP","UDP","NetWare Core Protocol (NCP) is","Port is officialy registered by IANA for this application"
"","","","used for a variety things such as access to primary NetWare server resources,",""
"","","","Time Synchronization, etc.",""
"525","","UDP","Timed, Timeserver citation","Port is officialy registered by IANA for this application"
"","","","needed",""
"530","TCP","UDP","RPC citation needed","Port is officialy registered by IANA for this application"
"531","TCP","UDP","AOL Instant Messenger","Port is not officialy registered by IANA for this application"
"532","TCP","","netnews citation needed","Port is officialy registered by IANA for this application"
"533","","UDP","netwall, For Emergency","Port is officialy registered by IANA for this application"
"","","","Broadcasts citation needed",""
"540","TCP","","UUCP (Unix-to-Unix Copy","Port is officialy registered by IANA for this application"
"","","","Protocol)",""
"542","TCP","UDP","commerce (Commerce Applications)","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"543","TCP","","klogin, Kerberos login","Port is officialy registered by IANA for this application"
"544","TCP","","kshell, Kerberos Remote shell","Port is officialy registered by IANA for this application"
"545","TCP","","OSIsoft PI (VMS), OSISoft PI","Port is not officialy registered by IANA for this application"
"","","","Server Client Access",""
"546","TCP","UDP","DHCPv6 client","Port is officialy registered by IANA for this application"
"547","TCP","UDP","DHCPv6 server","Port is officialy registered by IANA for this application"
"548","TCP","","Apple Filing Protocol (AFP) over","Port is officialy registered by IANA for this application"
"","","","TCP",""
"550","","UDP","new-rwho, new-who citation","Port is officialy registered by IANA for this application"
"","","","needed",""
"554","TCP","UDP","Real Time Streaming Protocol","Port is officialy registered by IANA for this application"
"","","","(RTSP)",""
"556","TCP","","Remotefs, RFS, rfs_server","Port is officialy registered by IANA for this application"
"560","","UDP","rmonitor, Remote Monitor","Port is officialy registered by IANA for this application"
"","","","citation needed",""
"561","","UDP","monitor citation needed","Port is officialy registered by IANA for this application"
"563","TCP","UDP","NNTP protocol over TLS/SSL","Port is officialy registered by IANA for this application"
"","","","(NNTPS)",""
"587","TCP","","e-mail message submission","Port is officialy registered by IANA for this application"
"","","","20 (SMTP)",""
"591","TCP","","FileMaker 6.0 (and later) Web","Port is officialy registered by IANA for this application"
"","","","Sharing (HTTP Alternate, also see port 80)",""
"593","TCP","UDP","HTTP RPC Ep Map, Remote","Port is officialy registered by IANA for this application"
"","","","procedure call over Hypertext Transfer Protocol, often used by Distributed",""
"","","","Component Object Model services and Microsoft Exchange Server",""
"604","TCP","","TUNNEL profile, 21 a protocol for BEEP peers to form an","Port is officialy registered by IANA for this application"
"","","","application layer tunnel",""
"623","","UDP","ASF Remote Management and","Port is officialy registered by IANA for this application"
"","","","Control Protocol (ASF-RMCP) citation needed",""
"631","TCP","UDP","Internet Printing Protocol (IPP)","Port is officialy registered by IANA for this application"
"631","TCP","UDP","Common Unix Printing System","Port is not officialy registered by IANA for this application"
"","","","(CUPS)",""
"635","TCP","UDP","RLZ DBase citation needed","Port is officialy registered by IANA for this application"
"636","TCP","UDP","Lightweight Directory Access","Port is officialy registered by IANA for this application"
"","","","Protocol over TLS/SSL (LDAPS)",""
"639","TCP","UDP","MSDP, Multicast Source Discovery","Port is officialy registered by IANA for this application"
"","","","Protocol",""
"641","TCP","UDP","SupportSoft Nexus Remote Command","Port is officialy registered by IANA for this application"
"","","","(control/listening): A proxy gateway connecting remote control traffic",""
"","","","citation needed",""
"646","TCP","UDP","LDP, Label Distribution","Port is officialy registered by IANA for this application"
"","","","Protocol, a routing protocol used in MPLS networks",""
"647","TCP","","DHCP Failover protocol 22","Port is officialy registered by IANA for this application"
"648","TCP","","RRP (Registry Registrar","Port is officialy registered by IANA for this application"
"","","","Protocol) 23",""
"651","TCP","UDP","IEEE-MMS citation needed","Port is officialy registered by IANA for this application"
"652","TCP","","DTCP, Dynamic Tunnel","Port is not officialy registered by IANA for this application"
"","","","Configuration Protocol citation needed",""
"653","TCP","UDP","SupportSoft Nexus Remote Command","Port is officialy registered by IANA for this application"
"","","","(data): A proxy gateway connecting remote control traffic citation",""
"","","","needed",""
"654","TCP","","Media Management System (MMS)","Port is officialy registered by IANA for this application"
"","","","Media Management Protocol (MMP) 24",""
"657","TCP","UDP","IBM RMC (Remote monitoring and","Port is officialy registered by IANA for this application"
"","","","Control) protocol, used by System p5 AIX Integrated Virtualization Manager",""
"","","","(IVM) 25 and Hardware Management",""
"","","","Console to connect managed logical partitions (LPAR) to enable dynamic partition",""
"","","","reconfiguration",""
"660","TCP","","Mac OS X Server administration","Port is officialy registered by IANA for this application"
"665","TCP","","sun-dr, Remote Dynamic","Port is not officialy registered by IANA for this application"
"","","","Reconfiguration citation needed",""
"666","","UDP","Doom, first online first-person","Port is officialy registered by IANA for this application"
"","","","shooter",""
"674","TCP","","ACAP (Application Configuration","Port is officialy registered by IANA for this application"
"","","","Access Protocol)",""
"691","TCP","","MS Exchange Routing","Port is officialy registered by IANA for this application"
"694","TCP","UDP","Linux-HA High availability","Port is officialy registered by IANA for this application"
"","","","Heartbeat",""
"695","TCP","","IEEE-MMS-SSL (IEEE Media","Port is officialy registered by IANA for this application"
"","","","Management System over SSL) 26",""
"698","","UDP","OLSR (Optimized Link State","Port is officialy registered by IANA for this application"
"","","","Routing)",""
"700","TCP","","EPP (Extensible Provisioning","Port is officialy registered by IANA for this application"
"","","","Protocol), a protocol for communication between domain name registries and",""
"","","","registrars (RFC 5734)",""
"701","TCP","","LMP (Link Management Protocol","Port is officialy registered by IANA for this application"
"","","","(Internet)), 27 a protocol that",""
"","","","runs between a pair of nodes and is used to manage traffic engineering (TE)",""
"","","","links",""
"702","TCP","","IRIS 28 29 (Internet Registry Information","Port is officialy registered by IANA for this application"
"","","","Service) over BEEP (Blocks Extensible Exchange Protocol) 30 (RFC 3983)",""
"706","TCP","","Secure Internet Live","Port is officialy registered by IANA for this application"
"","","","Conferencing (SILC)",""
"711","TCP","","Cisco Tag Distribution Protocol","Port is officialy registered by IANA for this application"
"","","","31 32 33 ?being replaced by the MPLS",""
"","","","Label Distribution Protocol 34",""
"712","TCP","","Topology Broadcast based on","Port is officialy registered by IANA for this application"
"","","","Reverse-Path Forwarding routing protocol (TBRPF) (RFC 3684)",""
"712","","UDP","Promise RAID Controller citation","Port is not officialy registered by IANA for this application"
"","","","needed",""
"720","TCP","","SMQP, Simple Message Queue","Port is not officialy registered by IANA for this application"
"","","","Protocol citation needed",""
"749","TCP","UDP","Kerberos (protocol)","Port is officialy registered by IANA for this application"
"","","","administration",""
"750","","UDP","kerberos-iv, Kerberos version IV","Port is officialy registered by IANA for this application"
"751","TCP","UDP","kerberos_master, Kerberos","Port is not officialy registered by IANA for this application"
"","","","authentication",""
"752","","UDP","passwd_server, Kerberos Password","Port is not officialy registered by IANA for this application"
"","","","(kpasswd) server",""
"753","TCP","","Reverse Routing Header (rrh)","Port is officialy registered by IANA for this application"
"","","","35",""
"753","","UDP","Reverse Routing Header (rrh)","Port is officialy registered by IANA for this application"
"753","","UDP","userreg_server, Kerberos userreg","Port is not officialy registered by IANA for this application"
"","","","server",""
"754","TCP","","tell send citation needed","Port is officialy registered by IANA for this application"
"754","TCP","","krb5_prop, Kerberos v5 slave","Port is not officialy registered by IANA for this application"
"","","","propagation",""
"754","","UDP","tell send citation needed","Port is officialy registered by IANA for this application"
"760","TCP","UDP","krbupdate kreg , Kerberos registration","Port is not officialy registered by IANA for this application"
"782","TCP","","Conserver serial-console","Port is not officialy registered by IANA for this application"
"","","","management server",""
"783","TCP","","SpamAssassin spamd daemon","Port is not officialy registered by IANA for this application"
"808","TCP","","Microsoft Net.TCP Port Sharing","Port is officialy registered by IANA for this application"
"","","","Service citation needed",""
"829","TCP","","CMP (Certificate Management","Port is not officialy registered by IANA for this application"
"","","","Protocol) citation needed",""
"843","TCP","","Adobe Flash 36","Port is officialy registered by IANA for this application"
"847","TCP","","DHCP Failover protocol","Port is officialy registered by IANA for this application"
"848","TCP","UDP","Group Domain Of Interpretation","Port is officialy registered by IANA for this application"
"","","","(GDOI) protocol citation needed",""
"860","TCP","","iSCSI (RFC 3720)","Port is officialy registered by IANA for this application"
"873","TCP","","rsync file synchronisation","Official USA only"
"","","","protocol",""
"888","TCP","","cddbp, CD DataBase (CDDB)","Port is not officialy registered by IANA for this application"
"","","","protocol (CDDBP)?unassigned but widespread use",""
"901","TCP","","Samba Web Administration Tool","Port is not officialy registered by IANA for this application"
"","","","(SWAT)",""
"901","TCP","","VMware Virtual Infrastructure","Port is not officialy registered by IANA for this application"
"","","","Client (UDP from server being managed to management console)",""
"901","","UDP","VMware Virtual Infrastructure","Port is not officialy registered by IANA for this application"
"","","","Client (UDP from server being managed to management console)",""
"902","TCP","","ideafarm-door citation","Port is officialy registered by IANA for this application"
"","","","needed",""
"902","TCP","","VMware Server Console (TCP from","Port is not officialy registered by IANA for this application"
"","","","management console to server being Managed)",""
"902","","UDP","ideafarm-door citation","Port is officialy registered by IANA for this application"
"","","","needed",""
"902","","UDP","VMware Server Console (UDP from","Port is not officialy registered by IANA for this application"
"","","","server being managed to management console)",""
"903","TCP","","VMware Remote Console 37","Port is not officialy registered by IANA for this application"
"904","TCP","","VMware Server Alternate (if 902","Port is not officialy registered by IANA for this application"
"","","","is in use, i.e. SUSE linux)",""
"911","TCP","","Network Console on Acid","Port is not officialy registered by IANA for this application"
"","","","(NCA)?local tty redirection over OpenSSH",""
"944","","UDP","Network File System (protocol)","Port is not officialy registered by IANA for this application"
"","","","Service",""
"953","TCP","UDP","Domain Name System (DNS) RNDC","Port is not officialy registered by IANA for this application"
"","","","Service",""
"973","","UDP","Network File System (protocol)","Port is not officialy registered by IANA for this application"
"","","","over IPv6 Service",""
"981","TCP","","SofaWare Technologies Remote","Port is not officialy registered by IANA for this application"
"","","","HTTPS management for firewall devices running embedded Check Point FireWall-1",""
"","","","software",""
"987","TCP","","Microsoft This Secure Hypertext","Port is not officialy registered by IANA for this application"
"","","","Transfer Protocol (HTTPS) port makes Windows SharePoint Services viewable",""
"","","","through Remote Web Workplace citation needed",""
"989","TCP","UDP","FTPS Protocol (data): FTP over","Port is officialy registered by IANA for this application"
"","","","TLS/SSL",""
"990","TCP","UDP","FTPS Protocol (control): FTP","Port is officialy registered by IANA for this application"
"","","","over TLS/SSL",""
"991","TCP","UDP","NAS (Netnews Administration","Port is officialy registered by IANA for this application"
"","","","System) 38",""
"992","TCP","UDP","TELNET protocol over TLS/SSL","Port is officialy registered by IANA for this application"
"993","TCP","","Internet Message Access Protocol","Port is officialy registered by IANA for this application"
"","","","over SSL (IMAPS)",""
"995","TCP","","Post Office Protocol 3 over","Port is officialy registered by IANA for this application"
"","","","TLS/SSL (POP3S)",""
"999","TCP","","ScimoreDB Database System","Port is not officialy registered by IANA for this application"
"","","","citation needed",""
"1002","TCP","","Opsware agent (aka cogbot)","Port is not officialy registered by IANA for this application"
"","","","citation needed",""
"1023","TCP","UDP","The Internet Assigned Numbers","Port is officialy registered by IANA for this application"
"","","","Authority (IANA) port number reserver",""
"1024","TCP","UDP","The Internet Assigned Numbers","Port is officialy registered by IANA for this application"
"","","","Authority (IANA) port number reserver",""
"1025","TCP","","NFS or IIS or Teradata","Port is not officialy registered by IANA for this application"
"1026","TCP","","Often used by Microsoft DCOM","Port is not officialy registered by IANA for this application"
"","","","services",""
"1029","TCP","","Often used by Microsoft DCOM","Port is not officialy registered by IANA for this application"
"","","","services",""
"1058","TCP","UDP","nim, IBM AIX Network","Port is officialy registered by IANA for this application"
"","","","Installation Manager (NIM)",""
"1059","TCP","UDP","nimreg, IBM AIX Network","Port is officialy registered by IANA for this application"
"","","","Installation Manager (NIM)",""
"1080","TCP","","SOCKS proxy","Port is officialy registered by IANA for this application"
"1085","TCP","UDP","WebObjects","Port is officialy registered by IANA for this application"
"1098","TCP","UDP","rmiactivation, RMI Activation","Port is officialy registered by IANA for this application"
"1099","TCP","UDP","rmiregistry, RMI Registry","Port is officialy registered by IANA for this application"
"1109","","UDP","The Internet Assigned Numbers","Port is officialy registered by IANA for this application"
"","","","Authority (IANA) port number reserver",""
"1109","TCP","","The Internet Assigned Numbers","Port is officialy registered by IANA for this application"
"","","","Authority (IANA) port number reserver",""
"1109","TCP","","Kerberos Post Office Protocol","Port is not officialy registered by IANA for this application"
"","","","(KPOP)",""
"1110","","UDP","EasyBits School network","Port is not officialy registered by IANA for this application"
"","","","discovery protocol (for Intel?s CMPC platform)",""
"1140","TCP","UDP","AutoNOC protocol","Port is officialy registered by IANA for this application"
"1167","","UDP","phone, conference calling","Port is not officialy registered by IANA for this application"
"1169","TCP","UDP","Tripwire","Port is officialy registered by IANA for this application"
"1176","TCP","","Perceptive Automation Indigo","Port is officialy registered by IANA for this application"
"","","","Home automation server",""
"1182","TCP","UDP","AcceleNet Intelligent Transfer","Port is officialy registered by IANA for this application"
"","","","Protocol",""
"1194","TCP","UDP","OpenVPN","Port is officialy registered by IANA for this application"
"1198","TCP","UDP","The cajo project Free dynamic","Port is officialy registered by IANA for this application"
"","","","transparent distributed computing in Java",""
"1200","TCP","","scol, protocol used by SCOL 3D","Port is officialy registered by IANA for this application"
"","","","virtual worlds server to answer world name resolution client request 39",""
"1200","","UDP","scol, protocol used by SCOL 3D","Port is officialy registered by IANA for this application"
"","","","virtual worlds server to answer world name resolution client request",""
"1200","","UDP","Steam Friends Applet","Port is not officialy registered by IANA for this application"
"1214","TCP","","Kazaa","Port is officialy registered by IANA for this application"
"1217","TCP","","Uvora Online","Port is not officialy registered by IANA for this application"
"1220","TCP","","QuickTime Streaming Server","Port is officialy registered by IANA for this application"
"","","","administration",""
"1223","TCP","UDP","TGP, TrulyGlobal Protocol, also","Port is officialy registered by IANA for this application"
"","","","known as ?The Gur Protocol? (named for Gur Kimchi of TrulyGlobal)",""
"1234","","UDP","VLC media player Default port","Port is not officialy registered by IANA for this application"
"","","","for UDP/RTP stream",""
"1236","TCP","","Symantec BindView Control UNIX","Port is not officialy registered by IANA for this application"
"","","","Default port for TCP management server connections",""
"1241","TCP","UDP","Nessus Security Scanner","Port is officialy registered by IANA for this application"
"1270","TCP","UDP","Microsoft System Center","Port is officialy registered by IANA for this application"
"","","","Operations Manager (SCOM) (formerly Microsoft Operations Manager (MOM)) agent",""
"1293","TCP","UDP","IPSec (Internet Protocol","Port is officialy registered by IANA for this application"
"","","","Security)",""
"1301","TCP","","Palmer Performance OBDNet","Port is not officialy registered by IANA for this application"
"1309","TCP","","Altera Quartus jtagd","Port is not officialy registered by IANA for this application"
"1311","TCP","","Dell OpenManage HTTPS","Port is officialy registered by IANA for this application"
"1313","TCP","","Xbiim (Canvii server)","Port is not officialy registered by IANA for this application"
"1319","TCP","","AMX ICSP","Port is officialy registered by IANA for this application"
"1319","","UDP","AMX ICSP","Port is officialy registered by IANA for this application"
"1337","","UDP","Men and Mice DNS","Port is officialy registered by IANA for this application"
"1337","TCP","","Men and Mice DNS","Port is officialy registered by IANA for this application"
"1337","TCP","","PowerFolder P2P Encrypted File","Port is not officialy registered by IANA for this application"
"","","","Synchronization Program",""
"1337","TCP","","WASTE Encrypted File Sharing","Port is not officialy registered by IANA for this application"
"","","","Program",""
"1344","TCP","","Internet Content Adaptation","Port is officialy registered by IANA for this application"
"","","","Protocol",""
"1352","TCP","","IBM Lotus Notes/Domino 40 (RPC) protocol","Port is officialy registered by IANA for this application"
"1387","TCP","UDP","cadsi-lm, LMS International","Port is officialy registered by IANA for this application"
"","","","(formerly Computer Aided Design Software, Inc. (CADSI)) LM",""
"1414","TCP","","IBM WebSphere MQ (formerly known","Port is officialy registered by IANA for this application"
"","","","as MQSeries)",""
"1417","TCP","UDP","Timbuktu Service 1 Port","Port is officialy registered by IANA for this application"
"1418","TCP","UDP","Timbuktu Service 2 Port","Port is officialy registered by IANA for this application"
"1419","TCP","UDP","Timbuktu Service 3 Port","Port is officialy registered by IANA for this application"
"1420","TCP","UDP","Timbuktu Service 4 Port","Port is officialy registered by IANA for this application"
"1431","TCP","","Reverse Gossip Transport","Port is officialy registered by IANA for this application"
"","","","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 system",""
"1433","TCP","","MSSQL (Microsoft SQL Server","Port is officialy registered by IANA for this application"
"","","","database management system) Server",""
"1434","TCP","UDP","MSSQL (Microsoft SQL Server","Port is officialy registered by IANA for this application"
"","","","database management system) Monitor",""
"1470","TCP","","Solarwinds Kiwi Log Server","Port is officialy registered by IANA for this application"
"1494","TCP","","Citrix XenApp Independent","Port is officialy registered by IANA for this application"
"","","","Computing Architecture (ICA) thin client protocol",""
"1500","TCP","","NetGuard GuardianPro firewall","Port is not officialy registered by IANA for this application"
"","","","(NT4-based) Remote Management",""
"1501","","UDP","NetGuard GuardianPro firewall","Port is not officialy registered by IANA for this application"
"","","","(NT4-based) Authentication Client",""
"1503","TCP","UDP","Windows Live Messenger","Port is not officialy registered by IANA for this application"
"","","","(Whiteboard and Application Sharing)",""
"1512","TCP","UDP","Microsoft Windows Internet Name","Port is officialy registered by IANA for this application"
"","","","Service (WINS)",""
"1513","TCP","UDP","Garena Garena Gaming Client","Port is officialy registered by IANA for this application"
"1521","TCP","","nCube License Manager","Port is officialy registered by IANA for this application"
"1521","TCP","","Oracle database default","Port is not officialy registered by IANA for this application"
"","","","listener, in future releases official port 2483",""
"1524","TCP","UDP","ingreslock, ingres","Port is officialy registered by IANA for this application"
"1526","TCP","","Oracle database common","Port is not officialy registered by IANA for this application"
"","","","alternative for listener",""
"1527","TCP","","Apache Derby Network Server","Port is not officialy registered by IANA for this application"
"","","","default port",""
"1533","TCP","","IBM Sametime IM?Virtual","Port is officialy registered by IANA for this application"
"","","","Places Chat Microsoft SQL Server",""
"1534","","UDP","Eclipse Target Communication","Port is not officialy registered by IANA for this application"
"","","","Framework (TCF) agent discovery 41",""
"1547","TCP","UDP","Laplink","Port is officialy registered by IANA for this application"
"1550","TCP","UDP","3m-image-lm Image Storage","Port is officialy registered by IANA for this application"
"","","","license manager 3M Company",""
"1550","","","Gadu-Gadu (direct","Port is not officialy registered by IANA for this application"
"","","","client-to-client)",""
"1556","TCP","","Jeex-RB (direct","Port is not officialy registered by IANA for this application"
"","","","client-to-db.service)",""
"1581","","UDP","MIL STD 2045-47001 VMF","Port is officialy registered by IANA for this application"
"1589","","UDP","Cisco VQP (VLAN Query Protocol)","Port is not officialy registered by IANA for this application"
"","","","/ VMPS",""
"1590","TCP","","GE Smallworld Datastore Server","Port is not officialy registered by IANA for this application"
"","","","(SWMFS/Smallworld Master Filesystem)",""
"1627","","","iSketch","Port is not officialy registered by IANA for this application"
"1645","TCP","UDP","radius auth, RADIUS","Port is not officialy registered by IANA for this application"
"","","","authentication protocol (default for Cisco and Juniper Networks RADIUS",""
"","","","servers)",""
"1646","TCP","UDP","radius acct, RADIUS","Port is not officialy registered by IANA for this application"
"","","","authentication protocol (default for Cisco and Juniper Networks RADIUS",""
"","","","servers)",""
"1666","TCP","","Perforce","Port is not officialy registered by IANA for this application"
"1677","TCP","UDP","Novell GroupWise clients in","Port is officialy registered by IANA for this application"
"","","","client/server access mode",""
"1688","TCP","","Microsoft Key Management Service","Port is not officialy registered by IANA for this application"
"","","","for KMS Windows Activation",""
"1700","","UDP","Cisco RADIUS Change of","Port is not officialy registered by IANA for this application"
"","","","Authorization for TrustSec",""
"1701","","UDP","Layer 2 Forwarding Protocol","Port is officialy registered by IANA for this application"
"","","","(L2F) & Layer 2 Tunneling Protocol (L2TP)",""
"1707","TCP","UDP","Windward Studios","Port is officialy registered by IANA for this application"
"1707","","TCP","Romtoc Packet Protocol (L2F)","Port is not officialy registered by IANA for this application"
"","","","& Layer 2 Tunneling Protocol (L2TP)",""
"1716","TCP","","America?s Army Massively","Port is not officialy registered by IANA for this application"
"","","","multiplayer online game (MMO)",""
"1719","","UDP","H.323 Registration and alternate","Port is officialy registered by IANA for this application"
"","","","communication",""
"1720","TCP","","H.323 Call signalling","Port is officialy registered by IANA for this application"
"1723","TCP","UDP","Microsoft Point-to-Point","Port is officialy registered by IANA for this application"
"","","","Tunneling Protocol (PPTP)",""
"1725","","UDP","Valve Steam Client","Port is not officialy registered by IANA for this application"
"1755","TCP","UDP","Microsoft Media Services (MMS,","Port is officialy registered by IANA for this application"
"","","","ms-streaming)",""
"1761","","UDP","cft-0","Port is officialy registered by IANA for this application"
"1761","TCP","","cft-0","Port is officialy registered by IANA for this application"
"1761","TCP","","Novell Zenworks Remote Control","Port is not officialy registered by IANA for this application"
"","","","utility",""
"1762?1768","TCP","UDP","cft-1 to cft-7","Port is officialy registered by IANA for this application"
"1792","TCP","UDP","Moby","Port is not officialy registered by IANA for this application"
"1801","TCP","UDP","Microsoft Message Queuing","Port is officialy registered by IANA for this application"
"1812","TCP","UDP","radius, RADIUS authentication","Port is officialy registered by IANA for this application"
"","","","protocol",""
"1813","TCP","UDP","radacct, RADIUS accounting","Port is officialy registered by IANA for this application"
"","","","protocol",""
"1863","TCP","","MSNP (Microsoft Notification","Port is officialy registered by IANA for this application"
"","","","Protocol), used by the .NET Messenger Service and a number of Instant",""
"","","","Messaging clients",""
"1883","TCP","UDP","MQ Telemetry Transport (MQTT),","Port is officialy registered by IANA for this application"
"","","","formerly known as MQIsdp (MQSeries SCADA protocol)",""
"1886","TCP","","Leonardo over IP Pro2col Ltd","Port is not officialy registered by IANA for this application"
"1900","","UDP","Microsoft SSDP Enables discovery","Port is officialy registered by IANA for this application"
"","","","of UPnP devices",""
"1920","TCP","","IBM Tivoli Monitoring Console","Port is not officialy registered by IANA for this application"
"","","","(https)",""
"1935","TCP","","Adobe Systems Macromedia Flash","Port is officialy registered by IANA for this application"
"","","","Real Time Messaging Protocol (RTMP) ?plain? protocol",""
"1947","TCP","UDP","SentinelSRM (hasplm), Aladdin","Port is officialy registered by IANA for this application"
"","","","HASP License Manager",""
"1967","","UDP","Cisco IOS IP Service Level","Port is not officialy registered by IANA for this application"
"","","","Agreements (IP SLAs) Control Protocol",""
"1970","TCP","UDP","Netop Business Solutions Netop","Port is officialy registered by IANA for this application"
"","","","Remote Control",""
"1971","TCP","UDP","Netop Business Solutions Netop","Port is officialy registered by IANA for this application"
"","","","School",""
"1972","TCP","UDP","InterSystems Cach?","Port is officialy registered by IANA for this application"
"1975?1977","","UDP","Cisco TCO (Documentation)","Port is officialy registered by IANA for this application"
"1984","TCP","","Big Brother and related Xymon","Port is officialy registered by IANA for this application"
"","","","(formerly Hobbit) System and Network Monitor",""
"1985","","UDP","Cisco HSRP","Port is officialy registered by IANA for this application"
"1994","TCP","UDP","Cisco STUN-SDLC (Serial","Port is officialy registered by IANA for this application"
"","","","Tunneling?Synchronous Data Link Control) protocol",""
"1997","TCP","","Chizmo Networks Transfer Tool","Port is not officialy registered by IANA for this application"
"1998","TCP","UDP","Cisco X.25 over TCP (XOT)","Port is officialy registered by IANA for this application"
"","","","service",""
"2000","TCP","UDP","Cisco SCCP (Skinny)","Port is officialy registered by IANA for this application"
"2001","","UDP","CAPTAN Test Stand System","Port is not officialy registered by IANA for this application"
"2002","TCP","","Secure Access Control Server","Port is not officialy registered by IANA for this application"
"","","","(ACS) for Windows",""
"2030","","","Oracle Services for Microsoft","Port is not officialy registered by IANA for this application"
"","","","Transaction Server",""
"2031","TCP","UDP","mobrien-chat(http://chat.mobrien.com:2031)","Port is officialy registered by IANA for this application"
"2041","TCP","","Mail.Ru Agent communication","Port is not officialy registered by IANA for this application"
"","","","protocol",""
"2049","","UDP","Network File System","Port is officialy registered by IANA for this application"
"2049","","UDP","shilp","Port is officialy registered by IANA for this application"
"2053","TCP","","knetd Kerberos de-multiplexor","Port is not officialy registered by IANA for this application"
"2056","","UDP","Civilization 4 multiplayer","Port is not officialy registered by IANA for this application"
"2074","TCP","UDP","Vertel VMF SA (i.e. App..","Port is officialy registered by IANA for this application"
"","","","SpeakFreely)",""
"2082","TCP","","Infowave Mobility Server","Port is officialy registered by IANA for this application"
"2082","TCP","","CPanel default","Port is not officialy registered by IANA for this application"
"2083","TCP","","Secure Radius Service (radsec)","Port is officialy registered by IANA for this application"
"2083","TCP","","CPanel default SSL","Port is not officialy registered by IANA for this application"
"2086","TCP","","GNUnet","Port is officialy registered by IANA for this application"
"2086","TCP","","WebHost Manager default","Port is not officialy registered by IANA for this application"
"2087","TCP","","WebHost Manager default SSL","Port is not officialy registered by IANA for this application"
"2095","TCP","","CPanel default Web mail","Port is not officialy registered by IANA for this application"
"2096","TCP","","CPanel default SSL Web mail","Port is not officialy registered by IANA for this application"
"2102","TCP","UDP","zephyr-srv Project Athena Zephyr","Port is officialy registered by IANA for this application"
"","","","Notification Service server",""
"2103","TCP","UDP","zephyr-clt Project Athena Zephyr","Port is officialy registered by IANA for this application"
"","","","Notification Service serv-hm connection",""
"2104","TCP","UDP","zephyr-hm Project Athena Zephyr","Port is officialy registered by IANA for this application"
"","","","Notification Service hostmanager",""
"2105","TCP","UDP","IBM MiniPay","Port is officialy registered by IANA for this application"
"2105","TCP","UDP","eklogin Kerberos encrypted","Port is not officialy registered by IANA for this application"
"","","","remote login (rlogin)",""
"2105","TCP","UDP","zephyr-hm-srv Project Athena","Port is not officialy registered by IANA for this application"
"","","","Zephyr Notification Service hm-serv connection (should use port 2102)",""
"2121","TCP","","FTP proxy","Port is not officialy registered by IANA for this application"
"2144","TCP","","Iron Mountain LiveVault Agent","Port is not officialy registered by IANA for this application"
"2145","TCP","","Iron Mountain LiveVault Agent","Port is not officialy registered by IANA for this application"
"2156","","UDP","Talari Reliable Protocol","Port is officialy registered by IANA for this application"
"2160","TCP","","APC Agent","Port is officialy registered by IANA for this application"
"2161","TCP","","APC Agent","Port is officialy registered by IANA for this application"
"2181","TCP","UDP","EForward-document transport","Port is officialy registered by IANA for this application"
"","","","system",""
"2190","","UDP","TiVoConnect Beacon","Port is not officialy registered by IANA for this application"
"2200","","UDP","Tuxanci game server 42","Port is not officialy registered by IANA for this application"
"2210","","UDP","NOAAPORT Broadcast Network","Port is officialy registered by IANA for this application"
"2210","TCP","","NOAAPORT Broadcast Network","Port is officialy registered by IANA for this application"
"2210","TCP","","MikroTik Remote management for","Port is not officialy registered by IANA for this application"
"","","","?The Dude?",""
"2211","","UDP","EMWIN","Port is officialy registered by IANA for this application"
"2211","TCP","","EMWIN","Port is officialy registered by IANA for this application"
"2211","TCP","","MikroTik Secure management for","Port is not officialy registered by IANA for this application"
"","","","?The Dude?",""
"2212","","UDP","LeeCO POS Server Service","Port is officialy registered by IANA for this application"
"2212","TCP","","LeeCO POS Server Service","Port is officialy registered by IANA for this application"
"2212","TCP","","Port-A-Pour Remote WinBatch","Port is not officialy registered by IANA for this application"
"2219","TCP","UDP","NetIQ NCAP Protocol","Port is officialy registered by IANA for this application"
"2220","TCP","UDP","NetIQ End2End","Port is officialy registered by IANA for this application"
"2221","TCP","","ESET Anti-virus updates","Port is not officialy registered by IANA for this application"
"2222","TCP","","DirectAdmin default & ESET","Port is not officialy registered by IANA for this application"
"","","","Remote Administration",""
"2223","","UDP","Microsoft Office OS X antipiracy","Port is not officialy registered by IANA for this application"
"","","","network monitor",""
"2261","TCP","UDP","CoMotion Master","Port is officialy registered by IANA for this application"
"2262","TCP","UDP","CoMotion Backup","Port is officialy registered by IANA for this application"
"2301","TCP","","HP System Management Redirect to","Port is not officialy registered by IANA for this application"
"","","","port 2381",""
"2302","","UDP","ArmA multiplayer (default for","Port is not officialy registered by IANA for this application"
"","","","game)",""
"2302","","UDP","Halo: Combat Evolved multiplayer","Port is not officialy registered by IANA for this application"
"2303","","UDP","ArmA multiplayer (default for","Port is not officialy registered by IANA for this application"
"","","","server reporting) (default port for game +1)",""
"2305","","UDP","ArmA multiplayer (default for","Port is not officialy registered by IANA for this application"
"","","","VoN) (default port for game +3)",""
"2323","TCP","","Philips TVs based on","Port is not officialy registered by IANA for this application"
"","","","jointSPACE 43",""
"2369","TCP","","Default for BMC Software","Port is officialy registered by IANA for this application"
"","","","Control-M/Server?Configuration Agent, though often changed during",""
"","","","installation",""
"2370","TCP","","Default for BMC Software","Port is officialy registered by IANA for this application"
"","","","Control-M/Server?to allow the Control-M/Enterprise Manager to connect",""
"","","","to the Control-M/Server, though often changed during installation",""
"2379","TCP","","KGS Go Server","Port is not officialy registered by IANA for this application"
"2381","TCP","","HP Insight Manager default for","Port is not officialy registered by IANA for this application"
"","","","Web server",""
"2401","TCP","","CVS version control system","Port is not officialy registered by IANA for this application"
"2404","TCP","","IEC 60870-5 -104, used to send","Port is officialy registered by IANA for this application"
"","","","electric power telecontrol messages between two systems via directly",""
"","","","connected data circuits",""
"2420","","UDP","Westell Remote Access","Port is officialy registered by IANA for this application"
"2427","","UDP","Cisco MGCP","Port is officialy registered by IANA for this application"
"2447","TCP","UDP","ovwdb?OpenView Network","Port is officialy registered by IANA for this application"
"","","","Node Manager (NNM) daemon",""
"2483","TCP","UDP","Oracle database listening for","Port is officialy registered by IANA for this application"
"","","","unsecure client connections to the listener, replaces port 1521",""
"2484","TCP","UDP","Oracle database listening for","Port is officialy registered by IANA for this application"
"","","","SSL client connections to the listener",""
"2500","TCP","","THE?SMESSENGER listening for","Port is officialy registered by IANA for this application"
"","","","The?sMessenger client connections",""
"2501","TCP","","TheosNet-Admin listening for","Port is officialy registered by IANA for this application"
"","","","The?sMessenger client connections",""
"2518","TCP","UDP","Willy","Port is officialy registered by IANA for this application"
"2525","TCP","","SMTP alternate","Port is not officialy registered by IANA for this application"
"2535","TCP","","MADCAP","Port is officialy registered by IANA for this application"
"2546","TCP","UDP","EVault?Data Protection","Port is not officialy registered by IANA for this application"
"","","","Services",""
"2593","TCP","UDP","RunUO?Ultima Online server","Port is not officialy registered by IANA for this application"
"2598","TCP","","new ICA (Citrix) ?when","Port is not officialy registered by IANA for this application"
"","","","Session Reliability is enabled, TCP port 2598 replaces port 1494",""
"2599","TCP","","SonicWALL Antispam traffic","Port is not officialy registered by IANA for this application"
"","","","between Remote Analyzer (RA) and Control Center (CC)",""
"2610","TCP","","Dark Ages","Port is not officialy registered by IANA for this application"
"2612","TCP","UDP","QPasa from MQSoftware","Port is officialy registered by IANA for this application"
"2638","TCP","","Sybase database listener","Port is not officialy registered by IANA for this application"
"2636","TCP","","Solve Service","Port is officialy registered by IANA for this application"
"2641","TCP","UDP","HDL Server from CNRI","Port is officialy registered by IANA for this application"
"2642","TCP","UDP","Tragic","Port is officialy registered by IANA for this application"
"2698","TCP","UDP","Citel / MCK IVPIP","Port is officialy registered by IANA for this application"
"2700?2800","TCP","","KnowShowGo P2P","Port is officialy registered by IANA for this application"
"2710","TCP","","XBT Bittorrent Tracker","Port is not officialy registered by IANA for this application"
"2710","","UDP","XBT Bittorrent Tracker","Port is not officialy registered by IANA for this application"
"","","","experimental UDP tracker extension",""
"2710","TCP","","Knuddels.de","Port is not officialy registered by IANA for this application"
"2735","TCP","UDP","NetIQ Monitor Console","Port is officialy registered by IANA for this application"
"2809","TCP","","corbaloc:iiop URL, per the CORBA","Port is officialy registered by IANA for this application"
"","","","3.0.3 specification",""
"2809","TCP","","IBM WebSphere Application Server","Port is not officialy registered by IANA for this application"
"","","","(WAS) Bootstrap/rmi default",""
"2809","","UDP","corbaloc:iiop URL, per the CORBA","Port is officialy registered by IANA for this application"
"","","","3.0.3 specification.",""
"2868","TCP","UDP","Norman Proprietary Event","Port is officialy registered by IANA for this application"
"","","","Protocol NPEP",""
"2944","","UDP","Megaco Text H.248","Port is not officialy registered by IANA for this application"
"2945","","UDP","Megaco Binary (ASN.1) H.248","Port is not officialy registered by IANA for this application"
"2947","TCP","","gpsd GPS daemon","Port is officialy registered by IANA for this application"
"2948","TCP","UDP","WAP-push Multimedia Messaging","Port is officialy registered by IANA for this application"
"","","","Service (MMS)",""
"2949","TCP","UDP","WAP-pushsecure Multimedia","Port is officialy registered by IANA for this application"
"","","","Messaging Service (MMS)",""
"2967","TCP","","Symantec AntiVirus Corporate","Port is not officialy registered by IANA for this application"
"","","","Edition",""
"3000","TCP","","Miralix License server","Port is not officialy registered by IANA for this application"
"3000","TCP","","Cloud9 Integrated Development","Port is not officialy registered by IANA for this application"
"","","","Environment server",""
"3000","","UDP","Distributed Interactive","Port is not officialy registered by IANA for this application"
"","","","Simulation (DIS), modifiable default",""
"3000","TCP","","Ruby on Rails development","Port is not officialy registered by IANA for this application"
"","","","default 44",""
"3001","TCP","","Miralix Phone Monitor","Port is not officialy registered by IANA for this application"
"3001","TCP","","Opsware server (Satellite)","Port is not officialy registered by IANA for this application"
"3002","TCP","","Miralix CSTA","Port is not officialy registered by IANA for this application"
"3003","TCP","","Miralix GreenBox API","Port is not officialy registered by IANA for this application"
"3004","TCP","","Miralix InfoLink","Port is not officialy registered by IANA for this application"
"3005","TCP","","Miralix TimeOut","Port is not officialy registered by IANA for this application"
"3006","TCP","","Miralix SMS Client Connector","Port is not officialy registered by IANA for this application"
"3007","TCP","","Miralix OM Server","Port is not officialy registered by IANA for this application"
"3008","TCP","","Miralix Proxy","Port is not officialy registered by IANA for this application"
"3017","TCP","","Miralix IVR and Voicemail","Port is not officialy registered by IANA for this application"
"3025","TCP","","netpd.org","Port is not officialy registered by IANA for this application"
"3030","TCP","UDP","NetPanzer","Port is not officialy registered by IANA for this application"
"3050","TCP","UDP","gds_db (Interbase/Firebird)","Port is officialy registered by IANA for this application"
"3051","TCP","UDP","Galaxy Server (Gateway Ticketing","Port is officialy registered by IANA for this application"
"","","","Systems)",""
"3052","TCP","UDP","APC PowerChute Network 45","Port is officialy registered by IANA for this application"
"3074","TCP","UDP","Xbox LIVE and/or Games for","Port is officialy registered by IANA for this application"
"","","","Windows ? LIVE",""
"3100","TCP","","HTTP used by Tatsoft as the","Port is not officialy registered by IANA for this application"
"","","","default listen port",""
"3101","TCP","","BlackBerry Enterprise Server","Port is not officialy registered by IANA for this application"
"","","","communication to cloud",""
"3128","TCP","","HTTP used by Web caches and the","Port is not officialy registered by IANA for this application"
"","","","default for the Squid (software)",""
"3128","TCP","","HTTP used by Tatsoft as the","Port is not officialy registered by IANA for this application"
"","","","default client connection",""
"3225","TCP","UDP","FCIP (Fiber Channel over","Port is officialy registered by IANA for this application"
"","","","Internet Protocol)",""
"3233","TCP","UDP","WhiskerControl research control","Port is officialy registered by IANA for this application"
"","","","protocol",""
"3235","TCP","UDP","Galaxy Network Service (Gateway","Port is officialy registered by IANA for this application"
"","","","Ticketing Systems)",""
"3260","TCP","","iSCSI target","Port is officialy registered by IANA for this application"
"3268","TCP","UDP","msft-gc, Microsoft Global","Port is officialy registered by IANA for this application"
"","","","Catalog (LDAP service which contains data from Active Directory forests)",""
"3269","TCP","UDP","msft-gc-ssl, Microsoft Global","Port is officialy registered by IANA for this application"
"","","","Catalog over SSL (similar to port 3268, LDAP over SSL)",""
"3283","TCP","","Apple Remote Desktop reporting","Port is officialy registered by IANA for this application"
"","","","(officially Net Assistant, referring to an earlier product)",""
"3299","TCP","","SAP-Router (routing application","Port is not officialy registered by IANA for this application"
"","","","proxy for SAP R/3)",""
"3300","TCP","UDP","Debate Gopher backend database","Port is not officialy registered by IANA for this application"
"","","","system",""
"3305","TCP","UDP","odette-ftp, Odette File Transfer","Port is officialy registered by IANA for this application"
"","","","Protocol (OFTP)",""
"3306","TCP","UDP","MySQL database system","Port is officialy registered by IANA for this application"
"3313","TCP","","Verisys ? File Integrity","Port is not officialy registered by IANA for this application"
"","","","Monitoring Software",""
"3333","TCP","","Network Caller ID server","Port is not officialy registered by IANA for this application"
"3333","TCP","","CruiseControl.rb 46","Port is not officialy registered by IANA for this application"
"3386","TCP","UDP","GTP? 3GPP GSM/UMTS CDR logging","Port is officialy registered by IANA for this application"
"","","","protocol",""
"3389","TCP","UDP","Microsoft Terminal Server (RDP)","Port is officialy registered by IANA for this application"
"","","","officially registered as Windows Based Terminal (WBT) ? Link",""
"3396","TCP","UDP","Novell NDPS Printer Agent","Port is officialy registered by IANA for this application"
"3412","TCP","UDP","xmlBlaster","Port is officialy registered by IANA for this application"
"3455","TCP","UDP","RSVP Reservation Protocol","Port is officialy registered by IANA for this application"
"3423","TCP","","Xware xTrm Communication","Port is officialy registered by IANA for this application"
"","","","Protocol",""
"3424","TCP","","Xware xTrm Communication","Port is officialy registered by IANA for this application"
"","","","Protocol over SSL",""
"3478","TCP","UDP","STUN, a protocol for NAT","Port is officialy registered by IANA for this application"
"","","","traversal 47",""
"3478","TCP","UDP","TURN, a protocol for NAT","Port is officialy registered by IANA for this application"
"","","","traversal 48",""
"3483","","UDP","Slim Devices discovery protocol","Port is officialy registered by IANA for this application"
"3483","TCP","","Slim Devices SlimProto protocol","Port is officialy registered by IANA for this application"
"3516","TCP","UDP","Smartcard Port","Port is officialy registered by IANA for this application"
"3527","","UDP","Microsoft Message Queuing","Port is officialy registered by IANA for this application"
"3535","TCP","","SMTP alternate","Port is not officialy registered by IANA for this application"
"3537","TCP","UDP","ni-visa-remote","Port is not officialy registered by IANA for this application"
"3544","","UDP","Teredo tunneling","Port is officialy registered by IANA for this application"
"3605","","UDP","ComCam IO Port","Port is officialy registered by IANA for this application"
"3606","TCP","UDP","Splitlock Server","Port is officialy registered by IANA for this application"
"3632","TCP","","distributed compiler","Port is officialy registered by IANA for this application"
"3689","TCP","","Digital Audio Access Protocol","Port is officialy registered by IANA for this application"
"","","","(DAAP)?used by Apple?s iTunes and AirPort Express",""
"3690","TCP","UDP","Subversion (SVN) version control","Port is officialy registered by IANA for this application"
"","","","system",""
"3702","TCP","UDP","Web Services Dynamic Discovery","Port is officialy registered by IANA for this application"
"","","","(WS-Discovery), used by various components of Windows Vista",""
"3723","TCP","UDP","Used by many Battle.net Blizzard","Port is not officialy registered by IANA for this application"
"","","","games (Diablo II, Warcraft II, Warcraft III, StarCraft)",""
"3724","TCP","","World of Warcraft Online gaming","Port is officialy registered by IANA for this application"
"","","","MMORPG",""
"3724","TCP","","Club Penguin Disney online game","Port is not officialy registered by IANA for this application"
"","","","for kids",""
"3724","","UDP","World of Warcraft Online gaming","Port is officialy registered by IANA for this application"
"","","","MMORPG",""
"3784","TCP","UDP","Ventrilo VoIP program used by","Port is not officialy registered by IANA for this application"
"","","","Ventrilo",""
"3785","","UDP","Ventrilo VoIP program used by","Port is not officialy registered by IANA for this application"
"","","","Ventrilo",""
"3799","","UDP","IETF RADIUS Change of","Port is not officialy registered by IANA for this application"
"","","","Authorization",""
"3800","TCP","","Used by HGG programs","Port is not officialy registered by IANA for this application"
"3880","TCP","UDP","IGRS","Port is officialy registered by IANA for this application"
"3868","TCP","SCTP","Diameter base protocol (RFC","Port is officialy registered by IANA for this application"
"","","","3588)",""
"3872","TCP","","Oracle Management Remote Agent","Port is not officialy registered by IANA for this application"
"3899","TCP","","Remote Administrator","Port is not officialy registered by IANA for this application"
"3900","TCP","","udt_os, IBM UniData UDT OS","Port is officialy registered by IANA for this application"
"","","","49",""
"3945","TCP","UDP","EMCADS service, a Giritech","Port is officialy registered by IANA for this application"
"","","","product used by G/On",""
"3978","TCP","UDP","OpenTTD game (masterserver and","Port is not officialy registered by IANA for this application"
"","","","content service)",""
"3979","TCP","UDP","OpenTTD game","Port is not officialy registered by IANA for this application"
"3999","TCP","UDP","Norman distributed scanning","Port is officialy registered by IANA for this application"
"","","","service",""
"4000","TCP","UDP","Diablo II game","Port is not officialy registered by IANA for this application"
"4001","TCP","","Microsoft Ants game","Port is not officialy registered by IANA for this application"
"4007","TCP","","PrintBuzzer printer monitoring","Port is not officialy registered by IANA for this application"
"","","","socket server",""
"4018","TCP","UDP","protocol information and","Port is officialy registered by IANA for this application"
"","","","warnings",""
"4069","","UDP","Minger Email Address","Port is officialy registered by IANA for this application"
"","","","Verification Protocol 50",""
"4089","TCP","UDP","OpenCORE Remote Control Service","Port is officialy registered by IANA for this application"
"4093","TCP","UDP","PxPlus Client server interface","Port is officialy registered by IANA for this application"
"","","","ProvideX",""
"4096","TCP","UDP","Ascom Timeplex BRE (Bridge Relay","Port is officialy registered by IANA for this application"
"","","","Element)",""
"4100","","","WatchGuard Authentication","Port is not officialy registered by IANA for this application"
"","","","Applet?default",""
"4111","TCP","","Xgrid","Port is officialy registered by IANA for this application"
"4116","TCP","UDP","Smartcard-TLS","Port is officialy registered by IANA for this application"
"4125","TCP","","Microsoft Remote Web Workplace","Port is not officialy registered by IANA for this application"
"","","","administration",""
"4172","TCP","UDP","Teradici PCoIP","Port is officialy registered by IANA for this application"
"4201","TCP","","TinyMUD and various derivatives","Port is not officialy registered by IANA for this application"
"4226","TCP","UDP","Aleph One (game)","Port is not officialy registered by IANA for this application"
"4224","TCP","","Cisco Audio Session Tunneling","Port is not officialy registered by IANA for this application"
"4321","TCP","","Referral Whois (RWhois) Protocol","Port is officialy registered by IANA for this application"
"","","","51",""
"4323","","UDP","Lincoln Electric?s ArcLink/XT","Port is not officialy registered by IANA for this application"
"4433-4436","TCP","","Axence nVision","Port is not officialy registered by IANA for this application"
"4500","","UDP","IPSec NAT Traversal (RFC 3947)","Port is officialy registered by IANA for this application"
"4502-4534","TCP","","Microsoft Silverlight","Port is officialy registered by IANA for this application"
"","","","connectable ports under non-elevated trust",""
"4534","","UDP","Armagetron Advanced default","Port is not officialy registered by IANA for this application"
"","","","server port",""
"4567","TCP","","Sinatra default server port in","Port is not officialy registered by IANA for this application"
"","","","development mode (HTTP)",""
"4569","","UDP","Inter-Asterisk eXchange (IAX2)","Port is officialy registered by IANA for this application"
"4610?4640","TCP","","QualiSystems TestShell Suite","Port is not officialy registered by IANA for this application"
"","","","Services",""
"4662","","UDP","OrbitNet Message Service","Port is officialy registered by IANA for this application"
"4662","TCP","","OrbitNet Message Service","Port is officialy registered by IANA for this application"
"4662","TCP","","Default for older versions of","Port is not officialy registered by IANA for this application"
"","","","eMule 52",""
"4664","TCP","","Google Desktop Search","Port is not officialy registered by IANA for this application"
"4672","","UDP","Default for older versions of","Port is not officialy registered by IANA for this application"
"","","","eMule 52",""
"4711","TCP","","eMule optional web interface","Port is not officialy registered by IANA for this application"
"","","","52",""
"4711","TCP","","McAfee Web Gateway 7 ? Default","Port is not officialy registered by IANA for this application"
"","","","GUI Port HTTP",""
"4712","TCP","","McAfee Web Gateway 7 ? Default","Port is not officialy registered by IANA for this application"
"","","","GUI Port HTTPS",""
"4728","TCP","","Computer Associates Desktop and","Port is officialy registered by IANA for this application"
"","","","Server Management (DMP)/Port Multiplexer",""
"","","","53",""
"4747","TCP","","Apprentice","Port is not officialy registered by IANA for this application"
"4750","TCP","","BladeLogic Agent","Port is not officialy registered by IANA for this application"
"4840","TCP","UDP","OPC UA TCP Protocol for OPC","Port is officialy registered by IANA for this application"
"","","","Unified Architecture from OPC Foundation",""
"4843","TCP","UDP","OPC UA TCP Protocol over TLS/SSL","Port is officialy registered by IANA for this application"
"","","","for OPC Unified Architecture from OPC Foundation",""
"4847","TCP","UDP","Web Fresh Communication,","Port is officialy registered by IANA for this application"
"","","","Quadrion Software & Odorless Entertainment",""
"4886","TCP","","War of No Return Server Port","Port is not officialy registered by IANA for this application"
"4894","TCP","UDP","LysKOM Protocol A","Port is officialy registered by IANA for this application"
"4899","TCP","UDP","Radmin remote administration","Port is officialy registered by IANA for this application"
"","","","tool",""
"4949","TCP","","Munin Resource Monitoring Tool","Port is officialy registered by IANA for this application"
"4950","TCP","UDP","Cylon Controls UC32","Port is officialy registered by IANA for this application"
"","","","Communications Port",""
"4982","TCP","UDP","Solar Data Log (JK client app","Port is not officialy registered by IANA for this application"
"","","","for PV solar inverters )",""
"4993","TCP","UDP","Home FTP Server web Interface","Port is not officialy registered by IANA for this application"
"","","","Default Port",""
"","","","",""
"5000","TCP","","commplex-main","Port is officialy registered by IANA for this application"
"5000","TCP","","UPnP?Windows network","Port is not officialy registered by IANA for this application"
"","","","device interoperability",""
"5000","TCP","","VTun?VPN Software","Port is not officialy registered by IANA for this application"
"5000","","UDP","FlightGear multiplayer 54","Port is not officialy registered by IANA for this application"
"5000","","UDP","VTun?VPN Software","Port is not officialy registered by IANA for this application"
"5001","TCP","","commplex-link","Port is officialy registered by IANA for this application"
"5001","TCP","","Slingbox and Slingplayer","Port is not officialy registered by IANA for this application"
"5001","TCP","","Iperf (Tool for measuring TCP","Port is not officialy registered by IANA for this application"
"","","","and UDP bandwidth performance)",""
"5001","","UDP","Iperf (Tool for measuring TCP","Port is not officialy registered by IANA for this application"
"","","","and UDP bandwidth performance)",""
"5002","TCP","","SOLICARD ARX 55","Port is not officialy registered by IANA for this application"
"5003","TCP","UDP","FileMaker","Port is officialy registered by IANA for this application"
"5004","TCP","UDP","RTP (Real-time Transport","Port is officialy registered by IANA for this application"
"","","","Protocol) media data (RFC 3551, RFC 4571)",""
"5004","DCCP","","RTP (Real-time Transport","Port is officialy registered by IANA for this application"
"","","","Protocol) media data (RFC 3551, RFC 4571)",""
"5005","TCP","UDP","RTP (Real-time Transport","Port is officialy registered by IANA for this application"
"","","","Protocol) control protocol (RFC 3551, RFC 4571)",""
"5005","DCCP","","RTP (Real-time Transport","Port is officialy registered by IANA for this application"
"","","","Protocol) control protocol (RFC 3551, RFC 4571)",""
"5029","TCP","","Sonic Robo Blast 2 : Multiplayer","Port is not officialy registered by IANA for this application"
"5031","TCP","UDP","AVM CAPI-over-TCP (ISDN over","Port is not officialy registered by IANA for this application"
"","","","Ethernet tunneling)",""
"5050","TCP","","Yahoo! Messenger","Port is not officialy registered by IANA for this application"
"5051","TCP","","ita-agent Symantec Intruder","Port is officialy registered by IANA for this application"
"","","","Alert 56",""
"5060","TCP","UDP","Session Initiation Protocol","Port is officialy registered by IANA for this application"
"","","","(SIP)",""
"5061","TCP","","Session Initiation Protocol","Port is officialy registered by IANA for this application"
"","","","(SIP) over TLS",""
"5070","TCP","","Binary Floor Control Protocol","Port is not officialy registered by IANA for this application"
"","","","(BFCP), 57 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)",""
"5082","TCP","UDP","Qpur Communication Protocol","Port is officialy registered by IANA for this application"
"5083","TCP","UDP","Qpur File Protocol","Port is officialy registered by IANA for this application"
"5084","TCP","UDP","EPCglobal Low Level Reader","Port is officialy registered by IANA for this application"
"","","","Protocol (LLRP)",""
"5085","TCP","UDP","EPCglobal Low Level Reader","Port is officialy registered by IANA for this application"
"","","","Protocol (LLRP) over TLS",""
"5093","","UDP","SafeNet, Inc Sentinel LM,","Port is officialy registered by IANA for this application"
"","","","Sentinel RMS, License Manager, Client-to-Server",""