-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathports.txt
6282 lines (6282 loc) · 231 KB
/
ports.txt
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
0|tcp|record|Reserved
1|tcp|tcpmux|TCP Port Service Multiplexer
2|tcp|compressnet|Management Utility
3|tcp|compressnet|Compression Process
4|tcp|record|Unassigned
5|tcp|rje|Remote Job Entry
6|tcp|record|Unassigned
7|tcp|echo|Echo
8|tcp|record|Unassigned
9|tcp|discard|Discard
9|sctp|discard|Discard
9|dccp|discard|Discard
10|tcp|record|Unassigned
11|tcp|systat|Active Users
12|tcp|record|Unassigned
13|tcp|daytime|Daytime
14|tcp|record|Unassigned
15|tcp|record|Unassigned [was netstat]
16|tcp|record|Unassigned
17|tcp|qotd|Quote of the Day
18|tcp|msp|Message Send Protocol (historic)
19|tcp|chargen|Character Generator
20|tcp|ftp-data|File Transfer [Default Data]
20|sctp|ftp-data|FTP
21|tcp|ftp|File Transfer Protocol [Control]
21|sctp|ftp|FTP
22|tcp|ssh|The Secure Shell (SSH) Protocol
22|sctp|ssh|SSH
23|tcp|telnet|Telnet
24|tcp|record|any private mail system
25|tcp|smtp|Simple Mail Transfer
26|tcp|record|Unassigned
27|tcp|nsw-fe|NSW User System FE
28|tcp|record|Unassigned
29|tcp|msg-icp|MSG ICP
30|tcp|record|Unassigned
31|tcp|msg-auth|MSG Authentication
32|tcp|record|Unassigned
33|tcp|dsp|Display Support Protocol
34|tcp|record|Unassigned
35|tcp|record|any private printer server
36|tcp|record|Unassigned
37|tcp|time|Time
38|tcp|rap|Route Access Protocol
39|tcp|rlp|Resource Location Protocol
40|tcp|record|Unassigned
41|tcp|graphics|Graphics
42|tcp|name|Host Name Server
42|tcp|nameserver|Host Name Server
43|tcp|nicname|Who Is
44|tcp|mpm-flags|MPM FLAGS Protocol
45|tcp|mpm|Message Processing Module [recv]
46|tcp|mpm-snd|MPM [default send]
47|tcp|record|Reserved
48|tcp|auditd|Digital Audit Daemon
49|tcp|tacacs|Login Host Protocol (TACACS)
50|tcp|re-mail-ck|Remote Mail Checking Protocol
52|tcp|xns-time|XNS Time Protocol
53|tcp|domain|Domain Name Server
54|tcp|xns-ch|XNS Clearinghouse
55|tcp|isi-gl|ISI Graphics Language
56|tcp|xns-auth|XNS Authentication
57|tcp|record|any private terminal access
58|tcp|xns-mail|XNS Mail
59|tcp|record|any private file service
60|tcp|record|Unassigned
61|tcp|record|Reserved
62|tcp|acas|ACA Services
63|tcp|whoispp|System.Xml.XmlElement
63|tcp|whois++|whois++
64|tcp|covia|Communications Integrator (CI)
65|tcp|tacacs-ds|TACACS-Database Service
66|tcp|sql-net|System.Xml.XmlElement
66|tcp|sql*net|Oracle SQL*NET
67|tcp|bootps|Bootstrap Protocol Server
68|tcp|bootpc|Bootstrap Protocol Client
69|tcp|tftp|Trivial File Transfer
70|tcp|gopher|Gopher
71|tcp|netrjs-1|Remote Job Service
72|tcp|netrjs-2|Remote Job Service
73|tcp|netrjs-3|Remote Job Service
74|tcp|netrjs-4|Remote Job Service
75|tcp|record|any private dial out service
76|tcp|deos|Distributed External Object Store
77|tcp|record|any private RJE service
78|tcp|vettcp|vettcp
79|tcp|finger|Finger
80|tcp|http|World Wide Web HTTP
80|tcp|www|World Wide Web HTTP
80|tcp|www-http|World Wide Web HTTP
80|sctp|http|HTTP
82|tcp|xfer|XFER Utility
83|tcp|mit-ml-dev|MIT ML Device
84|tcp|ctf|Common Trace Facility
85|tcp|mit-ml-dev|MIT ML Device
86|tcp|mfcobol|Micro Focus Cobol
87|tcp|record|any private terminal link
88|tcp|kerberos|Kerberos
89|tcp|su-mit-tg|SU/MIT Telnet Gateway
90|tcp|dnsix|DNSIX Securit Attribute Token Map
91|tcp|mit-dov|MIT Dover Spooler
92|tcp|npp|Network Printing Protocol
93|tcp|dcp|Device Control Protocol
94|tcp|objcall|Tivoli Object Dispatcher
95|tcp|supdup|SUPDUP
96|tcp|dixie|DIXIE Protocol Specification
97|tcp|swift-rvf|Swift Remote Virtural File Protocol
98|tcp|tacnews|TAC News
99|tcp|metagram|Metagram Relay
101|tcp|hostname|NIC Host Name Server
102|tcp|iso-tsap|ISO-TSAP Class 0
103|tcp|gppitnp|Genesis Point-to-Point Trans Net
104|tcp|acr-nema|ACR-NEMA Digital Imag. & Comm. 300
105|tcp|cso|CCSO name server protocol
105|tcp|csnet-ns|Mailbox Name Nameserver
106|tcp|3com-tsmux|3COM-TSMUX
107|tcp|rtelnet|Remote Telnet Service
108|tcp|snagas|SNA Gateway Access Server
109|tcp|pop2|Post Office Protocol - Version 2
110|tcp|pop3|Post Office Protocol - Version 3
111|tcp|sunrpc|SUN Remote Procedure Call
112|tcp|mcidas|McIDAS Data Transmission Protocol
113|tcp|ident|
113|tcp|auth|Authentication Service
115|tcp|sftp|Simple File Transfer Protocol
116|tcp|ansanotify|ANSA REX Notify
117|tcp|uucp-path|UUCP Path Service
118|tcp|sqlserv|SQL Services
119|tcp|nntp|Network News Transfer Protocol
120|tcp|cfdptkt|CFDPTKT
121|tcp|erpc|Encore Expedited Remote Pro.Call
122|tcp|smakynet|SMAKYNET
123|tcp|ntp|Network Time Protocol
124|tcp|ansatrader|ANSA REX Trader
125|tcp|locus-map|Locus PC-Interface Net Map Ser
126|tcp|nxedit|NXEdit
127|tcp|locus-con|Locus PC-Interface Conn Server
128|tcp|gss-xlicen|GSS X License Verification
129|tcp|pwdgen|Password Generator Protocol
130|tcp|cisco-fna|cisco FNATIVE
131|tcp|cisco-tna|cisco TNATIVE
132|tcp|cisco-sys|cisco SYSMAINT
133|tcp|statsrv|Statistics Service
134|tcp|ingres-net|INGRES-NET Service
135|tcp|epmap|DCE endpoint resolution
136|tcp|profile|PROFILE Naming System
137|tcp|netbios-ns|NETBIOS Name Service
138|tcp|netbios-dgm|NETBIOS Datagram Service
139|tcp|netbios-ssn|NETBIOS Session Service
140|tcp|emfis-data|EMFIS Data Service
141|tcp|emfis-cntl|EMFIS Control Service
142|tcp|bl-idm|Britton-Lee IDM
143|tcp|imap|Internet Message Access Protocol
144|tcp|uma|Universal Management Architecture
145|tcp|uaac|UAAC Protocol
146|tcp|iso-tp0|ISO-IP0
147|tcp|iso-ip|ISO-IP
148|tcp|jargon|Jargon
149|tcp|aed-512|AED 512 Emulation Service
150|tcp|sql-net|SQL-NET
151|tcp|hems|HEMS
152|tcp|bftp|Background File Transfer Program
153|tcp|sgmp|SGMP
154|tcp|netsc-prod|NETSC
155|tcp|netsc-dev|NETSC
156|tcp|sqlsrv|SQL Service
157|tcp|knet-cmp|KNET/VM Command/Message Protocol
158|tcp|pcmail-srv|PCMail Server
159|tcp|nss-routing|NSS-Routing
160|tcp|sgmp-traps|SGMP-TRAPS
161|tcp|snmp|SNMP
162|tcp|snmptrap|SNMPTRAP
163|tcp|cmip-man|CMIP/TCP Manager
164|tcp|cmip-agent|CMIP/TCP Agent
165|tcp|xns-courier|Xerox
166|tcp|s-net|Sirius Systems
167|tcp|namp|NAMP
168|tcp|rsvd|RSVD
169|tcp|send|SEND
170|tcp|print-srv|Network PostScript
171|tcp|multiplex|Network Innovations Multiplex
172|tcp|cl-1|System.Xml.XmlElement
172|tcp|cl/1|Network Innovations CL/1
173|tcp|xyplex-mux|Xyplex
174|tcp|mailq|MAILQ
175|tcp|vmnet|VMNET
176|tcp|genrad-mux|GENRAD-MUX
177|tcp|xdmcp|X Display Manager Control Protocol
178|tcp|nextstep|NextStep Window Server
179|tcp|bgp|Border Gateway Protocol
179|sctp|bgp|BGP
180|tcp|ris|Intergraph
181|tcp|unify|Unify
182|tcp|audit|Unisys Audit SITP
183|tcp|ocbinder|OCBinder
184|tcp|ocserver|OCServer
185|tcp|remote-kis|Remote-KIS
186|tcp|kis|KIS Protocol
187|tcp|aci|Application Communication Interface
188|tcp|mumps|Plus Five's MUMPS
189|tcp|qft|Queued File Transport
190|tcp|gacp|Gateway Access Control Protocol
191|tcp|prospero|Prospero Directory Service
192|tcp|osu-nms|OSU Network Monitoring System
193|tcp|srmp|Spider Remote Monitoring Protocol
194|tcp|irc|Internet Relay Chat Protocol
195|tcp|dn6-nlm-aud|DNSIX Network Level Module Audit
196|tcp|dn6-smm-red|DNSIX Session Mgt Module Audit Redir
197|tcp|dls|Directory Location Service
198|tcp|dls-mon|Directory Location Service Monitor
199|tcp|smux|SMUX
200|tcp|src|IBM System Resource Controller
201|tcp|at-rtmp|AppleTalk Routing Maintenance
202|tcp|at-nbp|AppleTalk Name Binding
203|tcp|at-3|AppleTalk Unused
204|tcp|at-echo|AppleTalk Echo
205|tcp|at-5|AppleTalk Unused
206|tcp|at-zis|AppleTalk Zone Information
207|tcp|at-7|AppleTalk Unused
208|tcp|at-8|AppleTalk Unused
209|tcp|qmtp|The Quick Mail Transfer Protocol
210|tcp|z39-50|System.Xml.XmlElement
210|tcp|z39.50|ANSI Z39.50
211|tcp|914c-g|System.Xml.XmlElement
211|tcp|914c/g|Texas Instruments 914C/G Terminal
212|tcp|anet|ATEXSSTR
213|tcp|ipx|IPX
214|tcp|vmpwscs|VM PWSCS
215|tcp|softpc|Insignia Solutions
216|tcp|CAIlic|Computer Associates Int'l License Server
217|tcp|dbase|dBASE Unix
218|tcp|mpp|Netix Message Posting Protocol
219|tcp|uarps|Unisys ARPs
220|tcp|imap3|Interactive Mail Access Protocol v3
221|tcp|fln-spx|Berkeley rlogind with SPX auth
222|tcp|rsh-spx|Berkeley rshd with SPX auth
223|tcp|cdc|Certificate Distribution Center
224|tcp|masqdialer|masqdialer
242|tcp|direct|Direct
243|tcp|sur-meas|Survey Measurement
244|tcp|inbusiness|inbusiness
245|tcp|link|LINK
246|tcp|dsp3270|Display Systems Protocol
247|tcp|subntbcst-tftp|System.Xml.XmlElement
247|tcp|subntbcst_tftp|SUBNTBCST_TFTP
248|tcp|bhfhs|bhfhs
256|tcp|rap|RAP
257|tcp|set|Secure Electronic Transaction
259|tcp|esro-gen|Efficient Short Remote Operations
260|tcp|openport|Openport
261|tcp|nsiiops|IIOP Name Service over TLS/SSL
262|tcp|arcisdms|Arcisdms
263|tcp|hdap|HDAP
264|tcp|bgmp|BGMP
265|tcp|x-bone-ctl|X-Bone CTL
266|tcp|sst|SCSI on ST
267|tcp|td-service|Tobit David Service Layer
268|tcp|td-replica|Tobit David Replica
269|tcp|manet|MANET Protocols
270|tcp|record|Reserved
271|tcp|pt-tls|IETF Network Endpoint Assessment (NEA) Posture Transport Protocol over TLS (PT-TLS)
280|tcp|http-mgmt|http-mgmt
281|tcp|personal-link|Personal Link
282|tcp|cableport-ax|Cable Port A/X
283|tcp|rescap|rescap
284|tcp|corerjd|corerjd
286|tcp|fxp|FXP Communication
287|tcp|k-block|K-BLOCK
308|tcp|novastorbakcup|Novastor Backup
309|tcp|entrusttime|EntrustTime
310|tcp|bhmds|bhmds
311|tcp|asip-webadmin|AppleShare IP WebAdmin
312|tcp|vslmp|VSLMP
313|tcp|magenta-logic|Magenta Logic
314|tcp|opalis-robot|Opalis Robot
315|tcp|dpsi|DPSI
316|tcp|decauth|decAuth
317|tcp|zannet|Zannet
318|tcp|pkix-timestamp|PKIX TimeStamp
319|tcp|ptp-event|PTP Event
320|tcp|ptp-general|PTP General
321|tcp|pip|PIP
322|tcp|rtsps|RTSPS
323|tcp|rpki-rtr|Resource PKI to Router Protocol
324|tcp|rpki-rtr-tls|Resource PKI to Router Protocol over TLS
333|tcp|texar|Texar Security Port
344|tcp|pdap|Prospero Data Access Protocol
345|tcp|pawserv|Perf Analysis Workbench
346|tcp|zserv|Zebra server
347|tcp|fatserv|Fatmen Server
348|tcp|csi-sgwp|Cabletron Management Protocol
349|tcp|mftp|mftp
350|tcp|matip-type-a|MATIP Type A
351|tcp|matip-type-b|MATIP Type B
351|tcp|bhoetty|bhoetty
352|tcp|dtag-ste-sb|DTAG
352|tcp|bhoedap4|bhoedap4
353|tcp|ndsauth|NDSAUTH
354|tcp|bh611|bh611
355|tcp|datex-asn|DATEX-ASN
356|tcp|cloanto-net-1|Cloanto Net 1
357|tcp|bhevent|bhevent
358|tcp|shrinkwrap|Shrinkwrap
359|tcp|nsrmp|Network Security Risk Management Protocol
360|tcp|scoi2odialog|scoi2odialog
361|tcp|semantix|Semantix
362|tcp|srssend|SRS Send
363|tcp|rsvp-tunnel|System.Xml.XmlElement
363|tcp|rsvp_tunnel|RSVP Tunnel
364|tcp|aurora-cmgr|Aurora CMGR
365|tcp|dtk|DTK
366|tcp|odmr|ODMR
367|tcp|mortgageware|MortgageWare
368|tcp|qbikgdp|QbikGDP
369|tcp|rpc2portmap|rpc2portmap
370|tcp|codaauth2|codaauth2
371|tcp|clearcase|Clearcase
372|tcp|ulistproc|ListProcessor
373|tcp|legent-1|Legent Corporation
374|tcp|legent-2|Legent Corporation
375|tcp|hassle|Hassle
376|tcp|nip|Amiga Envoy Network Inquiry Proto
377|tcp|tnETOS|NEC Corporation
378|tcp|dsETOS|NEC Corporation
379|tcp|is99c|TIA/EIA/IS-99 modem client
380|tcp|is99s|TIA/EIA/IS-99 modem server
381|tcp|hp-collector|hp performance data collector
382|tcp|hp-managed-node|hp performance data managed node
383|tcp|hp-alarm-mgr|hp performance data alarm manager
384|tcp|arns|A Remote Network Server System
385|tcp|ibm-app|IBM Application
386|tcp|asa|ASA Message Router Object Def.
387|tcp|aurp|Appletalk Update-Based Routing Pro.
388|tcp|unidata-ldm|Unidata LDM
389|tcp|ldap|Lightweight Directory Access Protocol
390|tcp|uis|UIS
391|tcp|synotics-relay|SynOptics SNMP Relay Port
392|tcp|synotics-broker|SynOptics Port Broker Port
393|tcp|meta5|Meta5
394|tcp|embl-ndt|EMBL Nucleic Data Transfer
395|tcp|netcp|NetScout Control Protocol
396|tcp|netware-ip|Novell Netware over IP
397|tcp|mptn|Multi Protocol Trans. Net.
398|tcp|kryptolan|Kryptolan
399|tcp|iso-tsap-c2|ISO Transport Class 2 Non-Control over TCP
400|tcp|osb-sd|Oracle Secure Backup
401|tcp|ups|Uninterruptible Power Supply
402|tcp|genie|Genie Protocol
403|tcp|decap|decap
404|tcp|nced|nced
405|tcp|ncld|ncld
406|tcp|imsp|Interactive Mail Support Protocol
407|tcp|timbuktu|Timbuktu
408|tcp|prm-sm|Prospero Resource Manager Sys. Man.
409|tcp|prm-nm|Prospero Resource Manager Node Man.
410|tcp|decladebug|DECLadebug Remote Debug Protocol
411|tcp|rmt|Remote MT Protocol
412|tcp|synoptics-trap|Trap Convention Port
413|tcp|smsp|Storage Management Services Protocol
414|tcp|infoseek|InfoSeek
415|tcp|bnet|BNet
416|tcp|silverplatter|Silverplatter
417|tcp|onmux|Onmux
418|tcp|hyper-g|Hyper-G
419|tcp|ariel1|Ariel 1
420|tcp|smpte|SMPTE
421|tcp|ariel2|Ariel 2
422|tcp|ariel3|Ariel 3
423|tcp|opc-job-start|IBM Operations Planning and Control Start
424|tcp|opc-job-track|IBM Operations Planning and Control Track
425|tcp|icad-el|ICAD
426|tcp|smartsdp|smartsdp
427|tcp|svrloc|Server Location
428|tcp|ocs-cmu|System.Xml.XmlElement
428|tcp|ocs_cmu|OCS_CMU
429|tcp|ocs-amu|System.Xml.XmlElement
429|tcp|ocs_amu|OCS_AMU
430|tcp|utmpsd|UTMPSD
431|tcp|utmpcd|UTMPCD
432|tcp|iasd|IASD
433|tcp|nnsp|NNTP for transit servers (NNSP)
434|tcp|mobileip-agent|MobileIP-Agent
435|tcp|mobilip-mn|MobilIP-MN
436|tcp|dna-cml|DNA-CML
437|tcp|comscm|comscm
438|tcp|dsfgw|dsfgw
439|tcp|dasp|dasp
440|tcp|sgcp|sgcp
441|tcp|decvms-sysmgt|decvms-sysmgt
442|tcp|cvc-hostd|System.Xml.XmlElement
442|tcp|cvc_hostd|cvc_hostd
443|tcp|https|http protocol over TLS/SSL
443|sctp|https|HTTPS
444|tcp|snpp|Simple Network Paging Protocol
445|tcp|microsoft-ds|Microsoft-DS
446|tcp|ddm-rdb|DDM-Remote Relational Database Access
447|tcp|ddm-dfm|DDM-Distributed File Management
448|tcp|ddm-ssl|DDM-Remote DB Access Using Secure Sockets
449|tcp|as-servermap|AS Server Mapper
450|tcp|tserver|Computer Supported Telecomunication Applications
451|tcp|sfs-smp-net|Cray Network Semaphore server
452|tcp|sfs-config|Cray SFS config server
453|tcp|creativeserver|CreativeServer
454|tcp|contentserver|ContentServer
455|tcp|creativepartnr|CreativePartnr
456|tcp|macon-tcp|macon-tcp
457|tcp|scohelp|scohelp
458|tcp|appleqtc|apple quick time
459|tcp|ampr-rcmd|ampr-rcmd
460|tcp|skronk|skronk
461|tcp|datasurfsrv|DataRampSrv
462|tcp|datasurfsrvsec|DataRampSrvSec
463|tcp|alpes|alpes
464|tcp|kpasswd|kpasswd
465|tcp|urd|URL Rendezvous Directory for SSM
465|tcp|submissions|Message Submission over TLS protocol
466|tcp|digital-vrc|digital-vrc
467|tcp|mylex-mapd|mylex-mapd
468|tcp|photuris|proturis
469|tcp|rcp|Radio Control Protocol
470|tcp|scx-proxy|scx-proxy
471|tcp|mondex|Mondex
472|tcp|ljk-login|ljk-login
473|tcp|hybrid-pop|hybrid-pop
474|tcp|tn-tl-w1|tn-tl-w1
475|tcp|tcpnethaspsrv|tcpnethaspsrv
476|tcp|tn-tl-fd1|tn-tl-fd1
477|tcp|ss7ns|ss7ns
478|tcp|spsc|spsc
479|tcp|iafserver|iafserver
480|tcp|iafdbase|iafdbase
481|tcp|ph|Ph service
482|tcp|bgs-nsi|bgs-nsi
483|tcp|ulpnet|ulpnet
484|tcp|integra-sme|Integra Software Management Environment
485|tcp|powerburst|Air Soft Power Burst
486|tcp|avian|avian
487|tcp|saft|saft Simple Asynchronous File Transfer
488|tcp|gss-http|gss-http
489|tcp|nest-protocol|nest-protocol
490|tcp|micom-pfs|micom-pfs
491|tcp|go-login|go-login
492|tcp|ticf-1|Transport Independent Convergence for FNA
493|tcp|ticf-2|Transport Independent Convergence for FNA
494|tcp|pov-ray|POV-Ray
495|tcp|intecourier|intecourier
496|tcp|pim-rp-disc|PIM-RP-DISC
497|tcp|retrospect|Retrospect backup and restore service
498|tcp|siam|siam
499|tcp|iso-ill|ISO ILL Protocol
500|tcp|isakmp|isakmp
501|tcp|stmf|STMF
502|tcp|mbap|Modbus Application Protocol
503|tcp|intrinsa|Intrinsa
504|tcp|citadel|citadel
505|tcp|mailbox-lm|mailbox-lm
506|tcp|ohimsrv|ohimsrv
507|tcp|crs|crs
508|tcp|xvttp|xvttp
509|tcp|snare|snare
510|tcp|fcp|FirstClass Protocol
511|tcp|passgo|PassGo
512|tcp|exec|remote process execution; authentication performed using passwords and UNIX login names
513|tcp|login|remote login a la telnet; automatic authentication performed based on priviledged port numbers and distributed data bases which identify "authentication domains"
514|tcp|shell|cmd like exec, but automatic authentication is performed as for login server
515|tcp|printer|spooler
516|tcp|videotex|videotex
517|tcp|talk|like tenex link, but across machine - unfortunately, doesn't use link protocol (this is actually just a rendezvous port from which a tcp connection is established)
518|tcp|ntalk|
519|tcp|utime|unixtime
520|tcp|efs|extended file name server
521|tcp|ripng|ripng
522|tcp|ulp|ULP
523|tcp|ibm-db2|IBM-DB2
524|tcp|ncp|NCP
525|tcp|timed|timeserver
526|tcp|tempo|newdate
527|tcp|stx|Stock IXChange
528|tcp|custix|Customer IXChange
529|tcp|irc-serv|IRC-SERV
530|tcp|courier|rpc
531|tcp|conference|chat
532|tcp|netnews|readnews
533|tcp|netwall|for emergency broadcasts
534|tcp|windream|windream Admin
535|tcp|iiop|iiop
536|tcp|opalis-rdv|opalis-rdv
537|tcp|nmsp|Networked Media Streaming Protocol
538|tcp|gdomap|gdomap
539|tcp|apertus-ldp|Apertus Technologies Load Determination
540|tcp|uucp|uucpd
541|tcp|uucp-rlogin|uucp-rlogin
542|tcp|commerce|commerce
543|tcp|klogin|
544|tcp|kshell|krcmd
545|tcp|appleqtcsrvr|appleqtcsrvr
546|tcp|dhcpv6-client|DHCPv6 Client
547|tcp|dhcpv6-server|DHCPv6 Server
548|tcp|afpovertcp|AFP over TCP
549|tcp|idfp|IDFP
550|tcp|new-rwho|new-who
551|tcp|cybercash|cybercash
552|tcp|devshr-nts|DeviceShare
553|tcp|pirp|pirp
554|tcp|rtsp|Real Time Streaming Protocol (RTSP)
555|tcp|dsf|
556|tcp|remotefs|rfs server
557|tcp|openvms-sysipc|openvms-sysipc
558|tcp|sdnskmp|SDNSKMP
559|tcp|teedtap|TEEDTAP
560|tcp|rmonitor|rmonitord
561|tcp|monitor|
562|tcp|chshell|chcmd
563|tcp|nntps|nntp protocol over TLS/SSL (was snntp)
564|tcp|9pfs|plan 9 file service
565|tcp|whoami|whoami
566|tcp|streettalk|streettalk
567|tcp|banyan-rpc|banyan-rpc
568|tcp|ms-shuttle|microsoft shuttle
569|tcp|ms-rome|microsoft rome
570|tcp|meter|demon
571|tcp|meter|udemon
572|tcp|sonar|sonar
573|tcp|banyan-vip|banyan-vip
574|tcp|ftp-agent|FTP Software Agent System
575|tcp|vemmi|VEMMI
576|tcp|ipcd|ipcd
577|tcp|vnas|vnas
578|tcp|ipdd|ipdd
579|tcp|decbsrv|decbsrv
580|tcp|sntp-heartbeat|SNTP HEARTBEAT
581|tcp|bdp|Bundle Discovery Protocol
582|tcp|scc-security|SCC Security
583|tcp|philips-vc|Philips Video-Conferencing
584|tcp|keyserver|Key Server
586|tcp|password-chg|Password Change
587|tcp|submission|Message Submission
588|tcp|cal|CAL
589|tcp|eyelink|EyeLink
590|tcp|tns-cml|TNS CML
591|tcp|http-alt|FileMaker, Inc. - HTTP Alternate (see Port 80)
592|tcp|eudora-set|Eudora Set
593|tcp|http-rpc-epmap|HTTP RPC Ep Map
594|tcp|tpip|TPIP
595|tcp|cab-protocol|CAB Protocol
596|tcp|smsd|SMSD
597|tcp|ptcnameservice|PTC Name Service
598|tcp|sco-websrvrmg3|SCO Web Server Manager 3
599|tcp|acp|Aeolon Core Protocol
600|tcp|ipcserver|Sun IPC server
601|tcp|syslog-conn|Reliable Syslog Service
602|tcp|xmlrpc-beep|XML-RPC over BEEP
603|tcp|idxp|IDXP
604|tcp|tunnel|TUNNEL
605|tcp|soap-beep|SOAP over BEEP
606|tcp|urm|Cray Unified Resource Manager
607|tcp|nqs|nqs
608|tcp|sift-uft|Sender-Initiated/Unsolicited File Transfer
609|tcp|npmp-trap|npmp-trap
610|tcp|npmp-local|npmp-local
611|tcp|npmp-gui|npmp-gui
612|tcp|hmmp-ind|HMMP Indication
613|tcp|hmmp-op|HMMP Operation
614|tcp|sshell|SSLshell
615|tcp|sco-inetmgr|Internet Configuration Manager
616|tcp|sco-sysmgr|SCO System Administration Server
617|tcp|sco-dtmgr|SCO Desktop Administration Server
618|tcp|dei-icda|DEI-ICDA
619|tcp|compaq-evm|Compaq EVM
620|tcp|sco-websrvrmgr|SCO WebServer Manager
621|tcp|escp-ip|ESCP
622|tcp|collaborator|Collaborator
623|tcp|oob-ws-http|DMTF out-of-band web services management protocol
624|tcp|cryptoadmin|Crypto Admin
625|tcp|dec-dlm|System.Xml.XmlElement
625|tcp|dec_dlm|DEC DLM
626|tcp|asia|ASIA
627|tcp|passgo-tivoli|PassGo Tivoli
628|tcp|qmqp|QMQP
629|tcp|3com-amp3|3Com AMP3
630|tcp|rda|RDA
631|tcp|ipp|IPP (Internet Printing Protocol)
631|tcp|ipps|Internet Printing Protocol over HTTPS
632|tcp|bmpp|bmpp
633|tcp|servstat|Service Status update (Sterling Software)
634|tcp|ginad|ginad
635|tcp|rlzdbase|RLZ DBase
636|tcp|ldaps|ldap protocol over TLS/SSL (was sldap)
637|tcp|lanserver|lanserver
638|tcp|mcns-sec|mcns-sec
639|tcp|msdp|MSDP
640|tcp|entrust-sps|entrust-sps
641|tcp|repcmd|repcmd
642|tcp|esro-emsdp|ESRO-EMSDP V1.3
643|tcp|sanity|SANity
644|tcp|dwr|dwr
645|tcp|pssc|PSSC
646|tcp|ldp|LDP
647|tcp|dhcp-failover|DHCP Failover
648|tcp|rrp|Registry Registrar Protocol (RRP)
649|tcp|cadview-3d|Cadview-3d - streaming 3d models over the internet
650|tcp|obex|OBEX
651|tcp|ieee-mms|IEEE MMS
652|tcp|hello-port|HELLO_PORT
653|tcp|repscmd|RepCmd
654|tcp|aodv|AODV
655|tcp|tinc|TINC
656|tcp|spmp|SPMP
657|tcp|rmc|RMC
658|tcp|tenfold|TenFold
660|tcp|mac-srvr-admin|MacOS Server Admin
661|tcp|hap|HAP
662|tcp|pftp|PFTP
663|tcp|purenoise|PureNoise
664|tcp|oob-ws-https|DMTF out-of-band secure web services management protocol
665|tcp|sun-dr|Sun DR
666|tcp|mdqs|
666|tcp|doom|doom Id Software
667|tcp|disclose|campaign contribution disclosures - SDR Technologies
668|tcp|mecomm|MeComm
669|tcp|meregister|MeRegister
670|tcp|vacdsm-sws|VACDSM-SWS
671|tcp|vacdsm-app|VACDSM-APP
672|tcp|vpps-qua|VPPS-QUA
673|tcp|cimplex|CIMPLEX
674|tcp|acap|ACAP
675|tcp|dctp|DCTP
676|tcp|vpps-via|VPPS Via
677|tcp|vpp|Virtual Presence Protocol
678|tcp|ggf-ncp|GNU Generation Foundation NCP
679|tcp|mrm|MRM
680|tcp|entrust-aaas|entrust-aaas
681|tcp|entrust-aams|entrust-aams
682|tcp|xfr|XFR
683|tcp|corba-iiop|CORBA IIOP
684|tcp|corba-iiop-ssl|CORBA IIOP SSL
685|tcp|mdc-portmapper|MDC Port Mapper
686|tcp|hcp-wismar|Hardware Control Protocol Wismar
687|tcp|asipregistry|asipregistry
688|tcp|realm-rusd|ApplianceWare managment protocol
689|tcp|nmap|NMAP
690|tcp|vatp|Velneo Application Transfer Protocol
691|tcp|msexch-routing|MS Exchange Routing
692|tcp|hyperwave-isp|Hyperwave-ISP
693|tcp|connendp|almanid Connection Endpoint
694|tcp|ha-cluster|ha-cluster
695|tcp|ieee-mms-ssl|IEEE-MMS-SSL
696|tcp|rushd|RUSHD
697|tcp|uuidgen|UUIDGEN
698|tcp|olsr|OLSR
699|tcp|accessnetwork|Access Network
700|tcp|epp|Extensible Provisioning Protocol
701|tcp|lmp|Link Management Protocol (LMP)
702|tcp|iris-beep|IRIS over BEEP
704|tcp|elcsd|errlog copy/server daemon
705|tcp|agentx|AgentX
706|tcp|silc|SILC
707|tcp|borland-dsj|Borland DSJ
709|tcp|entrust-kmsh|Entrust Key Management Service Handler
710|tcp|entrust-ash|Entrust Administration Service Handler
711|tcp|cisco-tdp|Cisco TDP
712|tcp|tbrpf|TBRPF
713|tcp|iris-xpc|IRIS over XPC
714|tcp|iris-xpcs|IRIS over XPCS
715|tcp|iris-lwz|IRIS-LWZ
729|tcp|netviewdm1|IBM NetView DM/6000 Server/Client
730|tcp|netviewdm2|IBM NetView DM/6000 send/tcp
731|tcp|netviewdm3|IBM NetView DM/6000 receive/tcp
741|tcp|netgw|netGW
742|tcp|netrcs|Network based Rev. Cont. Sys.
744|tcp|flexlm|Flexible License Manager
747|tcp|fujitsu-dev|Fujitsu Device Control
748|tcp|ris-cm|Russell Info Sci Calendar Manager
749|tcp|kerberos-adm|kerberos administration
750|tcp|rfile|
751|tcp|pump|
752|tcp|qrh|
753|tcp|rrh|
754|tcp|tell|send
758|tcp|nlogin|
759|tcp|con|
760|tcp|ns|
761|tcp|rxe|
762|tcp|quotad|
763|tcp|cycleserv|
764|tcp|omserv|
765|tcp|webster|
767|tcp|phonebook|phone
769|tcp|vid|
770|tcp|cadlock|
771|tcp|rtip|
772|tcp|cycleserv2|
773|tcp|submit|
774|tcp|rpasswd|
775|tcp|entomb|
776|tcp|wpages|
777|tcp|multiling-http|Multiling HTTP
780|tcp|wpgs|
800|tcp|mdbs-daemon|System.Xml.XmlElement
800|tcp|mdbs_daemon|
801|tcp|device|
802|tcp|mbap-s|Modbus Application Protocol Secure
828|tcp|itm-mcell-s|itm-mcell-s
829|tcp|pkix-3-ca-ra|PKIX-3 CA/RA
830|tcp|netconf-ssh|NETCONF over SSH
831|tcp|netconf-beep|NETCONF over BEEP
832|tcp|netconfsoaphttp|NETCONF for SOAP over HTTPS
833|tcp|netconfsoapbeep|NETCONF for SOAP over BEEP
847|tcp|dhcp-failover2|dhcp-failover 2
848|tcp|gdoi|GDOI
853|tcp|domain-s|DNS query-response protocol run over TLS/DTLS
854|tcp|dlep|Dynamic Link Exchange Protocol (DLEP)
860|tcp|iscsi|iSCSI
861|tcp|owamp-control|OWAMP-Control
862|tcp|twamp-control|TWAMP-Control
873|tcp|rsync|rsync
886|tcp|iclcnet-locate|ICL coNETion locate server
887|tcp|iclcnet-svinfo|System.Xml.XmlElement
887|tcp|iclcnet_svinfo|ICL coNETion server info
888|tcp|accessbuilder|AccessBuilder
888|tcp|cddbp|CD Database Protocol
900|tcp|omginitialrefs|OMG Initial Refs
901|tcp|smpnameres|SMPNAMERES
902|tcp|ideafarm-door|self documenting Telnet Door
903|tcp|ideafarm-panic|self documenting Telnet Panic Door
910|tcp|kink|Kerberized Internet Negotiation of Keys (KINK)
911|tcp|xact-backup|xact-backup
912|tcp|apex-mesh|APEX relay-relay service
913|tcp|apex-edge|APEX endpoint-relay service
953|tcp|rndc|BIND9 remote name daemon controller
989|tcp|ftps-data|ftp protocol, data, over TLS/SSL
990|tcp|ftps|ftp protocol, control, over TLS/SSL
991|tcp|nas|Netnews Administration System
992|tcp|telnets|telnet protocol over TLS/SSL
993|tcp|imaps|IMAP over TLS protocol
994|tcp|record|Reserved
995|tcp|pop3s|POP3 over TLS protocol
996|tcp|vsinet|vsinet
997|tcp|maitrd|
998|tcp|busboy|
999|tcp|garcon|
999|tcp|puprouter|
1000|tcp|cadlock2|
1001|tcp|webpush|HTTP Web Push
1010|tcp|surf|surf
1021|tcp|exp1|RFC3692-style Experiment 1
1021|sctp|exp1|RFC3692-style Experiment 1
1021|dccp|exp1|RFC3692-style Experiment 1
1022|tcp|exp2|RFC3692-style Experiment 2
1022|sctp|exp2|RFC3692-style Experiment 2
1022|dccp|exp2|RFC3692-style Experiment 2
1023|tcp|record|Reserved
1024|tcp|record|Reserved
1025|tcp|blackjack|network blackjack
1026|tcp|cap|Calendar Access Protocol
1027|tcp|record|Reserved
1029|tcp|solid-mux|Solid Mux Server
1033|tcp|netinfo-local|local netinfo port
1034|tcp|activesync|ActiveSync Notifications
1035|tcp|mxxrlogin|MX-XR RPC
1036|tcp|nsstp|Nebula Secure Segment Transfer Protocol
1037|tcp|ams|AMS
1038|tcp|mtqp|Message Tracking Query Protocol
1039|tcp|sbl|Streamlined Blackhole
1040|tcp|netarx|Netarx Netcare
1041|tcp|danf-ak2|AK2 Product
1042|tcp|afrog|Subnet Roaming
1043|tcp|boinc-client|BOINC Client Control
1044|tcp|dcutility|Dev Consortium Utility
1045|tcp|fpitp|Fingerprint Image Transfer Protocol
1046|tcp|wfremotertm|WebFilter Remote Monitor
1047|tcp|neod1|Sun's NEO Object Request Broker
1048|tcp|neod2|Sun's NEO Object Request Broker
1049|tcp|td-postman|Tobit David Postman VPMN
1050|tcp|cma|CORBA Management Agent
1051|tcp|optima-vnet|Optima VNET
1052|tcp|ddt|Dynamic DNS Tools
1053|tcp|remote-as|Remote Assistant (RA)
1054|tcp|brvread|BRVREAD
1055|tcp|ansyslmd|ANSYS - License Manager
1056|tcp|vfo|VFO
1057|tcp|startron|STARTRON
1058|tcp|nim|nim
1059|tcp|nimreg|nimreg
1060|tcp|polestar|POLESTAR
1061|tcp|kiosk|KIOSK
1062|tcp|veracity|Veracity
1063|tcp|kyoceranetdev|KyoceraNetDev
1064|tcp|jstel|JSTEL
1065|tcp|syscomlan|SYSCOMLAN
1066|tcp|fpo-fns|FPO-FNS
1067|tcp|instl-boots|System.Xml.XmlElement
1067|tcp|instl_boots|Installation Bootstrap Proto. Serv.
1068|tcp|instl-bootc|System.Xml.XmlElement
1068|tcp|instl_bootc|Installation Bootstrap Proto. Cli.
1069|tcp|cognex-insight|COGNEX-INSIGHT
1070|tcp|gmrupdateserv|GMRUpdateSERV
1071|tcp|bsquare-voip|BSQUARE-VOIP
1072|tcp|cardax|CARDAX
1073|tcp|bridgecontrol|Bridge Control
1074|tcp|warmspotMgmt|Warmspot Management Protocol
1075|tcp|rdrmshc|RDRMSHC
1076|tcp|dab-sti-c|DAB STI-C
1077|tcp|imgames|IMGames
1078|tcp|avocent-proxy|Avocent Proxy Protocol
1079|tcp|asprovatalk|ASPROVATalk
1080|tcp|socks|Socks
1081|tcp|pvuniwien|PVUNIWIEN
1082|tcp|amt-esd-prot|AMT-ESD-PROT
1083|tcp|ansoft-lm-1|Anasoft License Manager
1084|tcp|ansoft-lm-2|Anasoft License Manager
1085|tcp|webobjects|Web Objects
1086|tcp|cplscrambler-lg|CPL Scrambler Logging
1087|tcp|cplscrambler-in|CPL Scrambler Internal
1088|tcp|cplscrambler-al|CPL Scrambler Alarm Log
1089|tcp|ff-annunc|FF Annunciation
1090|tcp|ff-fms|FF Fieldbus Message Specification
1091|tcp|ff-sm|FF System Management
1092|tcp|obrpd|Open Business Reporting Protocol
1093|tcp|proofd|PROOFD
1094|tcp|rootd|ROOTD
1095|tcp|nicelink|NICELink
1096|tcp|cnrprotocol|Common Name Resolution Protocol
1097|tcp|sunclustermgr|Sun Cluster Manager
1098|tcp|rmiactivation|RMI Activation
1099|tcp|rmiregistry|RMI Registry
1100|tcp|mctp|MCTP
1101|tcp|pt2-discover|PT2-DISCOVER
1102|tcp|adobeserver-1|ADOBE SERVER 1
1103|tcp|adobeserver-2|ADOBE SERVER 2
1104|tcp|xrl|XRL
1105|tcp|ftranhc|FTRANHC
1106|tcp|isoipsigport-1|ISOIPSIGPORT-1
1107|tcp|isoipsigport-2|ISOIPSIGPORT-2
1108|tcp|ratio-adp|ratio-adp
1110|tcp|webadmstart|Start web admin server
1111|tcp|lmsocialserver|LM Social Server
1112|tcp|icp|Intelligent Communication Protocol
1113|tcp|ltp-deepspace|Licklider Transmission Protocol
1113|dccp|ltp-deepspace|Licklider Transmission Protocol
1114|tcp|mini-sql|Mini SQL
1115|tcp|ardus-trns|ARDUS Transfer
1116|tcp|ardus-cntl|ARDUS Control
1117|tcp|ardus-mtrns|ARDUS Multicast Transfer
1118|tcp|sacred|SACRED
1119|tcp|bnetgame|Battle.net Chat/Game Protocol
1120|tcp|bnetfile|Battle.net File Transfer Protocol
1121|tcp|rmpp|Datalode RMPP
1122|tcp|availant-mgr|availant-mgr
1123|tcp|murray|Murray
1124|tcp|hpvmmcontrol|HP VMM Control
1125|tcp|hpvmmagent|HP VMM Agent
1126|tcp|hpvmmdata|HP VMM Agent
1127|tcp|kwdb-commn|KWDB Remote Communication
1128|tcp|saphostctrl|SAPHostControl over SOAP/HTTP
1129|tcp|saphostctrls|SAPHostControl over SOAP/HTTPS
1130|tcp|casp|CAC App Service Protocol
1131|tcp|caspssl|CAC App Service Protocol Encripted
1132|tcp|kvm-via-ip|KVM-via-IP Management Service
1133|tcp|dfn|Data Flow Network
1134|tcp|aplx|MicroAPL APLX
1135|tcp|omnivision|OmniVision Communication Service
1136|tcp|hhb-gateway|HHB Gateway Control
1137|tcp|trim|TRIM Workgroup Service
1138|tcp|encrypted-admin|System.Xml.XmlElement
1138|tcp|encrypted_admin|encrypted admin requests
1139|tcp|evm|Enterprise Virtual Manager
1140|tcp|autonoc|AutoNOC Network Operations Protocol
1141|tcp|mxomss|User Message Service
1142|tcp|edtools|User Discovery Service
1143|tcp|imyx|Infomatryx Exchange
1144|tcp|fuscript|Fusion Script
1145|tcp|x9-icue|X9 iCue Show Control
1146|tcp|audit-transfer|audit transfer
1147|tcp|capioverlan|CAPIoverLAN
1148|tcp|elfiq-repl|Elfiq Replication Service
1149|tcp|bvtsonar|BlueView Sonar Service
1150|tcp|blaze|Blaze File Server
1151|tcp|unizensus|Unizensus Login Server
1152|tcp|winpoplanmess|Winpopup LAN Messenger
1153|tcp|c1222-acse|ANSI C12.22 Port
1154|tcp|resacommunity|Community Service
1155|tcp|nfa|Network File Access
1156|tcp|iascontrol-oms|iasControl OMS
1157|tcp|iascontrol|Oracle iASControl
1158|tcp|dbcontrol-oms|dbControl OMS
1159|tcp|oracle-oms|Oracle OMS
1160|tcp|olsv|DB Lite Mult-User Server
1161|tcp|health-polling|Health Polling
1162|tcp|health-trap|Health Trap
1163|tcp|sddp|SmartDialer Data Protocol
1164|tcp|qsm-proxy|QSM Proxy Service
1165|tcp|qsm-gui|QSM GUI Service
1166|tcp|qsm-remote|QSM RemoteExec
1167|tcp|cisco-ipsla|Cisco IP SLAs Control Protocol
1167|sctp|cisco-ipsla|Cisco IP SLAs Control Protocol
1168|tcp|vchat|VChat Conference Service
1169|tcp|tripwire|TRIPWIRE
1170|tcp|atc-lm|AT+C License Manager
1171|tcp|atc-appserver|AT+C FmiApplicationServer
1172|tcp|dnap|DNA Protocol
1173|tcp|d-cinema-rrp|D-Cinema Request-Response
1174|tcp|fnet-remote-ui|FlashNet Remote Admin
1175|tcp|dossier|Dossier Server
1176|tcp|indigo-server|Indigo Home Server
1177|tcp|dkmessenger|DKMessenger Protocol
1178|tcp|sgi-storman|SGI Storage Manager
1179|tcp|b2n|Backup To Neighbor
1180|tcp|mc-client|Millicent Client Proxy
1181|tcp|3comnetman|3Com Net Management
1182|tcp|accelenet|AcceleNet Control
1183|tcp|llsurfup-http|LL Surfup HTTP
1184|tcp|llsurfup-https|LL Surfup HTTPS
1185|tcp|catchpole|Catchpole port
1186|tcp|mysql-cluster|MySQL Cluster Manager
1187|tcp|alias|Alias Service
1188|tcp|hp-webadmin|HP Web Admin
1189|tcp|unet|Unet Connection
1190|tcp|commlinx-avl|CommLinx GPS / AVL System
1191|tcp|gpfs|General Parallel File System
1192|tcp|caids-sensor|caids sensors channel
1193|tcp|fiveacross|Five Across Server
1194|tcp|openvpn|OpenVPN
1195|tcp|rsf-1|RSF-1 clustering
1196|tcp|netmagic|Network Magic
1197|tcp|carrius-rshell|Carrius Remote Access
1198|tcp|cajo-discovery|cajo reference discovery
1199|tcp|dmidi|DMIDI
1200|tcp|scol|SCOL
1201|tcp|nucleus-sand|Nucleus Sand Database Server
1202|tcp|caiccipc|caiccipc
1203|tcp|ssslic-mgr|License Validation
1204|tcp|ssslog-mgr|Log Request Listener
1205|tcp|accord-mgc|Accord-MGC
1206|tcp|anthony-data|Anthony Data
1207|tcp|metasage|MetaSage
1208|tcp|seagull-ais|SEAGULL AIS
1209|tcp|ipcd3|IPCD3
1210|tcp|eoss|EOSS
1211|tcp|groove-dpp|Groove DPP
1212|tcp|lupa|lupa
1213|tcp|mpc-lifenet|Medtronic/Physio-Control LIFENET
1214|tcp|kazaa|KAZAA
1215|tcp|scanstat-1|scanSTAT 1.0
1216|tcp|etebac5|ETEBAC 5
1217|tcp|hpss-ndapi|HPSS NonDCE Gateway
1218|tcp|aeroflight-ads|AeroFlight-ADs
1219|tcp|aeroflight-ret|AeroFlight-Ret
1220|tcp|qt-serveradmin|QT SERVER ADMIN
1221|tcp|sweetware-apps|SweetWARE Apps
1222|tcp|nerv|SNI R&D network
1223|tcp|tgp|TrulyGlobal Protocol
1224|tcp|vpnz|VPNz
1225|tcp|slinkysearch|SLINKYSEARCH
1226|tcp|stgxfws|STGXFWS
1227|tcp|dns2go|DNS2Go
1228|tcp|florence|FLORENCE
1229|tcp|zented|ZENworks Tiered Electronic Distribution
1230|tcp|periscope|Periscope
1231|tcp|menandmice-lpm|menandmice-lpm
1232|tcp|first-defense|Remote systems monitoring
1233|tcp|univ-appserver|Universal App Server
1234|tcp|search-agent|Infoseek Search Agent
1235|tcp|mosaicsyssvc1|mosaicsyssvc1
1236|tcp|bvcontrol|bvcontrol
1237|tcp|tsdos390|tsdos390
1238|tcp|hacl-qs|hacl-qs
1239|tcp|nmsd|NMSD
1240|tcp|instantia|Instantia
1241|tcp|nessus|nessus
1242|tcp|nmasoverip|NMAS over IP
1243|tcp|serialgateway|SerialGateway
1244|tcp|isbconference1|isbconference1
1245|tcp|isbconference2|isbconference2
1246|tcp|payrouter|payrouter
1247|tcp|visionpyramid|VisionPyramid
1248|tcp|hermes|hermes
1249|tcp|mesavistaco|Mesa Vista Co
1250|tcp|swldy-sias|swldy-sias
1251|tcp|servergraph|servergraph
1252|tcp|bspne-pcc|bspne-pcc
1253|tcp|q55-pcc|q55-pcc
1254|tcp|de-noc|de-noc
1255|tcp|de-cache-query|de-cache-query
1256|tcp|de-server|de-server
1257|tcp|shockwave2|Shockwave 2
1258|tcp|opennl|Open Network Library
1259|tcp|opennl-voice|Open Network Library Voice
1260|tcp|ibm-ssd|ibm-ssd
1261|tcp|mpshrsv|mpshrsv
1262|tcp|qnts-orb|QNTS-ORB
1263|tcp|dka|dka
1264|tcp|prat|PRAT
1265|tcp|dssiapi|DSSIAPI
1266|tcp|dellpwrappks|DELLPWRAPPKS
1267|tcp|epc|eTrust Policy Compliance
1268|tcp|propel-msgsys|PROPEL-MSGSYS
1269|tcp|watilapp|WATiLaPP
1270|tcp|opsmgr|Microsoft Operations Manager
1271|tcp|excw|eXcW