forked from fleschutz/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathports.csv
We can't make this file beautiful and searchable because it's too large.
13297 lines (13296 loc) · 575 KB
/
ports.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
"Port","Service","Protocol","Description"
"0","","tcp","Reserved"
"0","","udp","Reserved"
"1","tcpmux","tcp","TCP Port Service Multiplexer"
"1","tcpmux","udp","TCP Port Service Multiplexer"
"2","compressnet","tcp","Management Utility"
"2","compressnet","udp","Management Utility"
"3","compressnet","tcp","Compression Process"
"3","compressnet","udp","Compression Process"
"4","","tcp","Unassigned"
"4","","udp","Unassigned"
"5","rje","tcp","Remote Job Entry"
"5","rje","udp","Remote Job Entry"
"6","","tcp","Unassigned"
"6","","udp","Unassigned"
"7","echo","tcp","Echo"
"7","echo","udp","Echo"
"8","","tcp","Unassigned"
"8","","udp","Unassigned"
"9","discard","tcp","Discard"
"9","discard","udp","Discard"
"9","discard","sctp","Discard"
"9","discard","dccp","Discard"
"10","","tcp","Unassigned"
"10","","udp","Unassigned"
"11","systat","tcp","Active Users"
"11","systat","udp","Active Users"
"12","","tcp","Unassigned"
"12","","udp","Unassigned"
"13","daytime","tcp","Daytime"
"13","daytime","udp","Daytime"
"14","","tcp","Unassigned"
"14","","udp","Unassigned"
"15","","tcp","Unassigned [was netstat]"
"15","","udp","Unassigned"
"16","","tcp","Unassigned"
"16","","udp","Unassigned"
"17","qotd","tcp","Quote of the Day"
"17","qotd","udp","Quote of the Day"
"18","msp","tcp","Message Send Protocol (historic)"
"18","msp","udp","Message Send Protocol (historic)"
"19","chargen","tcp","Character Generator"
"19","chargen","udp","Character Generator"
"20","ftp-data","tcp","File Transfer [Default Data]"
"20","ftp-data","udp","File Transfer [Default Data]"
"20","ftp-data","sctp","FTP"
"21","ftp","tcp","File Transfer Protocol [Control]"
"21","ftp","udp","File Transfer Protocol [Control]"
"21","ftp","sctp","FTP"
"22","ssh","tcp","The Secure Shell (SSH) Protocol"
"22","ssh","udp","The Secure Shell (SSH) Protocol"
"22","ssh","sctp","SSH"
"23","telnet","tcp","Telnet"
"23","telnet","udp","Telnet"
"24","","tcp","any private mail system"
"24","","udp","any private mail system"
"25","smtp","tcp","Simple Mail Transfer"
"25","smtp","udp","Simple Mail Transfer"
"26","","tcp","Unassigned"
"26","","udp","Unassigned"
"27","nsw-fe","tcp","NSW User System FE"
"27","nsw-fe","udp","NSW User System FE"
"28","","tcp","Unassigned"
"28","","udp","Unassigned"
"29","msg-icp","tcp","MSG ICP"
"29","msg-icp","udp","MSG ICP"
"30","","tcp","Unassigned"
"30","","udp","Unassigned"
"31","msg-auth","tcp","MSG Authentication"
"31","msg-auth","udp","MSG Authentication"
"32","","tcp","Unassigned"
"32","","udp","Unassigned"
"33","dsp","tcp","Display Support Protocol"
"33","dsp","udp","Display Support Protocol"
"34","","tcp","Unassigned"
"34","","udp","Unassigned"
"35","","tcp","any private printer server"
"35","","udp","any private printer server"
"36","","tcp","Unassigned"
"36","","udp","Unassigned"
"37","time","tcp","Time"
"37","time","udp","Time"
"38","rap","tcp","Route Access Protocol"
"38","rap","udp","Route Access Protocol"
"39","rlp","tcp","Resource Location Protocol"
"39","rlp","udp","Resource Location Protocol"
"40","","tcp","Unassigned"
"40","","udp","Unassigned"
"41","graphics","tcp","Graphics"
"41","graphics","udp","Graphics"
"42","name","tcp","Host Name Server"
"42","name","udp","Host Name Server"
"42","nameserver","tcp","Host Name Server"
"42","nameserver","udp","Host Name Server"
"43","nicname","tcp","Who Is"
"43","nicname","udp","Who Is"
"44","mpm-flags","tcp","MPM FLAGS Protocol"
"44","mpm-flags","udp","MPM FLAGS Protocol"
"45","mpm","tcp","Message Processing Module [recv]"
"45","mpm","udp","Message Processing Module [recv]"
"46","mpm-snd","tcp","MPM [default send]"
"46","mpm-snd","udp","MPM [default send]"
"47","ni-ftp","tcp","NI FTP"
"47","ni-ftp","udp","NI FTP"
"48","auditd","tcp","Digital Audit Daemon"
"48","auditd","udp","Digital Audit Daemon"
"49","tacacs","tcp","Login Host Protocol (TACACS)"
"49","tacacs","udp","Login Host Protocol (TACACS)"
"50","re-mail-ck","tcp","Remote Mail Checking Protocol"
"50","re-mail-ck","udp","Remote Mail Checking Protocol"
"51","","","Reserved"
"52","xns-time","tcp","XNS Time Protocol"
"52","xns-time","udp","XNS Time Protocol"
"53","domain","tcp","Domain Name Server"
"53","domain","udp","Domain Name Server"
"54","xns-ch","tcp","XNS Clearinghouse"
"54","xns-ch","udp","XNS Clearinghouse"
"55","isi-gl","tcp","ISI Graphics Language"
"55","isi-gl","udp","ISI Graphics Language"
"56","xns-auth","tcp","XNS Authentication"
"56","xns-auth","udp","XNS Authentication"
"57","","tcp","any private terminal access"
"57","","udp","any private terminal access"
"58","xns-mail","tcp","XNS Mail"
"58","xns-mail","udp","XNS Mail"
"59","","tcp","any private file service"
"59","","udp","any private file service"
"60","","tcp","Unassigned"
"60","","udp","Unassigned"
"61","ni-mail","tcp","NI MAIL"
"61","ni-mail","udp","NI MAIL"
"62","acas","tcp","ACA Services"
"62","acas","udp","ACA Services"
"63","whoispp","tcp","whois++
IANA assigned this well-formed service name as a replacement for ""whois++""."
"63","whois++","tcp","whois++"
"63","whoispp","udp","whois++
IANA assigned this well-formed service name as a replacement for ""whois++""."
"63","whois++","udp","whois++"
"64","covia","tcp","Communications Integrator (CI)"
"64","covia","udp","Communications Integrator (CI)"
"65","tacacs-ds","tcp","TACACS-Database Service"
"65","tacacs-ds","udp","TACACS-Database Service"
"66","sql-net","tcp","Oracle SQL*NET
IANA assigned this well-formed service name as a replacement for ""sql*net""."
"66","sql*net","tcp","Oracle SQL*NET"
"66","sql-net","udp","Oracle SQL*NET
IANA assigned this well-formed service name as a replacement for ""sql*net""."
"66","sql*net","udp","Oracle SQL*NET"
"67","bootps","tcp","Bootstrap Protocol Server"
"67","bootps","udp","Bootstrap Protocol Server"
"68","bootpc","tcp","Bootstrap Protocol Client"
"68","bootpc","udp","Bootstrap Protocol Client"
"69","tftp","tcp","Trivial File Transfer"
"69","tftp","udp","Trivial File Transfer"
"70","gopher","tcp","Gopher"
"70","gopher","udp","Gopher"
"71","netrjs-1","tcp","Remote Job Service"
"71","netrjs-1","udp","Remote Job Service"
"72","netrjs-2","tcp","Remote Job Service"
"72","netrjs-2","udp","Remote Job Service"
"73","netrjs-3","tcp","Remote Job Service"
"73","netrjs-3","udp","Remote Job Service"
"74","netrjs-4","tcp","Remote Job Service"
"74","netrjs-4","udp","Remote Job Service"
"75","","tcp","any private dial out service"
"75","","udp","any private dial out service"
"76","deos","tcp","Distributed External Object Store"
"76","deos","udp","Distributed External Object Store"
"77","","tcp","any private RJE service"
"77","","udp","any private RJE service"
"78","vettcp","tcp","vettcp"
"78","vettcp","udp","vettcp"
"79","finger","tcp","Finger"
"79","finger","udp","Finger"
"80","http","tcp","World Wide Web HTTP"
"80","http","udp","World Wide Web HTTP"
"80","www","tcp","World Wide Web HTTP"
"80","www","udp","World Wide Web HTTP"
"80","www-http","tcp","World Wide Web HTTP"
"80","www-http","udp","World Wide Web HTTP"
"80","http","sctp","HTTP"
"81","","","Unassigned"
"82","xfer","tcp","XFER Utility"
"82","xfer","udp","XFER Utility"
"83","mit-ml-dev","tcp","MIT ML Device"
"83","mit-ml-dev","udp","MIT ML Device"
"84","ctf","tcp","Common Trace Facility"
"84","ctf","udp","Common Trace Facility"
"85","mit-ml-dev","tcp","MIT ML Device"
"85","mit-ml-dev","udp","MIT ML Device"
"86","mfcobol","tcp","Micro Focus Cobol"
"86","mfcobol","udp","Micro Focus Cobol"
"87","","tcp","any private terminal link"
"87","","udp","any private terminal link"
"88","kerberos","tcp","Kerberos"
"88","kerberos","udp","Kerberos"
"89","su-mit-tg","tcp","SU/MIT Telnet Gateway"
"89","su-mit-tg","udp","SU/MIT Telnet Gateway"
"90","dnsix","tcp","DNSIX Securit Attribute Token Map"
"90","dnsix","udp","DNSIX Securit Attribute Token Map"
"91","mit-dov","tcp","MIT Dover Spooler"
"91","mit-dov","udp","MIT Dover Spooler"
"92","npp","tcp","Network Printing Protocol"
"92","npp","udp","Network Printing Protocol"
"93","dcp","tcp","Device Control Protocol"
"93","dcp","udp","Device Control Protocol"
"94","objcall","tcp","Tivoli Object Dispatcher"
"94","objcall","udp","Tivoli Object Dispatcher"
"95","supdup","tcp","SUPDUP"
"95","supdup","udp","SUPDUP"
"96","dixie","tcp","DIXIE Protocol Specification"
"96","dixie","udp","DIXIE Protocol Specification"
"97","swift-rvf","tcp","Swift Remote Virtural File Protocol"
"97","swift-rvf","udp","Swift Remote Virtural File Protocol"
"98","tacnews","tcp","TAC News"
"98","tacnews","udp","TAC News"
"99","metagram","tcp","Metagram Relay"
"99","metagram","udp","Metagram Relay"
"100","","","Unassigned"
"101","hostname","tcp","NIC Host Name Server"
"101","hostname","udp","NIC Host Name Server"
"102","iso-tsap","tcp","ISO-TSAP Class 0"
"102","iso-tsap","udp","ISO-TSAP Class 0"
"103","gppitnp","tcp","Genesis Point-to-Point Trans Net"
"103","gppitnp","udp","Genesis Point-to-Point Trans Net"
"104","acr-nema","tcp","ACR-NEMA Digital Imag. & Comm. 300"
"104","acr-nema","udp","ACR-NEMA Digital Imag. & Comm. 300"
"105","cso","tcp","CCSO name server protocol"
"105","cso","udp","CCSO name server protocol"
"105","csnet-ns","tcp","Mailbox Name Nameserver"
"105","csnet-ns","udp","Mailbox Name Nameserver"
"106","3com-tsmux","tcp","3COM-TSMUX"
"106","3com-tsmux","udp","3COM-TSMUX"
"107","rtelnet","tcp","Remote Telnet Service"
"107","rtelnet","udp","Remote Telnet Service"
"108","snagas","tcp","SNA Gateway Access Server"
"108","snagas","udp","SNA Gateway Access Server"
"109","pop2","tcp","Post Office Protocol - Version 2"
"109","pop2","udp","Post Office Protocol - Version 2"
"110","pop3","tcp","Post Office Protocol - Version 3"
"110","pop3","udp","Post Office Protocol - Version 3"
"111","sunrpc","tcp","SUN Remote Procedure Call"
"111","sunrpc","udp","SUN Remote Procedure Call"
"112","mcidas","tcp","McIDAS Data Transmission Protocol"
"112","mcidas","udp","McIDAS Data Transmission Protocol"
"113","ident","tcp",""
"113","auth","tcp","Authentication Service"
"113","auth","udp","Authentication Service"
"114","","","unassigned"
"115","sftp","tcp","Simple File Transfer Protocol"
"115","sftp","udp","Simple File Transfer Protocol"
"116","ansanotify","tcp","ANSA REX Notify"
"116","ansanotify","udp","ANSA REX Notify"
"117","uucp-path","tcp","UUCP Path Service"
"117","uucp-path","udp","UUCP Path Service"
"118","sqlserv","tcp","SQL Services"
"118","sqlserv","udp","SQL Services"
"119","nntp","tcp","Network News Transfer Protocol"
"119","nntp","udp","Network News Transfer Protocol"
"120","cfdptkt","tcp","CFDPTKT"
"120","cfdptkt","udp","CFDPTKT"
"121","erpc","tcp","Encore Expedited Remote Pro.Call"
"121","erpc","udp","Encore Expedited Remote Pro.Call"
"122","smakynet","tcp","SMAKYNET"
"122","smakynet","udp","SMAKYNET"
"123","ntp","tcp","Network Time Protocol"
"123","ntp","udp","Network Time Protocol"
"124","ansatrader","tcp","ANSA REX Trader"
"124","ansatrader","udp","ANSA REX Trader"
"125","locus-map","tcp","Locus PC-Interface Net Map Ser"
"125","locus-map","udp","Locus PC-Interface Net Map Ser"
"126","nxedit","tcp","NXEdit"
"126","nxedit","udp","NXEdit"
"127","locus-con","tcp","Locus PC-Interface Conn Server"
"127","locus-con","udp","Locus PC-Interface Conn Server"
"128","gss-xlicen","tcp","GSS X License Verification"
"128","gss-xlicen","udp","GSS X License Verification"
"129","pwdgen","tcp","Password Generator Protocol"
"129","pwdgen","udp","Password Generator Protocol"
"130","cisco-fna","tcp","cisco FNATIVE"
"130","cisco-fna","udp","cisco FNATIVE"
"131","cisco-tna","tcp","cisco TNATIVE"
"131","cisco-tna","udp","cisco TNATIVE"
"132","cisco-sys","tcp","cisco SYSMAINT"
"132","cisco-sys","udp","cisco SYSMAINT"
"133","statsrv","tcp","Statistics Service"
"133","statsrv","udp","Statistics Service"
"134","ingres-net","tcp","INGRES-NET Service"
"134","ingres-net","udp","INGRES-NET Service"
"135","epmap","tcp","DCE endpoint resolution"
"135","epmap","udp","DCE endpoint resolution"
"136","profile","tcp","PROFILE Naming System"
"136","profile","udp","PROFILE Naming System"
"137","netbios-ns","tcp","NETBIOS Name Service"
"137","netbios-ns","udp","NETBIOS Name Service"
"138","netbios-dgm","tcp","NETBIOS Datagram Service"
"138","netbios-dgm","udp","NETBIOS Datagram Service"
"139","netbios-ssn","tcp","NETBIOS Session Service"
"139","netbios-ssn","udp","NETBIOS Session Service"
"140","emfis-data","tcp","EMFIS Data Service"
"140","emfis-data","udp","EMFIS Data Service"
"141","emfis-cntl","tcp","EMFIS Control Service"
"141","emfis-cntl","udp","EMFIS Control Service"
"142","bl-idm","tcp","Britton-Lee IDM"
"142","bl-idm","udp","Britton-Lee IDM"
"143","imap","tcp","Internet Message Access Protocol"
"143","imap","udp","Internet Message Access Protocol"
"144","uma","tcp","Universal Management Architecture"
"144","uma","udp","Universal Management Architecture"
"145","uaac","tcp","UAAC Protocol"
"145","uaac","udp","UAAC Protocol"
"146","iso-tp0","tcp","ISO-IP0"
"146","iso-tp0","udp","ISO-IP0"
"147","iso-ip","tcp","ISO-IP"
"147","iso-ip","udp","ISO-IP"
"148","jargon","tcp","Jargon"
"148","jargon","udp","Jargon"
"149","aed-512","tcp","AED 512 Emulation Service"
"149","aed-512","udp","AED 512 Emulation Service"
"150","sql-net","tcp","SQL-NET"
"150","sql-net","udp","SQL-NET"
"151","hems","tcp","HEMS"
"151","hems","udp","HEMS"
"152","bftp","tcp","Background File Transfer Program"
"152","bftp","udp","Background File Transfer Program"
"153","sgmp","tcp","SGMP"
"153","sgmp","udp","SGMP"
"154","netsc-prod","tcp","NETSC"
"154","netsc-prod","udp","NETSC"
"155","netsc-dev","tcp","NETSC"
"155","netsc-dev","udp","NETSC"
"156","sqlsrv","tcp","SQL Service"
"156","sqlsrv","udp","SQL Service"
"157","knet-cmp","tcp","KNET/VM Command/Message Protocol"
"157","knet-cmp","udp","KNET/VM Command/Message Protocol"
"158","pcmail-srv","tcp","PCMail Server"
"158","pcmail-srv","udp","PCMail Server"
"159","nss-routing","tcp","NSS-Routing"
"159","nss-routing","udp","NSS-Routing"
"160","sgmp-traps","tcp","SGMP-TRAPS"
"160","sgmp-traps","udp","SGMP-TRAPS"
"161","snmp","tcp","SNMP"
"161","snmp","udp","SNMP"
"162","snmptrap","tcp","SNMPTRAP"
"162","snmptrap","udp","SNMPTRAP"
"163","cmip-man","tcp","CMIP/TCP Manager"
"163","cmip-man","udp","CMIP/TCP Manager"
"164","cmip-agent","tcp","CMIP/TCP Agent"
"164","cmip-agent","udp","CMIP/TCP Agent"
"165","xns-courier","tcp","Xerox"
"165","xns-courier","udp","Xerox"
"166","s-net","tcp","Sirius Systems"
"166","s-net","udp","Sirius Systems"
"167","namp","tcp","NAMP"
"167","namp","udp","NAMP"
"168","rsvd","tcp","RSVD"
"168","rsvd","udp","RSVD"
"169","send","tcp","SEND"
"169","send","udp","SEND"
"170","print-srv","tcp","Network PostScript"
"170","print-srv","udp","Network PostScript"
"171","multiplex","tcp","Network Innovations Multiplex"
"171","multiplex","udp","Network Innovations Multiplex"
"172","cl-1","tcp","Network Innovations CL/1
IANA assigned this well-formed service name as a replacement for ""cl/1""."
"172","cl/1","tcp","Network Innovations CL/1"
"172","cl-1","udp","Network Innovations CL/1
IANA assigned this well-formed service name as a replacement for ""cl/1""."
"172","cl/1","udp","Network Innovations CL/1"
"173","xyplex-mux","tcp","Xyplex"
"173","xyplex-mux","udp","Xyplex"
"174","mailq","tcp","MAILQ"
"174","mailq","udp","MAILQ"
"175","vmnet","tcp","VMNET"
"175","vmnet","udp","VMNET"
"176","genrad-mux","tcp","GENRAD-MUX"
"176","genrad-mux","udp","GENRAD-MUX"
"177","xdmcp","tcp","X Display Manager Control Protocol"
"177","xdmcp","udp","X Display Manager Control Protocol"
"178","nextstep","tcp","NextStep Window Server"
"178","nextstep","udp","NextStep Window Server"
"179","bgp","tcp","Border Gateway Protocol"
"179","bgp","udp","Border Gateway Protocol"
"179","bgp","sctp","BGP"
"180","ris","tcp","Intergraph"
"180","ris","udp","Intergraph"
"181","unify","tcp","Unify"
"181","unify","udp","Unify"
"182","audit","tcp","Unisys Audit SITP"
"182","audit","udp","Unisys Audit SITP"
"183","ocbinder","tcp","OCBinder"
"183","ocbinder","udp","OCBinder"
"184","ocserver","tcp","OCServer"
"184","ocserver","udp","OCServer"
"185","remote-kis","tcp","Remote-KIS"
"185","remote-kis","udp","Remote-KIS"
"186","kis","tcp","KIS Protocol"
"186","kis","udp","KIS Protocol"
"187","aci","tcp","Application Communication Interface"
"187","aci","udp","Application Communication Interface"
"188","mumps","tcp","Plus Five's MUMPS"
"188","mumps","udp","Plus Five's MUMPS"
"189","qft","tcp","Queued File Transport"
"189","qft","udp","Queued File Transport"
"190","gacp","tcp","Gateway Access Control Protocol"
"190","gacp","udp","Gateway Access Control Protocol"
"191","prospero","tcp","Prospero Directory Service"
"191","prospero","udp","Prospero Directory Service"
"192","osu-nms","tcp","OSU Network Monitoring System"
"192","osu-nms","udp","OSU Network Monitoring System"
"193","srmp","tcp","Spider Remote Monitoring Protocol"
"193","srmp","udp","Spider Remote Monitoring Protocol"
"194","irc","tcp","Internet Relay Chat Protocol"
"194","irc","udp","Internet Relay Chat Protocol"
"195","dn6-nlm-aud","tcp","DNSIX Network Level Module Audit"
"195","dn6-nlm-aud","udp","DNSIX Network Level Module Audit"
"196","dn6-smm-red","tcp","DNSIX Session Mgt Module Audit Redir"
"196","dn6-smm-red","udp","DNSIX Session Mgt Module Audit Redir"
"197","dls","tcp","Directory Location Service"
"197","dls","udp","Directory Location Service"
"198","dls-mon","tcp","Directory Location Service Monitor"
"198","dls-mon","udp","Directory Location Service Monitor"
"199","smux","tcp","SMUX"
"199","smux","udp","SMUX"
"200","src","tcp","IBM System Resource Controller"
"200","src","udp","IBM System Resource Controller"
"201","at-rtmp","tcp","AppleTalk Routing Maintenance"
"201","at-rtmp","udp","AppleTalk Routing Maintenance"
"202","at-nbp","tcp","AppleTalk Name Binding"
"202","at-nbp","udp","AppleTalk Name Binding"
"203","at-3","tcp","AppleTalk Unused"
"203","at-3","udp","AppleTalk Unused"
"204","at-echo","tcp","AppleTalk Echo"
"204","at-echo","udp","AppleTalk Echo"
"205","at-5","tcp","AppleTalk Unused"
"205","at-5","udp","AppleTalk Unused"
"206","at-zis","tcp","AppleTalk Zone Information"
"206","at-zis","udp","AppleTalk Zone Information"
"207","at-7","tcp","AppleTalk Unused"
"207","at-7","udp","AppleTalk Unused"
"208","at-8","tcp","AppleTalk Unused"
"208","at-8","udp","AppleTalk Unused"
"209","qmtp","tcp","The Quick Mail Transfer Protocol"
"209","qmtp","udp","The Quick Mail Transfer Protocol"
"210","z39-50","tcp","ANSI Z39.50
IANA assigned this well-formed service name as a replacement for ""z39.50""."
"210","z39.50","tcp","ANSI Z39.50"
"210","z39-50","udp","ANSI Z39.50
IANA assigned this well-formed service name as a replacement for ""z39.50""."
"210","z39.50","udp","ANSI Z39.50"
"211","914c-g","tcp","Texas Instruments 914C/G Terminal
IANA assigned this well-formed service name as a replacement for ""914c/g""."
"211","914c/g","tcp","Texas Instruments 914C/G Terminal"
"211","914c-g","udp","Texas Instruments 914C/G Terminal
IANA assigned this well-formed service name as a replacement for ""914c/g""."
"211","914c/g","udp","Texas Instruments 914C/G Terminal"
"212","anet","tcp","ATEXSSTR"
"212","anet","udp","ATEXSSTR"
"213","ipx","tcp","IPX"
"213","ipx","udp","IPX"
"214","vmpwscs","tcp","VM PWSCS"
"214","vmpwscs","udp","VM PWSCS"
"215","softpc","tcp","Insignia Solutions"
"215","softpc","udp","Insignia Solutions"
"216","CAIlic","tcp","Computer Associates Int'l License Server"
"216","CAIlic","udp","Computer Associates Int'l License Server"
"217","dbase","tcp","dBASE Unix"
"217","dbase","udp","dBASE Unix"
"218","mpp","tcp","Netix Message Posting Protocol"
"218","mpp","udp","Netix Message Posting Protocol"
"219","uarps","tcp","Unisys ARPs"
"219","uarps","udp","Unisys ARPs"
"220","imap3","tcp","Interactive Mail Access Protocol v3"
"220","imap3","udp","Interactive Mail Access Protocol v3"
"221","fln-spx","tcp","Berkeley rlogind with SPX auth"
"221","fln-spx","udp","Berkeley rlogind with SPX auth"
"222","rsh-spx","tcp","Berkeley rshd with SPX auth"
"222","rsh-spx","udp","Berkeley rshd with SPX auth"
"223","cdc","tcp","Certificate Distribution Center"
"223","cdc","udp","Certificate Distribution Center"
"224","masqdialer","tcp","masqdialer"
"224","masqdialer","udp","masqdialer"
"225-241","","","Reserved"
"242","direct","tcp","Direct"
"242","direct","udp","Direct"
"243","sur-meas","tcp","Survey Measurement"
"243","sur-meas","udp","Survey Measurement"
"244","inbusiness","tcp","inbusiness"
"244","inbusiness","udp","inbusiness"
"245","link","tcp","LINK"
"245","link","udp","LINK"
"246","dsp3270","tcp","Display Systems Protocol"
"246","dsp3270","udp","Display Systems Protocol"
"247","subntbcst-tftp","tcp","SUBNTBCST_TFTP
IANA assigned this well-formed service name as a replacement for ""subntbcst_tftp""."
"247","subntbcst_tftp","tcp","SUBNTBCST_TFTP"
"247","subntbcst-tftp","udp","SUBNTBCST_TFTP
IANA assigned this well-formed service name as a replacement for ""subntbcst_tftp""."
"247","subntbcst_tftp","udp","SUBNTBCST_TFTP"
"248","bhfhs","tcp","bhfhs"
"248","bhfhs","udp","bhfhs"
"249-255","","","Reserved"
"256","rap","tcp","RAP"
"256","rap","udp","RAP"
"257","set","tcp","Secure Electronic Transaction"
"257","set","udp","Secure Electronic Transaction"
"258","","","Unassigned"
"259","esro-gen","tcp","Efficient Short Remote Operations"
"259","esro-gen","udp","Efficient Short Remote Operations"
"260","openport","tcp","Openport"
"260","openport","udp","Openport"
"261","nsiiops","tcp","IIOP Name Service over TLS/SSL"
"261","nsiiops","udp","IIOP Name Service over TLS/SSL"
"262","arcisdms","tcp","Arcisdms"
"262","arcisdms","udp","Arcisdms"
"263","hdap","tcp","HDAP"
"263","hdap","udp","HDAP"
"264","bgmp","tcp","BGMP"
"264","bgmp","udp","BGMP"
"265","x-bone-ctl","tcp","X-Bone CTL"
"265","x-bone-ctl","udp","X-Bone CTL"
"266","sst","tcp","SCSI on ST"
"266","sst","udp","SCSI on ST"
"267","td-service","tcp","Tobit David Service Layer"
"267","td-service","udp","Tobit David Service Layer"
"268","td-replica","tcp","Tobit David Replica"
"268","td-replica","udp","Tobit David Replica"
"269","manet","tcp","MANET Protocols"
"269","manet","udp","MANET Protocols"
"270","","tcp","Reserved"
"270","gist","udp","Q-mode encapsulation for GIST messages"
"271","pt-tls","tcp","IETF Network Endpoint Assessment (NEA) Posture Transport Protocol over TLS (PT-TLS)"
"271","","udp","Reserved"
"272-279","","","Unassigned"
"280","http-mgmt","tcp","http-mgmt"
"280","http-mgmt","udp","http-mgmt"
"281","personal-link","tcp","Personal Link"
"281","personal-link","udp","Personal Link"
"282","cableport-ax","tcp","Cable Port A/X"
"282","cableport-ax","udp","Cable Port A/X"
"283","rescap","tcp","rescap"
"283","rescap","udp","rescap"
"284","corerjd","tcp","corerjd"
"284","corerjd","udp","corerjd"
"285","","","Unassigned"
"286","fxp","tcp","FXP Communication"
"286","fxp","udp","FXP Communication"
"287","k-block","tcp","K-BLOCK"
"287","k-block","udp","K-BLOCK"
"288-307","","","Unassigned"
"308","novastorbakcup","tcp","Novastor Backup"
"308","novastorbakcup","udp","Novastor Backup"
"309","entrusttime","tcp","EntrustTime"
"309","entrusttime","udp","EntrustTime"
"310","bhmds","tcp","bhmds"
"310","bhmds","udp","bhmds"
"311","asip-webadmin","tcp","AppleShare IP WebAdmin"
"311","asip-webadmin","udp","AppleShare IP WebAdmin"
"312","vslmp","tcp","VSLMP"
"312","vslmp","udp","VSLMP"
"313","magenta-logic","tcp","Magenta Logic"
"313","magenta-logic","udp","Magenta Logic"
"314","opalis-robot","tcp","Opalis Robot"
"314","opalis-robot","udp","Opalis Robot"
"315","dpsi","tcp","DPSI"
"315","dpsi","udp","DPSI"
"316","decauth","tcp","decAuth"
"316","decauth","udp","decAuth"
"317","zannet","tcp","Zannet"
"317","zannet","udp","Zannet"
"318","pkix-timestamp","tcp","PKIX TimeStamp"
"318","pkix-timestamp","udp","PKIX TimeStamp"
"319","ptp-event","tcp","PTP Event"
"319","ptp-event","udp","PTP Event"
"320","ptp-general","tcp","PTP General"
"320","ptp-general","udp","PTP General"
"321","pip","tcp","PIP"
"321","pip","udp","PIP"
"322","rtsps","tcp","RTSPS"
"322","rtsps","udp","RTSPS"
"323","rpki-rtr","tcp","Resource PKI to Router Protocol"
"323","","udp","Reserved"
"324","rpki-rtr-tls","tcp","Resource PKI to Router Protocol over TLS"
"324","","udp","Reserved"
"325-332","","","Unassigned"
"333","texar","tcp","Texar Security Port"
"333","texar","udp","Texar Security Port"
"334-343","","","Unassigned"
"344","pdap","tcp","Prospero Data Access Protocol"
"344","pdap","udp","Prospero Data Access Protocol"
"345","pawserv","tcp","Perf Analysis Workbench"
"345","pawserv","udp","Perf Analysis Workbench"
"346","zserv","tcp","Zebra server"
"346","zserv","udp","Zebra server"
"347","fatserv","tcp","Fatmen Server"
"347","fatserv","udp","Fatmen Server"
"348","csi-sgwp","tcp","Cabletron Management Protocol"
"348","csi-sgwp","udp","Cabletron Management Protocol"
"349","mftp","tcp","mftp"
"349","mftp","udp","mftp"
"350","matip-type-a","tcp","MATIP Type A"
"350","matip-type-a","udp","MATIP Type A"
"351","matip-type-b","tcp","MATIP Type B"
"351","matip-type-b","udp","MATIP Type B"
"351","bhoetty","tcp","bhoetty"
"351","bhoetty","udp","bhoetty"
"352","dtag-ste-sb","tcp","DTAG"
"352","dtag-ste-sb","udp","DTAG"
"352","bhoedap4","tcp","bhoedap4"
"352","bhoedap4","udp","bhoedap4"
"353","ndsauth","tcp","NDSAUTH"
"353","ndsauth","udp","NDSAUTH"
"354","bh611","tcp","bh611"
"354","bh611","udp","bh611"
"355","datex-asn","tcp","DATEX-ASN"
"355","datex-asn","udp","DATEX-ASN"
"356","cloanto-net-1","tcp","Cloanto Net 1"
"356","cloanto-net-1","udp","Cloanto Net 1"
"357","bhevent","tcp","bhevent"
"357","bhevent","udp","bhevent"
"358","shrinkwrap","tcp","Shrinkwrap"
"358","shrinkwrap","udp","Shrinkwrap"
"359","nsrmp","tcp","Network Security Risk Management Protocol"
"359","nsrmp","udp","Network Security Risk Management Protocol"
"360","scoi2odialog","tcp","scoi2odialog"
"360","scoi2odialog","udp","scoi2odialog"
"361","semantix","tcp","Semantix"
"361","semantix","udp","Semantix"
"362","srssend","tcp","SRS Send"
"362","srssend","udp","SRS Send"
"363","rsvp-tunnel","tcp","RSVP Tunnel
IANA assigned this well-formed service name as a replacement for ""rsvp_tunnel""."
"363","rsvp_tunnel","tcp","RSVP Tunnel"
"363","rsvp-tunnel","udp","RSVP Tunnel
IANA assigned this well-formed service name as a replacement for ""rsvp_tunnel""."
"363","rsvp_tunnel","udp","RSVP Tunnel"
"364","aurora-cmgr","tcp","Aurora CMGR"
"364","aurora-cmgr","udp","Aurora CMGR"
"365","dtk","tcp","DTK"
"365","dtk","udp","DTK"
"366","odmr","tcp","ODMR"
"366","odmr","udp","ODMR"
"367","mortgageware","tcp","MortgageWare"
"367","mortgageware","udp","MortgageWare"
"368","qbikgdp","tcp","QbikGDP"
"368","qbikgdp","udp","QbikGDP"
"369","rpc2portmap","tcp","rpc2portmap"
"369","rpc2portmap","udp","rpc2portmap"
"370","codaauth2","tcp","codaauth2"
"370","codaauth2","udp","codaauth2"
"371","clearcase","tcp","Clearcase"
"371","clearcase","udp","Clearcase"
"372","ulistproc","tcp","ListProcessor"
"372","ulistproc","udp","ListProcessor"
"373","legent-1","tcp","Legent Corporation"
"373","legent-1","udp","Legent Corporation"
"374","legent-2","tcp","Legent Corporation"
"374","legent-2","udp","Legent Corporation"
"375","hassle","tcp","Hassle"
"375","hassle","udp","Hassle"
"376","nip","tcp","Amiga Envoy Network Inquiry Proto"
"376","nip","udp","Amiga Envoy Network Inquiry Proto"
"377","tnETOS","tcp","NEC Corporation"
"377","tnETOS","udp","NEC Corporation"
"378","dsETOS","tcp","NEC Corporation"
"378","dsETOS","udp","NEC Corporation"
"379","is99c","tcp","TIA/EIA/IS-99 modem client"
"379","is99c","udp","TIA/EIA/IS-99 modem client"
"380","is99s","tcp","TIA/EIA/IS-99 modem server"
"380","is99s","udp","TIA/EIA/IS-99 modem server"
"381","hp-collector","tcp","hp performance data collector"
"381","hp-collector","udp","hp performance data collector"
"382","hp-managed-node","tcp","hp performance data managed node"
"382","hp-managed-node","udp","hp performance data managed node"
"383","hp-alarm-mgr","tcp","hp performance data alarm manager"
"383","hp-alarm-mgr","udp","hp performance data alarm manager"
"384","arns","tcp","A Remote Network Server System"
"384","arns","udp","A Remote Network Server System"
"385","ibm-app","tcp","IBM Application"
"385","ibm-app","udp","IBM Application"
"386","asa","tcp","ASA Message Router Object Def."
"386","asa","udp","ASA Message Router Object Def."
"387","aurp","tcp","Appletalk Update-Based Routing Pro."
"387","aurp","udp","Appletalk Update-Based Routing Pro."
"388","unidata-ldm","tcp","Unidata LDM"
"388","unidata-ldm","udp","Unidata LDM"
"389","ldap","tcp","Lightweight Directory Access Protocol"
"389","ldap","udp","Lightweight Directory Access Protocol"
"390","uis","tcp","UIS"
"390","uis","udp","UIS"
"391","synotics-relay","tcp","SynOptics SNMP Relay Port"
"391","synotics-relay","udp","SynOptics SNMP Relay Port"
"392","synotics-broker","tcp","SynOptics Port Broker Port"
"392","synotics-broker","udp","SynOptics Port Broker Port"
"393","meta5","tcp","Meta5"
"393","meta5","udp","Meta5"
"394","embl-ndt","tcp","EMBL Nucleic Data Transfer"
"394","embl-ndt","udp","EMBL Nucleic Data Transfer"
"395","netcp","tcp","NetScout Control Protocol"
"395","netcp","udp","NetScout Control Protocol"
"396","netware-ip","tcp","Novell Netware over IP"
"396","netware-ip","udp","Novell Netware over IP"
"397","mptn","tcp","Multi Protocol Trans. Net."
"397","mptn","udp","Multi Protocol Trans. Net."
"398","kryptolan","tcp","Kryptolan"
"398","kryptolan","udp","Kryptolan"
"399","iso-tsap-c2","tcp","ISO Transport Class 2 Non-Control over TCP"
"399","iso-tsap-c2","udp","ISO Transport Class 2 Non-Control over UDP"
"400","osb-sd","tcp","Oracle Secure Backup"
"400","osb-sd","udp","Oracle Secure Backup"
"401","ups","tcp","Uninterruptible Power Supply"
"401","ups","udp","Uninterruptible Power Supply"
"402","genie","tcp","Genie Protocol"
"402","genie","udp","Genie Protocol"
"403","decap","tcp","decap"
"403","decap","udp","decap"
"404","nced","tcp","nced"
"404","nced","udp","nced"
"405","ncld","tcp","ncld"
"405","ncld","udp","ncld"
"406","imsp","tcp","Interactive Mail Support Protocol"
"406","imsp","udp","Interactive Mail Support Protocol"
"407","timbuktu","tcp","Timbuktu"
"407","timbuktu","udp","Timbuktu"
"408","prm-sm","tcp","Prospero Resource Manager Sys. Man."
"408","prm-sm","udp","Prospero Resource Manager Sys. Man."
"409","prm-nm","tcp","Prospero Resource Manager Node Man."
"409","prm-nm","udp","Prospero Resource Manager Node Man."
"410","decladebug","tcp","DECLadebug Remote Debug Protocol"
"410","decladebug","udp","DECLadebug Remote Debug Protocol"
"411","rmt","tcp","Remote MT Protocol"
"411","rmt","udp","Remote MT Protocol"
"412","synoptics-trap","tcp","Trap Convention Port"
"412","synoptics-trap","udp","Trap Convention Port"
"413","smsp","tcp","Storage Management Services Protocol"
"413","smsp","udp","Storage Management Services Protocol"
"414","infoseek","tcp","InfoSeek"
"414","infoseek","udp","InfoSeek"
"415","bnet","tcp","BNet"
"415","bnet","udp","BNet"
"416","silverplatter","tcp","Silverplatter"
"416","silverplatter","udp","Silverplatter"
"417","onmux","tcp","Onmux"
"417","onmux","udp","Onmux"
"418","hyper-g","tcp","Hyper-G"
"418","hyper-g","udp","Hyper-G"
"419","ariel1","tcp","Ariel 1"
"419","ariel1","udp","Ariel 1"
"420","smpte","tcp","SMPTE"
"420","smpte","udp","SMPTE"
"421","ariel2","tcp","Ariel 2"
"421","ariel2","udp","Ariel 2"
"422","ariel3","tcp","Ariel 3"
"422","ariel3","udp","Ariel 3"
"423","opc-job-start","tcp","IBM Operations Planning and Control Start"
"423","opc-job-start","udp","IBM Operations Planning and Control Start"
"424","opc-job-track","tcp","IBM Operations Planning and Control Track"
"424","opc-job-track","udp","IBM Operations Planning and Control Track"
"425","icad-el","tcp","ICAD"
"425","icad-el","udp","ICAD"
"426","smartsdp","tcp","smartsdp"
"426","smartsdp","udp","smartsdp"
"427","svrloc","tcp","Server Location"
"427","svrloc","udp","Server Location"
"428","ocs-cmu","tcp","OCS_CMU
IANA assigned this well-formed service name as a replacement for ""ocs_cmu""."
"428","ocs_cmu","tcp","OCS_CMU"
"428","ocs-cmu","udp","OCS_CMU
IANA assigned this well-formed service name as a replacement for ""ocs_cmu""."
"428","ocs_cmu","udp","OCS_CMU"
"429","ocs-amu","tcp","OCS_AMU
IANA assigned this well-formed service name as a replacement for ""ocs_amu""."
"429","ocs_amu","tcp","OCS_AMU"
"429","ocs-amu","udp","OCS_AMU
IANA assigned this well-formed service name as a replacement for ""ocs_amu""."
"429","ocs_amu","udp","OCS_AMU"
"430","utmpsd","tcp","UTMPSD"
"430","utmpsd","udp","UTMPSD"
"431","utmpcd","tcp","UTMPCD"
"431","utmpcd","udp","UTMPCD"
"432","iasd","tcp","IASD"
"432","iasd","udp","IASD"
"433","nnsp","tcp","NNTP for transit servers (NNSP)"
"433","nnsp","udp","NNTP for transit servers (NNSP)"
"434","mobileip-agent","tcp","MobileIP-Agent"
"434","mobileip-agent","udp","MobileIP-Agent"
"435","mobilip-mn","tcp","MobilIP-MN"
"435","mobilip-mn","udp","MobilIP-MN"
"436","dna-cml","tcp","DNA-CML"
"436","dna-cml","udp","DNA-CML"
"437","comscm","tcp","comscm"
"437","comscm","udp","comscm"
"438","dsfgw","tcp","dsfgw"
"438","dsfgw","udp","dsfgw"
"439","dasp","tcp","dasp"
"439","dasp","udp","dasp"
"440","sgcp","tcp","sgcp"
"440","sgcp","udp","sgcp"
"441","decvms-sysmgt","tcp","decvms-sysmgt"
"441","decvms-sysmgt","udp","decvms-sysmgt"
"442","cvc-hostd","tcp","cvc_hostd
IANA assigned this well-formed service name as a replacement for ""cvc_hostd""."
"442","cvc_hostd","tcp","cvc_hostd"
"442","cvc-hostd","udp","cvc_hostd
IANA assigned this well-formed service name as a replacement for ""cvc_hostd""."
"442","cvc_hostd","udp","cvc_hostd"
"443","https","tcp","http protocol over TLS/SSL"
"443","https","udp","http protocol over TLS/SSL"
"443","https","sctp","HTTPS"
"444","snpp","tcp","Simple Network Paging Protocol"
"444","snpp","udp","Simple Network Paging Protocol"
"445","microsoft-ds","tcp","Microsoft-DS"
"445","microsoft-ds","udp","Microsoft-DS"
"446","ddm-rdb","tcp","DDM-Remote Relational Database Access"
"446","ddm-rdb","udp","DDM-Remote Relational Database Access"
"447","ddm-dfm","tcp","DDM-Distributed File Management"
"447","ddm-dfm","udp","DDM-Distributed File Management"
"448","ddm-ssl","tcp","DDM-Remote DB Access Using Secure Sockets"
"448","ddm-ssl","udp","DDM-Remote DB Access Using Secure Sockets"
"449","as-servermap","tcp","AS Server Mapper"
"449","as-servermap","udp","AS Server Mapper"
"450","tserver","tcp","Computer Supported Telecomunication Applications"
"450","tserver","udp","Computer Supported Telecomunication Applications"
"451","sfs-smp-net","tcp","Cray Network Semaphore server"
"451","sfs-smp-net","udp","Cray Network Semaphore server"
"452","sfs-config","tcp","Cray SFS config server"
"452","sfs-config","udp","Cray SFS config server"
"453","creativeserver","tcp","CreativeServer"
"453","creativeserver","udp","CreativeServer"
"454","contentserver","tcp","ContentServer"
"454","contentserver","udp","ContentServer"
"455","creativepartnr","tcp","CreativePartnr"
"455","creativepartnr","udp","CreativePartnr"
"456","macon-tcp","tcp","macon-tcp"
"456","macon-udp","udp","macon-udp"
"457","scohelp","tcp","scohelp"
"457","scohelp","udp","scohelp"
"458","appleqtc","tcp","apple quick time"
"458","appleqtc","udp","apple quick time"
"459","ampr-rcmd","tcp","ampr-rcmd"
"459","ampr-rcmd","udp","ampr-rcmd"
"460","skronk","tcp","skronk"
"460","skronk","udp","skronk"
"461","datasurfsrv","tcp","DataRampSrv"
"461","datasurfsrv","udp","DataRampSrv"
"462","datasurfsrvsec","tcp","DataRampSrvSec"
"462","datasurfsrvsec","udp","DataRampSrvSec"
"463","alpes","tcp","alpes"
"463","alpes","udp","alpes"
"464","kpasswd","tcp","kpasswd"
"464","kpasswd","udp","kpasswd"
"465","urd","tcp","URL Rendesvous Directory for SSM"
"465","igmpv3lite","udp","IGMP over UDP for SSM"
"466","digital-vrc","tcp","digital-vrc"
"466","digital-vrc","udp","digital-vrc"
"467","mylex-mapd","tcp","mylex-mapd"
"467","mylex-mapd","udp","mylex-mapd"
"468","photuris","tcp","proturis"
"468","photuris","udp","proturis"
"469","rcp","tcp","Radio Control Protocol"
"469","rcp","udp","Radio Control Protocol"
"470","scx-proxy","tcp","scx-proxy"
"470","scx-proxy","udp","scx-proxy"
"471","mondex","tcp","Mondex"
"471","mondex","udp","Mondex"
"472","ljk-login","tcp","ljk-login"
"472","ljk-login","udp","ljk-login"
"473","hybrid-pop","tcp","hybrid-pop"
"473","hybrid-pop","udp","hybrid-pop"
"474","tn-tl-w1","tcp","tn-tl-w1"
"474","tn-tl-w2","udp","tn-tl-w2"
"475","tcpnethaspsrv","tcp","tcpnethaspsrv"
"475","tcpnethaspsrv","udp","tcpnethaspsrv"
"476","tn-tl-fd1","tcp","tn-tl-fd1"
"476","tn-tl-fd1","udp","tn-tl-fd1"
"477","ss7ns","tcp","ss7ns"
"477","ss7ns","udp","ss7ns"
"478","spsc","tcp","spsc"
"478","spsc","udp","spsc"
"479","iafserver","tcp","iafserver"
"479","iafserver","udp","iafserver"
"480","iafdbase","tcp","iafdbase"
"480","iafdbase","udp","iafdbase"
"481","ph","tcp","Ph service"
"481","ph","udp","Ph service"
"482","bgs-nsi","tcp","bgs-nsi"
"482","bgs-nsi","udp","bgs-nsi"
"483","ulpnet","tcp","ulpnet"
"483","ulpnet","udp","ulpnet"
"484","integra-sme","tcp","Integra Software Management Environment"
"484","integra-sme","udp","Integra Software Management Environment"
"485","powerburst","tcp","Air Soft Power Burst"
"485","powerburst","udp","Air Soft Power Burst"
"486","avian","tcp","avian"
"486","avian","udp","avian"
"487","saft","tcp","saft Simple Asynchronous File Transfer"
"487","saft","udp","saft Simple Asynchronous File Transfer"
"488","gss-http","tcp","gss-http"
"488","gss-http","udp","gss-http"
"489","nest-protocol","tcp","nest-protocol"
"489","nest-protocol","udp","nest-protocol"
"490","micom-pfs","tcp","micom-pfs"
"490","micom-pfs","udp","micom-pfs"
"491","go-login","tcp","go-login"
"491","go-login","udp","go-login"
"492","ticf-1","tcp","Transport Independent Convergence for FNA"
"492","ticf-1","udp","Transport Independent Convergence for FNA"
"493","ticf-2","tcp","Transport Independent Convergence for FNA"
"493","ticf-2","udp","Transport Independent Convergence for FNA"
"494","pov-ray","tcp","POV-Ray"
"494","pov-ray","udp","POV-Ray"
"495","intecourier","tcp","intecourier"
"495","intecourier","udp","intecourier"
"496","pim-rp-disc","tcp","PIM-RP-DISC"
"496","pim-rp-disc","udp","PIM-RP-DISC"
"497","retrospect","tcp","Retrospect backup and restore service"
"497","retrospect","udp","Retrospect backup and restore service"
"498","siam","tcp","siam"
"498","siam","udp","siam"
"499","iso-ill","tcp","ISO ILL Protocol"
"499","iso-ill","udp","ISO ILL Protocol"
"500","isakmp","tcp","isakmp"
"500","isakmp","udp","isakmp"
"501","stmf","tcp","STMF"
"501","stmf","udp","STMF"
"502","mbap","tcp","Modbus Application Protocol"
"502","mbap","udp","Modbus Application Protocol"
"503","intrinsa","tcp","Intrinsa"
"503","intrinsa","udp","Intrinsa"
"504","citadel","tcp","citadel"
"504","citadel","udp","citadel"
"505","mailbox-lm","tcp","mailbox-lm"
"505","mailbox-lm","udp","mailbox-lm"
"506","ohimsrv","tcp","ohimsrv"
"506","ohimsrv","udp","ohimsrv"
"507","crs","tcp","crs"
"507","crs","udp","crs"
"508","xvttp","tcp","xvttp"
"508","xvttp","udp","xvttp"
"509","snare","tcp","snare"
"509","snare","udp","snare"
"510","fcp","tcp","FirstClass Protocol"
"510","fcp","udp","FirstClass Protocol"
"511","passgo","tcp","PassGo"
"511","passgo","udp","PassGo"
"512","exec","tcp","remote process execution; authentication performed using passwords and UNIX login names"
"512","comsat","udp",""
"512","biff","udp","used by mail system to notify users of new mail received; currently receives messages only from processes on the same machine"
"513","login","tcp","remote login a la telnet; automatic authentication performed based on priviledged port numbers and distributed data bases which identify ""authentication domains"""
"513","who","udp","maintains data bases showing who's logged in to machines on a local net and the load average of the machine"
"514","shell","tcp","cmd like exec, but automatic authentication is performed as for login server"
"514","syslog","udp",""
"515","printer","tcp","spooler"
"515","printer","udp","spooler"
"516","videotex","tcp","videotex"
"516","videotex","udp","videotex"
"517","talk","tcp","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)"
"517","talk","udp","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","ntalk","tcp",""
"518","ntalk","udp",""
"519","utime","tcp","unixtime"
"519","utime","udp","unixtime"
"520","efs","tcp","extended file name server"
"520","router","udp","local routing process (on site); uses variant of Xerox NS routing information protocol - RIP"
"521","ripng","tcp","ripng"
"521","ripng","udp","ripng"
"522","ulp","tcp","ULP"
"522","ulp","udp","ULP"
"523","ibm-db2","tcp","IBM-DB2"
"523","ibm-db2","udp","IBM-DB2"
"524","ncp","tcp","NCP"
"524","ncp","udp","NCP"
"525","timed","tcp","timeserver"
"525","timed","udp","timeserver"
"526","tempo","tcp","newdate"
"526","tempo","udp","newdate"
"527","stx","tcp","Stock IXChange"
"527","stx","udp","Stock IXChange"
"528","custix","tcp","Customer IXChange"
"528","custix","udp","Customer IXChange"
"529","irc-serv","tcp","IRC-SERV"
"529","irc-serv","udp","IRC-SERV"
"530","courier","tcp","rpc"
"530","courier","udp","rpc"
"531","conference","tcp","chat"
"531","conference","udp","chat"
"532","netnews","tcp","readnews"
"532","netnews","udp","readnews"
"533","netwall","tcp","for emergency broadcasts"
"533","netwall","udp","for emergency broadcasts"
"534","windream","tcp","windream Admin"
"534","windream","udp","windream Admin"
"535","iiop","tcp","iiop"
"535","iiop","udp","iiop"
"536","opalis-rdv","tcp","opalis-rdv"
"536","opalis-rdv","udp","opalis-rdv"
"537","nmsp","tcp","Networked Media Streaming Protocol"
"537","nmsp","udp","Networked Media Streaming Protocol"
"538","gdomap","tcp","gdomap"