generated from dnnrly/goclitem
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
well-known-ports.go
3187 lines (2587 loc) · 86 KB
/
well-known-ports.go
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
package httpref
// WellKnownPorts is the list of all known IANA reserved ports
var WellKnownPorts = References{
{
Name: "Well Known Ports",
IsTitle: true,
Summary: "The port numbers in the range from 0 to 1023 (0 to 2^10 − 1)",
Description: `The port numbers in the range from 0 to 1023 (0 to 210 − 1) are the well-known ports or system ports.[2] They are used by system processes that provide widely used types of network services. On Unix-like operating systems, a process must execute with superuser privileges to be able to bind a network socket to an IP address using one of the well-known ports.
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "0",
Description: `Reserved
IANA Status - Official
TCP - Reserved
UDP - Reserved
SCTP - Unspecified
In programming APIs (not in communication between hosts), requests a system-allocated (dynamic) port
IANA Status - Unofficial
TCP - N/A
UDP - N/A
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "1",
Description: `TCP Port Service Multiplexer ( https://en.wikipedia.org/wiki/TCP_Port_Service_Multiplexer ) (TCPMUX). Historic. Both TCP and UDP have been assigned to TCPMUX by IANA, but by design only TCP is specified.
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "2",
Description: `compressnet (Management Utility)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "3",
Description: `compressnet (Compression Process)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "5",
Description: `Remote Job Entry ( https://en.wikipedia.org/wiki/Remote_Job_Entry ) was historically using socket 5 in its old socket form ( https://en.wikipedia.org/wiki/Network_socket#History ), while MIB PIM has identified it as TCP/5 and IANA has assigned both TCP and UDP 5 to it.
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "7",
Description: `Echo Protocol ( https://en.wikipedia.org/wiki/Echo_Protocol )
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "9",
Description: `Discard Protocol ( https://en.wikipedia.org/wiki/Discard_Protocol )
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Yes
Wake-on-LAN ( https://en.wikipedia.org/wiki/Wake-on-LAN )
IANA Status - Unofficial
TCP - No
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "11",
Description: `Active Users (systat ( https://en.wikipedia.org/wiki/Systat_(protocol) ) service)
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "13",
Description: `Daytime Protocol ( https://en.wikipedia.org/wiki/Daytime_Protocol )
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "15",
Description: `Previously netstat ( https://en.wikipedia.org/wiki/Netstat ) service
IANA Status - Unofficial
TCP - Yes
UDP - No
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "17",
Description: `Quote of the Day ( https://en.wikipedia.org/wiki/QOTD ) (QOTD)
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "18",
Description: `Message Send Protocol ( https://en.wikipedia.org/wiki/Message_Send_Protocol )
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "19",
Description: `Character Generator Protocol ( https://en.wikipedia.org/wiki/Character_Generator_Protocol ) (CHARGEN)
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "20",
Description: `File Transfer Protocol ( https://en.wikipedia.org/wiki/File_Transfer_Protocol ) (FTP) data transfer
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Yes
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "21",
Description: `File Transfer Protocol ( https://en.wikipedia.org/wiki/File_Transfer_Protocol ) (FTP) control (command)
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Yes
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "22",
Description: `Secure Shell ( https://en.wikipedia.org/wiki/Secure_Shell ) (SSH), secure logins, file transfers ( https://en.wikipedia.org/wiki/File_transfer ) (scp ( https://en.wikipedia.org/wiki/Secure_copy ), sftp ( https://en.wikipedia.org/wiki/SSH_file_transfer_protocol )) and port forwarding
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Yes
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "23",
Description: `Telnet ( https://en.wikipedia.org/wiki/Telnet ) protocol—unencrypted text communications
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "25",
Description: `Simple Mail Transfer Protocol ( https://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol ) (SMTP), used for email routing between mail servers
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "27",
Description: `nsw-fe (NSW User System FE)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "28",
Description: `Palo Alto Networks Panorama High Availability (HA) sync encrypted port.
IANA Status - Unofficial
TCP - Unofficial
UDP - N/A
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "29",
Description: `msg-icp (MSG ICP)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "31",
Description: `msg-auth (MSG Authentication)
IANA Status - Official
TCP - Assigned
UDP - N/A
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "33",
Description: `dsp (Display Support Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "37",
Description: `Time Protocol ( https://en.wikipedia.org/wiki/Time_Protocol )
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "38",
Description: `rap (Route Access Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "39",
Description: `rlp (Resource Location Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "41",
Description: `graphics (Graphics)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "42",
Description: `Host Name Server Protocol ( https://en.wikipedia.org/wiki/ARPA_Host_Name_Server_Protocol )
IANA Status - Official
TCP - Assigned
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "43",
Description: `WHOIS ( https://en.wikipedia.org/wiki/WHOIS ) protocol
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "44",
Description: `mpm-flags (MPM FLAGS Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "45",
Description: `mpm (Message Processing Module [recv])
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "46",
Description: `mpm-snd (MPM [default send])
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "47",
Description: `Unspecified
IANA Status - Official
TCP - Reserved
UDP - Reserved
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "48",
Description: `auditd (Digital Audit Daemon)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "49",
Description: `TACACS ( https://en.wikipedia.org/wiki/TACACS ) Login Host protocol. TACACS+ ( https://en.wikipedia.org/wiki/TACACS%2B ), still in draft which is an improved but distinct version of TACACS, only uses TCP 49.
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "50",
Description: `re-mail-ck (Remote Mail Checking Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "51",
Description: `Historically used for Interface Message Processor ( https://en.wikipedia.org/wiki/Interface_Message_Processor ) logical address management, entry has been removed by IANA on 2013-05-25
IANA Status - Official
TCP - Reserved
UDP - Reserved
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "52",
Description: `Xerox Network Systems ( https://en.wikipedia.org/wiki/Xerox_Network_Systems ) (XNS) Time Protocol. Despite this port being assigned by IANA, the service is meant to work on SPP ( https://en.wikipedia.org/wiki/Sequenced_Packet_Protocol ) (ancestor of IPX/SPX ( https://en.wikipedia.org/wiki/IPX/SPX )), instead of TCP/IP.
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "53",
Description: `Domain Name System ( https://en.wikipedia.org/wiki/Domain_Name_System ) (DNS)
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "54",
Description: `Xerox Network Systems (XNS) Clearinghouse (Name Server). Despite this port being assigned by IANA, the service is meant to work on SPP ( https://en.wikipedia.org/wiki/Sequenced_Packet_Protocol ) (ancestor of IPX/SPX ( https://en.wikipedia.org/wiki/IPX/SPX )), instead of TCP/IP.
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "55",
Description: `isi-gl (ISI Graphics Language)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "56",
Description: `Xerox Network Systems (XNS) Authentication Protocol. Despite this port being assigned by IANA, the service is meant to work on SPP ( https://en.wikipedia.org/wiki/Sequenced_Packet_Protocol ) (ancestor of IPX/SPX ( https://en.wikipedia.org/wiki/IPX/SPX )), instead of TCP/IP.
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "58",
Description: `Xerox Network Systems (XNS) Mail. Despite this port being assigned by IANA, the service is meant to work on SPP ( https://en.wikipedia.org/wiki/Sequenced_Packet_Protocol ) (ancestor of IPX/SPX ( https://en.wikipedia.org/wiki/IPX/SPX )), instead of TCP/IP.
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "61",
Description: `Historically assigned to the NIFTP-Based Mail ( https://en.wikipedia.org/w/index.php?title=NIFTP-Based_Mail&action=edit&redlink=1 ) protocol, but was never documented in the related IEN ( https://en.wikipedia.org/wiki/Internet_Experiment_Note ). The port number entry was removed from IANA's registry on 2017-05-18.
IANA Status - Official
TCP - Reserved
UDP - Reserved
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "62",
Description: `acas (ACA Services)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "63",
Description: `whoispp (whois++)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "64",
Description: `covia (Communications Integrator (CI))
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "65",
Description: `tacacs-ds (TACACS-Database Service)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "66",
Description: `sql-net (Oracle SQL*NET)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "67",
Description: `Bootstrap Protocol ( https://en.wikipedia.org/wiki/Bootstrap_Protocol ) (BOOTP) server; also used by Dynamic Host Configuration Protocol ( https://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol ) (DHCP)
IANA Status - Official
TCP - Assigned
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "68",
Description: `Bootstrap Protocol (BOOTP) client; also used by Dynamic Host Configuration Protocol (DHCP)
IANA Status - Official
TCP - Assigned
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "69",
Description: `Trivial File Transfer Protocol ( https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol ) (TFTP)
IANA Status - Official
TCP - Assigned
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "70",
Description: `Gopher ( https://en.wikipedia.org/wiki/Gopher_(protocol) ) protocol
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "71",
Description: `NETRJS ( https://en.wikipedia.org/wiki/NETRJS ) protocol Ranges through 74
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "76",
Description: `deos (Distributed External Object Store)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "78",
Description: `vettcp (vettcp)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "79",
Description: `Finger protocol ( https://en.wikipedia.org/wiki/Finger_protocol )
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "80",
Description: `Hypertext Transfer Protocol ( https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol ) (HTTP)
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Yes
QUIC ( https://en.wikipedia.org/wiki/QUIC ), a transport protocol over UDP (still in draft as of April 2020[update] ( https://en.wikipedia.org/w/index.php?title=List_of_TCP_and_UDP_port_numbers&action=edit )), using stream multiplexing ( https://en.wikipedia.org/wiki/Multiplexing ), encryption by default with TLS ( https://en.wikipedia.org/wiki/Transport_Layer_Security ), and currently supporting HTTP/2 ( https://en.wikipedia.org/wiki/HTTP/2 ). QUIC has been renamed to HTTP/3 ( https://en.wikipedia.org/wiki/HTTP/3 ), which is currently an Internet Draft ( https://en.wikipedia.org/wiki/Internet_Draft ).
IANA Status - Unofficial
TCP - No
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "81",
Description: `TorPark ( https://en.wikipedia.org/wiki/TorPark ) onion routing ( https://en.wikipedia.org/wiki/Onion_routing )
IANA Status - Unofficial
TCP - Yes
UDP - Unspecified
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "82",
Description: `TorPark ( https://en.wikipedia.org/wiki/TorPark ) control
IANA Status - Unofficial
TCP - Unspecified
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "83",
Description: `MIT ML Device, networking file system
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "84",
Description: `ctf (Common Trace Facility)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "85",
Description: `mit-ml-dev (MIT ML Device)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "86",
Description: `mfcobol (Micro Focus Cobol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "88",
Description: `Kerberos ( https://en.wikipedia.org/wiki/Kerberos_(protocol) ) authentication system
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "89",
Description: `su-mit-tg (SU/MIT Telnet Gateway)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "90",
Description: `PointCast (dotcom) ( https://en.wikipedia.org/wiki/PointCast_(dotcom) )
IANA Status - Unofficial
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "91",
Description: `mit-dov (MIT Dover Spooler)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "92",
Description: `npp (Network Printing Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "93",
Description: `dcp (Device Control Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "94",
Description: `objcall (Tivoli Object Dispatcher)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "95",
Description: `SUPDUP, terminal-independent remote login
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "96",
Description: `dixie (DIXIE Protocol Specification)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "97",
Description: `swift-rvf (Swift Remote Virtual File Protocol)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "98",
Description: `tacnews (TAC News)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "99",
Description: `metagram (Metagram Relay)
IANA Status - Official
TCP - Assigned
UDP - Assigned
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "101",
Description: `NIC ( https://en.wikipedia.org/wiki/History_of_the_Internet#NIC,_InterNIC,_IANA_and_ICANN ) host name ( https://en.wikipedia.org/wiki/Hostname )
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "102",
Description: `ISO ( https://en.wikipedia.org/wiki/International_Organization_for_Standardization ) Transport Service Access Point (TSAP ( https://en.wikipedia.org/wiki/TSAP )) Class 0 protocol;
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "104",
Description: `Digital Imaging and Communications in Medicine ( https://en.wikipedia.org/wiki/Digital_Imaging_and_Communications_in_Medicine ) (DICOM; also port 11112)
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "105",
Description: `CCSO Nameserver ( https://en.wikipedia.org/wiki/CCSO_Nameserver )
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "106",
Description: `macOS Server, (macOS) password server (https://en.wikipedia.org/wiki/MacOS_Server)
IANA Status - Official
TCP - Unofficial
UDP - No
SCTP - N/A
DCCP - N/A
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "107",
Description: `Remote User Telnet Service ( https://en.wikipedia.org/wiki/Rtelnet ) (RTelnet)
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "108",
Description: `IBM Systems Network Architecture ( https://en.wikipedia.org/wiki/Systems_Network_Architecture ) (SNA) gateway access server
IANA Status - Official
TCP - Yes
UDP - Yes
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "109",
Description: `Post Office Protocol ( https://en.wikipedia.org/wiki/Post_Office_Protocol ), version 2 (POP2)
IANA Status - Official
TCP - Yes
UDP - Assigned
SCTP - Unspecified
https://en.wikipedia.org/wiki/List_of_TCP_and_UDP_port_numbers#Well-known_ports`,
},
{
Name: "110",
Description: `Post Office Protocol, version 3 (POP3)
IANA Status - Official