-
Notifications
You must be signed in to change notification settings - Fork 41
/
nmap-services
19927 lines (19927 loc) · 608 KB
/
nmap-services
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
tcpmux 1/tcp 0.001995 # TCP Port Service Multiplexer [rfc-1078]
tcpmux 1/udp 0.001236 # TCP Port Service Multiplexer
compressnet 2/tcp 0.000013 # Management Utility
compressnet 2/udp 0.001845 # Management Utility
compressnet 3/tcp 0.001242 # Compression Process
compressnet 3/udp 0.001532 # Compression Process
unknown 4/tcp 0.000477
rje 5/udp 0.000593 # Remote Job Entry
unknown 6/tcp 0.000502
echo 7/sctp 0.000000
echo 7/tcp 0.004855
echo 7/udp 0.024679
unknown 8/tcp 0.000013
discard 9/sctp 0.000000 # sink null
discard 9/tcp 0.003764 # sink null
discard 9/udp 0.015733 # sink null
unknown 10/tcp 0.000063
systat 11/tcp 0.000075 # Active Users
systat 11/udp 0.000577 # Active Users
unknown 12/tcp 0.000063
daytime 13/tcp 0.003927
daytime 13/udp 0.004827
unknown 14/tcp 0.000038
netstat 15/tcp 0.000038
unknown 16/tcp 0.000050
qotd 17/tcp 0.002346 # Quote of the Day
qotd 17/udp 0.009209 # Quote of the Day
msp 18/udp 0.000610 # Message Send Protocol
chargen 19/tcp 0.002559 # ttytst source Character Generator
chargen 19/udp 0.015865 # ttytst source Character Generator
ftp-data 20/sctp 0.000000 # File Transfer [Default Data]
ftp-data 20/tcp 0.001079 # File Transfer [Default Data]
ftp-data 20/udp 0.001878 # File Transfer [Default Data]
ftp 21/sctp 0.000000 # File Transfer [Control]
ftp 21/tcp 0.197667 # File Transfer [Control]
ftp 21/udp 0.004844 # File Transfer [Control]
ssh 22/sctp 0.000000 # Secure Shell Login
ssh 22/tcp 0.182286 # Secure Shell Login
ssh 22/udp 0.003905 # Secure Shell Login
telnet 23/tcp 0.221265
telnet 23/udp 0.006211
priv-mail 24/tcp 0.001154 # any private mail system
priv-mail 24/udp 0.000329 # any private mail system
smtp 25/tcp 0.131314 # Simple Mail Transfer
smtp 25/udp 0.001285 # Simple Mail Transfer
rsftp 26/tcp 0.007991 # RSFTP
nsw-fe 27/tcp 0.000138 # NSW User System FE
nsw-fe 27/udp 0.000395 # NSW User System FE
unknown 28/tcp 0.000050
msg-icp 29/tcp 0.000025 # MSG ICP
msg-icp 29/udp 0.000560 # MSG ICP
unknown 30/tcp 0.000527
msg-auth 31/tcp 0.000025 # MSG Authentication
msg-auth 31/udp 0.000939 # MSG Authentication
unknown 32/tcp 0.000339
dsp 33/tcp 0.001016 # Display Support Protocol
dsp 33/udp 0.000560 # Display Support Protocol
unknown 34/tcp 0.000025
priv-print 35/tcp 0.000038 # any private printer server
priv-print 35/udp 0.000708 # any private printer server
time 37/tcp 0.003161 # timserver
time 37/udp 0.006458 # timserver
rap 38/tcp 0.000025 # Route Access Protocol
rap 38/udp 0.002043 # Route Access Protocol
rlp 39/udp 0.000478 # Resource Location Protocol
unknown 40/tcp 0.000038
graphics 41/udp 0.000445
nameserver 42/tcp 0.000803 # Host Name Server
nameserver 42/udp 0.005288 # Host Name Server
whois 43/tcp 0.000314 # nicname
whois 43/udp 0.000313 # nicname
mpm-flags 44/tcp 0.000025 # MPM FLAGS Protocol
mpm-flags 44/udp 0.000659 # MPM FLAGS Protocol
mpm 45/tcp 0.000050 # Message Processing Module [recv]
mpm 45/udp 0.000741 # Message Processing Module [recv]
mpm-snd 46/udp 0.000494 # MPM [default send]
ni-ftp 47/tcp 0.000075 # NI FTP
ni-ftp 47/udp 0.001071 # NI FTP
auditd 48/tcp 0.000013 # Digital Audit Daemon
auditd 48/udp 0.000708 # Digital Audit Daemon
tacacs 49/tcp 0.000665 # Login Host Protocol (TACACS)
tacacs 49/udp 0.014020 # Login Host Protocol (TACACS)
re-mail-ck 50/tcp 0.000050 # Remote Mail Checking Protocol
re-mail-ck 50/udp 0.000428 # Remote Mail Checking Protocol
la-maint 51/tcp 0.000038 # IMP Logical Address Maintenance
la-maint 51/udp 0.000280 # IMP Logical Address Maintenance
xns-time 52/tcp 0.000063 # XNS Time Protocol
xns-time 52/udp 0.000362 # XNS Time Protocol
domain 53/tcp 0.048463 # Domain Name Server
domain 53/udp 0.213496 # Domain Name Server
xns-ch 54/tcp 0.000013 # XNS Clearinghouse
xns-ch 54/udp 0.000659 # XNS Clearinghouse
isi-gl 55/tcp 0.000125 # ISI Graphics Language
isi-gl 55/udp 0.000478 # ISI Graphics Language
xns-auth 56/tcp 0.000013 # XNS Authentication
xns-auth 56/udp 0.001285 # XNS Authentication
priv-term 57/tcp 0.000125 # any private terminal access
priv-term 57/udp 0.000774 # any private terminal access
xns-mail 58/tcp 0.000025 # XNS Mail
xns-mail 58/udp 0.000428 # XNS Mail
priv-file 59/tcp 0.000088 # any private file service
priv-file 59/udp 0.000478 # any private file service
unknown 60/tcp 0.000038
ni-mail 61/udp 0.000461 # NI MAIL
acas 62/udp 0.000264 # ACA Services
via-ftp 63/udp 0.000445 # VIA Systems - FTP & whois++
covia 64/udp 0.000593 # Communications Integrator (CI)
tacacs-ds 65/tcp 0.000013 # TACACS-Database Service
tacacs-ds 65/udp 0.000741 # TACACS-Database Service
sqlnet 66/tcp 0.000075 # Oracle SQL*NET
sqlnet 66/udp 0.000544 # Oracle SQL*NET
dhcps 67/tcp 0.000013 # DHCP/Bootstrap Protocol Server
dhcps 67/udp 0.228010 # DHCP/Bootstrap Protocol Server
dhcpc 68/tcp 0.000063 # DHCP/Bootstrap Protocol Client
dhcpc 68/udp 0.140118 # DHCP/Bootstrap Protocol Client
tftp 69/tcp 0.000038 # Trivial File Transfer
tftp 69/udp 0.102835 # Trivial File Transfer
gopher 70/tcp 0.000226
gopher 70/udp 0.000544
netrjs-1 71/tcp 0.000025 # Remote Job Service
netrjs-1 71/udp 0.000560 # Remote Job Service
netrjs-2 72/tcp 0.000013 # Remote Job Service
netrjs-2 72/udp 0.000494 # Remote Job Service
netrjs-3 73/tcp 0.000025 # Remote Job Service
netrjs-3 73/udp 0.000428 # Remote Job Service
netrjs-4 74/tcp 0.000025 # Remote Job Service
netrjs-4 74/udp 0.000478 # Remote Job Service
priv-dial 75/tcp 0.000063 # any private dial out service
priv-dial 75/udp 0.000577 # any private dial out service
deos 76/tcp 0.000063 # Distributed External Object Store
deos 76/udp 0.000675 # Distributed External Object Store
priv-rje 77/tcp 0.000113 # any private RJE service, netrjs
priv-rje 77/udp 0.000741 # any private RJE service, netjrs
vettcp 78/udp 0.000626
finger 79/tcp 0.006022
finger 79/udp 0.000956
http 80/sctp 0.000000 # World Wide Web HTTP
http 80/tcp 0.484143 # World Wide Web HTTP
http 80/udp 0.035767 # World Wide Web HTTP
hosts2-ns 81/tcp 0.012056 # HOSTS2 Name Server
hosts2-ns 81/udp 0.001005 # HOSTS2 Name Server
xfer 82/tcp 0.002923 # XFER Utility
xfer 82/udp 0.000659 # XFER Utility
mit-ml-dev 83/tcp 0.000539 # MIT ML Device
mit-ml-dev 83/udp 0.001203 # MIT ML Device
ctf 84/tcp 0.000276 # Common Trace Facility
ctf 84/udp 0.000610 # Common Trace Facility
mit-ml-dev 85/tcp 0.000690 # MIT ML Device
mit-ml-dev 85/udp 0.000610 # MIT ML Device
mfcobol 86/tcp 0.000138 # Micro Focus Cobol
mfcobol 86/udp 0.000824 # Micro Focus Cobol
priv-term-l 87/tcp 0.000125 # any private terminal link, ttylink
kerberos-sec 88/tcp 0.006072 # Kerberos (v5)
kerberos-sec 88/udp 0.013476 # Kerberos (v5)
su-mit-tg 89/tcp 0.000376 # SU/MIT Telnet Gateway
su-mit-tg 89/udp 0.000494 # SU/MIT Telnet Gateway
dnsix 90/tcp 0.000652 # DNSIX Securit Attribute Token Map
dnsix 90/udp 0.000511 # DNSIX Securit Attribute Token Map
mit-dov 91/tcp 0.000063 # MIT Dover Spooler
mit-dov 91/udp 0.000478 # MIT Dover Spooler
npp 92/tcp 0.000050 # Network Printing Protocol
npp 92/udp 0.000478 # Network Printing Protocol
dcp 93/tcp 0.000025 # Device Control Protocol
dcp 93/udp 0.000774 # Device Control Protocol
objcall 94/tcp 0.000025 # Tivoli Object Dispatcher
objcall 94/udp 0.000428 # Tivoli Object Dispatcher
supdup 95/tcp 0.000025 # BSD supdupd(8)
supdup 95/udp 0.000379
dixie 96/tcp 0.000013 # DIXIE Protocol Specification
dixie 96/udp 0.000939 # DIXIE Protocol Specification
swift-rvf 97/tcp 0.000038 # Swift Remote Virtural File Protocol
swift-rvf 97/udp 0.000362 # Swift Remote Virtural File Protocol
linuxconf 98/tcp 0.000088
tacnews 98/udp 0.000560 # TAC News
metagram 99/tcp 0.000326 # Metagram Relay
metagram 99/udp 0.000972 # Metagram Relay
newacct 100/tcp 0.002133 # [unauthorized use]
hostname 101/tcp 0.000063 # hostnames NIC Host Name Server
hostname 101/udp 0.000560 # hostnames NIC Host Name Server
iso-tsap 102/tcp 0.000138 # tsap ISO-TSAP Class 0
iso-tsap 102/udp 0.000544 # tsap ISO-TSAP Class 0
gppitnp 103/tcp 0.000038 # Genesis Point-to-Point Trans Net, or x400 ISO Email
gppitnp 103/udp 0.000527 # Genesis Point-to-Point Trans Net
acr-nema 104/tcp 0.000063 # ACR-NEMA Digital Imag. & Comm. 300
acr-nema 104/udp 0.000643 # ACR-NEMA Digital Imag. & Comm. 300
csnet-ns 105/udp 0.000478 # Mailbox Name Nameserver
pop3pw 106/tcp 0.005934 # Eudora compatible PW changer
3com-tsmux 106/udp 0.000544
rtelnet 107/udp 0.000478 # Remote Telnet Service
snagas 108/tcp 0.000013 # SNA Gateway Access Server
snagas 108/udp 0.000494 # SNA Gateway Access Server
pop2 109/tcp 0.000188 # PostOffice V.2
pop2 109/udp 0.000461 # PostOffice V.2
pop3 110/tcp 0.077142 # PostOffice V.3
pop3 110/udp 0.001104 # PostOffice V.3
rpcbind 111/tcp 0.030034 # portmapper, rpcbind
rpcbind 111/udp 0.093988 # portmapper, rpcbind
mcidas 112/tcp 0.000050 # McIDAS Data Transmission Protocol
mcidas 112/udp 0.002208 # McIDAS Data Transmission Protocol
ident 113/tcp 0.012370 # ident, tap, Authentication Service
auth 113/udp 0.003031 # ident, tap, Authentication Service
audionews 114/tcp 0.000025 # Audio News Multicast
audionews 114/udp 0.000362 # Audio News Multicast
sftp 115/tcp 0.000025 # Simple File Transfer Protocol
sftp 115/udp 0.000346 # Simple File Transfer Protocol
ansanotify 116/tcp 0.000013 # ANSA REX Notify
ansanotify 116/udp 0.000445 # ANSA REX Notify
uucp-path 117/tcp 0.000013 # UUCP Path Service
uucp-path 117/udp 0.000527 # UUCP Path Service
sqlserv 118/tcp 0.000025 # SQL Services
sqlserv 118/udp 0.000791 # SQL Services
nntp 119/tcp 0.003262 # Network News Transfer Protocol
nntp 119/udp 0.000428 # Network News Transfer Protocol
cfdptkt 120/tcp 0.000025
cfdptkt 120/udp 0.010181
erpc 121/udp 0.000675 # Encore Expedited Remote Pro.Call
smakynet 122/tcp 0.000063
smakynet 122/udp 0.000428
ntp 123/tcp 0.000138 # Network Time Protocol
ntp 123/udp 0.330879 # Network Time Protocol
ansatrader 124/tcp 0.000013 # ANSA REX Trader
ansatrader 124/udp 0.000610 # ANSA REX Trader
locus-map 125/tcp 0.000176 # Locus PC-Interface Net Map Ser
locus-map 125/udp 0.000478 # Locus PC-Interface Net Map Ser
unitary 126/udp 0.000610 # Unisys Unitary Login
locus-con 127/tcp 0.000113 # Locus PC-Interface Conn Server
locus-con 127/udp 0.000412 # Locus PC-Interface Conn Server
gss-xlicen 128/tcp 0.000013 # GSS X License Verification
gss-xlicen 128/udp 0.000494 # GSS X License Verification
pwdgen 129/tcp 0.000025 # Password Generator Protocol
pwdgen 129/udp 0.000412 # Password Generator Protocol
cisco-fna 130/tcp 0.000013 # cisco FNATIVE
cisco-fna 130/udp 0.000774 # cisco FNATIVE
cisco-tna 131/udp 0.000560 # cisco TNATIVE
cisco-sys 132/tcp 0.000013 # cisco SYSMAINT
cisco-sys 132/udp 0.000923 # cisco SYSMAINT
statsrv 133/tcp 0.000025 # Statistics Service
statsrv 133/udp 0.000758 # Statistics Service
ingres-net 134/udp 0.001203 # INGRES-NET Service
msrpc 135/tcp 0.047798 # Microsoft RPC services
msrpc 135/udp 0.244452 # Microsoft RPC services
profile 136/tcp 0.000025 # PROFILE Naming System
profile 136/udp 0.051862 # PROFILE Naming System
netbios-ns 137/tcp 0.000038 # NETBIOS Name Service
netbios-ns 137/udp 0.365163 # NETBIOS Name Service
netbios-dgm 138/tcp 0.000025 # NETBIOS Datagram Service
netbios-dgm 138/udp 0.297830 # NETBIOS Datagram Service
netbios-ssn 139/tcp 0.050809 # NETBIOS Session Service
netbios-ssn 139/udp 0.193726 # NETBIOS Session Service
emfis-data 140/udp 0.000692 # EMFIS Data Service
emfis-cntl 141/tcp 0.000013 # EMFIS Control Service
emfis-cntl 141/udp 0.000428 # EMFIS Control Service
bl-idm 142/tcp 0.000013 # Britton-Lee IDM
bl-idm 142/udp 0.000428 # Britton-Lee IDM
imap 143/tcp 0.050420 # Interim Mail Access Protocol v2
imap 143/udp 0.000659 # Interim Mail Access Protocol v2
news 144/tcp 0.004981 # NewS window system
news 144/udp 0.000346 # NewS window system
uaac 145/udp 0.001153 # UAAC Protocol
iso-tp0 146/tcp 0.000577
iso-tp0 146/udp 0.000890
iso-ip 147/udp 0.000511
cronus 148/tcp 0.000013 # CRONUS-SUPPORT
cronus 148/udp 0.000445 # CRONUS-SUPPORT
aed-512 149/tcp 0.000013 # AED 512 Emulation Service
aed-512 149/udp 0.000445 # AED 512 Emulation Service
sql-net 150/tcp 0.000013
sql-net 150/udp 0.000840
hems 151/tcp 0.000013
hems 151/udp 0.000412
bftp 152/udp 0.000988 # Background File Transfer Program
sgmp 153/udp 0.000346
netsc-prod 154/udp 0.000379
netsc-dev 155/udp 0.000659
sqlsrv 156/udp 0.000461 # SQL Service
knet-cmp 157/tcp 0.000113 # KNET/VM Command/Message Protocol
knet-cmp 157/udp 0.000247 # KNET/VM Command/Message Protocol
pcmail-srv 158/tcp 0.000063 # PCMail Server
pcmail-srv 158/udp 0.010148 # PCMail Server
nss-routing 159/udp 0.000329
sgmp-traps 160/udp 0.000824
snmp 161/tcp 0.000790
snmp 161/udp 0.433467 # Simple Net Mgmt Proto
snmptrap 162/tcp 0.000013 # snmp-trap
snmptrap 162/udp 0.103346 # snmp-trap
cmip-man 163/tcp 0.000590 # CMIP/TCP Manager
cmip-man 163/udp 0.000840 # CMIP/TCP Manager
smip-agent 164/udp 0.000626 # CMIP/TCP Agent
xns-courier 165/udp 0.000379 # Xerox
s-net 166/udp 0.000461 # Sirius Systems
namp 167/udp 0.000395
rsvd 168/tcp 0.000013
rsvd 168/udp 0.000412
send 169/udp 0.000494
print-srv 170/udp 0.001071 # Network PostScript
multiplex 171/udp 0.000412 # Network Innovations Multiplex
cl-1 172/udp 0.000494 # Network Innovations CL/1
xyplex-mux 173/tcp 0.000013
xyplex-mux 173/udp 0.000329
mailq 174/tcp 0.000013
mailq 174/udp 0.000379
vmnet 175/udp 0.000379
genrad-mux 176/tcp 0.000025
genrad-mux 176/udp 0.000313
xdmcp 177/tcp 0.000025 # X Display Mgr. Control Proto
xdmcp 177/udp 0.018551 # X Display Manager Control Protocol
nextstep 178/udp 0.000346 # NextStep Window Server
bgp 179/sctp 0.000000 # Border Gateway Protocol
bgp 179/tcp 0.010538 # Border Gateway Protocol
bgp 179/udp 0.000494 # Border Gateway Protocol
ris 180/tcp 0.000038 # Intergraph
ris 180/udp 0.000478 # Intergraph
unify 181/tcp 0.000025
unify 181/udp 0.000181
audit 182/tcp 0.000038 # Unisys Audit SITP
audit 182/udp 0.000297 # Unisys Audit SITP
ocbinder 183/udp 0.000560
ocserver 184/tcp 0.000013
ocserver 184/udp 0.000461
remote-kis 185/tcp 0.000013
remote-kis 185/udp 0.000428
kis 186/udp 0.000280 # KIS Protocol
aci 187/udp 0.000395 # Application Communication Interface
mumps 188/udp 0.000527 # Plus Five's MUMPS
qft 189/tcp 0.000013 # Queued File Transport
qft 189/udp 0.000461 # Queued File Transport
gacp 190/tcp 0.000013 # Gateway Access Control Protocol
cacp 190/udp 0.000428 # Gateway Access Control Protocol
prospero 191/tcp 0.000013 # Prospero Directory Service
prospero 191/udp 0.000857 # Prospero Directory Service
osu-nms 192/tcp 0.000013 # OSU Network Monitoring System
osu-nms 192/udp 0.004168 # OSU Network Monitoring System
srmp 193/tcp 0.000025 # Spider Remote Monitoring Protocol
srmp 193/udp 0.000412 # Spider Remote Monitoring Protocol
irc 194/tcp 0.000038 # Internet Relay Chat
irc 194/udp 0.000643 # Internet Relay Chat Protocol
dn6-nlm-aud 195/udp 0.000395 # DNSIX Network Level Module Audit
dn6-smm-red 196/tcp 0.000025 # DNSIX Session Mgt Module Audit Redir
dn6-smm-red 196/udp 0.000428 # DNSIX Session Mgt Module Audit Redir
dls 197/udp 0.000659 # Directory Location Service
dls-mon 198/udp 0.001252 # Directory Location Service Monitor
smux 199/tcp 0.015945 # SNMP Unix Multiplexer
smux 199/udp 0.004152
src 200/tcp 0.000025 # IBM System Resource Controller
src 200/udp 0.000626 # IBM System Resource Controller
at-rtmp 201/tcp 0.000038 # AppleTalk Routing Maintenance
at-rtmp 201/udp 0.000988 # AppleTalk Routing Maintenance
at-nbp 202/tcp 0.000025 # AppleTalk Name Binding
at-nbp 202/udp 0.000445 # AppleTalk Name Binding
at-3 203/udp 0.000461 # AppleTalk Unused
at-echo 204/tcp 0.000025 # AppleTalk Echo
at-echo 204/udp 0.000412 # AppleTalk Echo
at-5 205/tcp 0.000013 # AppleTalk Unused
at-5 205/udp 0.000890 # AppleTalk Unused
at-zis 206/tcp 0.000025 # AppleTalk Zone Information
at-zis 206/udp 0.000956 # AppleTalk Zone Information
at-7 207/udp 0.001351 # AppleTalk Unused
at-8 208/udp 0.000511 # AppleTalk Unused
tam 209/tcp 0.000013 # Trivial Authenticated Mail Protocol
tam 209/udp 0.000395 # Trivial Authenticated Mail Protocol
z39.50 210/tcp 0.000125 # wais, ANSI Z39.50
z39.50 210/udp 0.000511 # wais, ANSI Z39.50
914c-g 211/tcp 0.000427 # Texas Instruments 914C/G Terminal
914c-g 211/udp 0.000329 # Texas Instruments 914C/G Terminal
anet 212/tcp 0.000364 # ATEXSSTR
anet 212/udp 0.000329 # ATEXSSTR
ipx 213/tcp 0.000038
ipx 213/udp 0.000478
vmpwscs 214/tcp 0.000038
vmpwscs 214/udp 0.000445
softpc 215/udp 0.000412 # Insignia Solutions
atls 216/tcp 0.000013 # Access Technology License Server
atls 216/udp 0.000461 # Access Technology License Server
dbase 217/tcp 0.000013 # dBASE Unix
dbase 217/udp 0.001993 # dBASE Unix
mpp 218/udp 0.000593 # Netix Message Posting Protocol
uarps 219/tcp 0.000063 # Unisys ARPs
uarps 219/udp 0.000395 # Unisys ARPs
imap3 220/tcp 0.000113 # Interactive Mail Access Protocol v3
imap3 220/udp 0.000445 # Interactive Mail Access Protocol v3
fln-spx 221/tcp 0.000050 # Berkeley rlogind with SPX auth
fln-spx 221/udp 0.000577 # Berkeley rlogind with SPX auth
rsh-spx 222/tcp 0.000941 # Berkeley rshd with SPX auth
rsh-spx 222/udp 0.000774 # Berkeley rshd with SPX auth
cdc 223/tcp 0.000125 # Certificate Distribution Center
cdc 223/udp 0.000346 # Certificate Distribution Center
masqdialer 224/tcp 0.000025
unknown 225/tcp 0.000100
unknown 225/udp 0.000330
unknown 226/tcp 0.000013
unknown 228/tcp 0.000013
unknown 229/tcp 0.000013
unknown 230/tcp 0.000050
unknown 231/tcp 0.000038
unknown 233/tcp 0.000025
unknown 234/tcp 0.000013
unknown 235/tcp 0.000025
unknown 236/tcp 0.000025
unknown 236/udp 0.000330
unknown 237/tcp 0.000063
unknown 238/tcp 0.000013
unknown 238/udp 0.000330
unknown 239/udp 0.000330
direct 242/udp 0.000362
sur-meas 243/udp 0.000494 # Survey Measurement
dayna 244/udp 0.000461
link 245/udp 0.000626
dsp3270 246/udp 0.000593 # Display Systems Protocol
subntbcst_tftp 247/udp 0.000412
bhfhs 248/tcp 0.000013
bhfhs 248/udp 0.000511
unknown 249/tcp 0.000050
unknown 250/tcp 0.000138
unknown 251/tcp 0.000125
unknown 252/tcp 0.000088
unknown 253/tcp 0.000038
unknown 254/tcp 0.001832
unknown 255/tcp 0.002409
fw1-secureremote 256/tcp 0.000163 # also "rap"
rap 256/udp 0.000692
fw1-mc-fwmodule 257/tcp 0.000100 # FW1 management console for communication w/modules and also secure electronic transaction (set) port
set 257/udp 0.000511 # secure electronic transaction
fw1-mc-gui 258/tcp 0.000013 # also yak winsock personal chat
yak-chat 258/udp 0.000494 # yak winsock personal chat
esro-gen 259/tcp 0.000201 # efficient short remote operations
firewall1-rdp 259/udp 0.000840 # Firewall 1 proprietary RDP protocol http://www.inside-security.de/fw1_rdp_poc.html
openport 260/tcp 0.000025
openport 260/udp 0.000362
nsiiops 261/tcp 0.000025 # iiop name service over tls/ssl
nsiiops 261/udp 0.000659 # iiop name service over tls/ssl
arcisdms 262/tcp 0.000038
arcisdms 262/udp 0.000577
hdap 263/udp 0.000544
bgmp 264/tcp 0.001029
fw1-or-bgmp 264/udp 0.000461 # FW1 secureremote alternate
maybe-fw1 265/tcp 0.000013
td-service 267/tcp 0.000013 # Tobit David Service Layer
td-replica 268/tcp 0.000050 # Tobit David Replica
unknown 270/tcp 0.000013
unknown 271/tcp 0.000013
unknown 273/tcp 0.000025
unknown 276/tcp 0.000025
unknown 277/tcp 0.000013
http-mgmt 280/tcp 0.001844
http-mgmt 280/udp 0.000379
personal-link 281/udp 0.000544
cableport-ax 282/udp 0.000494 # cable port a/x
corerjd 284/tcp 0.000013
unknown 288/tcp 0.000013
unknown 289/tcp 0.000013
unknown 293/tcp 0.000013
unknown 294/tcp 0.000013
unknown 294/udp 0.000330
unknown 295/tcp 0.000013
unknown 300/tcp 0.000050
unknown 301/tcp 0.000213
unknown 303/tcp 0.000025
unknown 304/udp 0.000991
unknown 305/tcp 0.000013
unknown 306/tcp 0.000464
unknown 307/udp 0.000330
novastorbakcup 308/tcp 0.000025 # novastor backup
novastorbakcup 308/udp 0.000329 # novastor backup
entrusttime 309/udp 0.000527
bhmds 310/udp 0.000445
asip-webadmin 311/tcp 0.001857 # appleshare ip webadmin
asip-webadmin 311/udp 0.000494 # appleshare ip webadmin
vslmp 312/udp 0.000593
magenta-logic 313/udp 0.000297
opalis-robot 314/udp 0.000840
dpsi 315/tcp 0.000025
dpsi 315/udp 0.000379
decauth 316/tcp 0.000013
decauth 316/udp 0.000461
zannet 317/udp 0.000346
pip 321/udp 0.000593
rtsps 322/tcp 0.000013 # RTSPS
unknown 323/udp 0.000330
unknown 325/tcp 0.000025
unknown 326/tcp 0.000013
unknown 326/udp 0.000330
unknown 329/tcp 0.000013
texar 333/tcp 0.000113 # Texar Security Port
texar 333/udp 0.000330 # Texar Security Port
unknown 334/tcp 0.000050
unknown 336/tcp 0.000025
unknown 337/tcp 0.000013
unknown 340/tcp 0.000627
unknown 340/udp 0.000330
unknown 343/tcp 0.000050
pdap 344/udp 0.000445 # Prospero Data Access Protocol
pawserv 345/udp 0.000428 # Perf Analysis Workbench
zserv 346/tcp 0.000013 # Zebra server
zserv 346/udp 0.000428 # Zebra server
fatserv 347/udp 0.000708 # Fatmen Server
csi-sgwp 348/udp 0.000511 # Cabletron Management Protocol
mftp 349/udp 0.000297
matip-type-a 350/tcp 0.000025 # MATIP Type A
matip-type-a 350/udp 0.000379
matip-type-b 351/tcp 0.000013 # MATIP Type B or bhoetty also safetp
matip-type-b 351/udp 0.000313 # MATIP Type B or bhoetty
dtag-ste-sb 352/tcp 0.000013 # DTAG, or bhoedap4
dtag-ste-sb 352/udp 0.000593 # DTAG, or bhoedap4
ndsauth 353/tcp 0.000050
ndsauth 353/udp 0.000264
bh611 354/udp 0.000560
datex-asn 355/tcp 0.000025
datex-asn 355/udp 0.000774
cloanto-net-1 356/udp 0.000610
bhevent 357/udp 0.000478
shrinkwrap 358/tcp 0.000013
shrinkwrap 358/udp 0.000445
tenebris_nts 359/udp 0.000494 # Tenebris Network Trace Service
scoi2odialog 360/tcp 0.000013
scoi2odialog 360/udp 0.000560
semantix 361/tcp 0.000013
semantix 361/udp 0.000346
srssend 362/tcp 0.000025 # SRS Send
srssend 362/udp 0.000445 # SRS Send
rsvp_tunnel 363/udp 0.002125
aurora-cmgr 364/tcp 0.000013
aurora-cmgr 364/udp 0.000395
dtk 365/udp 0.000395 # Deception Tool Kit (www.all.net)
odmr 366/tcp 0.000715
odmr 366/udp 0.000478
mortgageware 367/udp 0.000445
qbikgdp 368/udp 0.000264
rpc2portmap 369/tcp 0.000013
rpc2portmap 369/udp 0.000725
codaauth2 370/tcp 0.000013
codaauth2 370/udp 0.001038
clearcase 371/udp 0.000593
ulistserv 372/udp 0.000593 # Unix Listserv
legent-1 373/tcp 0.000013 # Legent Corporation (now Computer Associates Intl.)
legent-1 373/udp 0.000395 # Legent Corporation (now Computer Associates Intl.)
legent-2 374/udp 0.000610 # Legent Corporation (now Computer Associates Intl.)
hassle 375/udp 0.000544
nip 376/udp 0.001120 # Amiga Envoy Network Inquiry Proto
tnETOS 377/udp 0.000725 # NEC Corporation
dsETOS 378/udp 0.000544 # NEC Corporation
is99c 379/udp 0.000395 # TIA/EIA/IS-99 modem client
is99s 380/tcp 0.000013 # TIA/EIA/IS-99 modem server
is99s 380/udp 0.000494 # TIA/EIA/IS-99 modem server
hp-collector 381/udp 0.000577 # hp performance data collector
hp-managed-node 382/udp 0.000346 # hp performance data managed node
hp-alarm-mgr 383/tcp 0.000013 # hp performance data alarm manager
hp-alarm-mgr 383/udp 0.000362 # hp performance data alarm manager
arns 384/udp 0.000412 # A Remote Network Server System
ibm-app 385/udp 0.000692 # IBM Application
asa 386/udp 0.000741 # ASA Message Router Object Def.
aurp 387/udp 0.001285 # Appletalk Update-Based Routing Pro.
unidata-ldm 388/tcp 0.000088 # Unidata LDM Version 4
unidata-ldm 388/udp 0.000329 # Unidata LDM Version 4
ldap 389/tcp 0.004717 # Lightweight Directory Access Protocol
ldap 389/udp 0.004300 # Lightweight Directory Access Protocol
uis 390/udp 0.000478
synotics-relay 391/tcp 0.000013 # SynOptics SNMP Relay Port
synotics-relay 391/udp 0.000988 # SynOptics SNMP Relay Port
synotics-broker 392/tcp 0.000013 # SynOptics Port Broker Port
synotics-broker 392/udp 0.000280 # SynOptics Port Broker Port
dis 393/udp 0.001302 # Data Interpretation System
embl-ndt 394/udp 0.000461 # EMBL Nucleic Data Transfer
netcp 395/udp 0.000428 # NETscout Control Protocol
netware-ip 396/udp 0.000379 # Novell Netware over IP
mptn 397/tcp 0.000025 # Multi Protocol Trans. Net.
mptn 397/udp 0.000511 # Multi Protocol Trans. Net.
kryptolan 398/udp 0.000659
iso-tsap-c2 399/tcp 0.000025 # ISO-TSAP Class 2
iso-tsap-c2 399/udp 0.000395 # ISO-TSAP Class 2
work-sol 400/tcp 0.000075 # Workstation Solutions
work-sol 400/udp 0.000643 # Workstation Solutions
ups 401/tcp 0.000025 # Uninterruptible Power Supply
ups 401/udp 0.000560 # Uninterruptible Power Supply
genie 402/tcp 0.000038 # Genie Protocol
genie 402/udp 0.001730 # Genie Protocol
decap 403/tcp 0.000025
decap 403/udp 0.001021
nced 404/tcp 0.000025
nced 404/udp 0.000478
ncld 405/udp 0.000379
imsp 406/tcp 0.000163 # Interactive Mail Support Protocol
imsp 406/udp 0.000560 # Interactive Mail Support Protocol
timbuktu 407/tcp 0.001129
timbuktu 407/udp 0.005305
prm-sm 408/tcp 0.000013 # Prospero Resource Manager Sys. Man.
prm-sm 408/udp 0.000445 # Prospero Resource Manager Sys. Man.
prm-nm 409/udp 0.000461 # Prospero Resource Manager Node Man.
decladebug 410/tcp 0.000025 # DECLadebug Remote Debug Protocol
decladebug 410/udp 0.000494 # DECLadebug Remote Debug Protocol
rmt 411/tcp 0.000088 # Remote MT Protocol
rmt 411/udp 0.000560 # Remote MT Protocol
synoptics-trap 412/tcp 0.000025 # Trap Convention Port
synoptics-trap 412/udp 0.000511 # Trap Convention Port
smsp 413/tcp 0.000013
smsp 413/udp 0.000395
infoseek 414/tcp 0.000013
infoseek 414/udp 0.000346
bnet 415/tcp 0.000025
bnet 415/udp 0.000445
silverplatter 416/tcp 0.000201
silverplatter 416/udp 0.000675
onmux 417/tcp 0.000226 # Meeting maker
onmux 417/udp 0.000774 # Meeting maker
hyper-g 418/tcp 0.000025
hyper-g 418/udp 0.000544
ariel1 419/tcp 0.000138
ariel1 419/udp 0.000544
smpte 420/tcp 0.000013
smpte 420/udp 0.000511
ariel2 421/udp 0.000428
ariel3 422/tcp 0.000025
ariel3 422/udp 0.000346
opc-job-start 423/tcp 0.000013 # IBM Operations Planning and Control Start
opc-job-start 423/udp 0.000329 # IBM Operations Planning and Control Start
opc-job-track 424/udp 0.000610 # IBM Operations Planning and Control Track
icad-el 425/tcp 0.000326
icad-el 425/udp 0.000428
smartsdp 426/udp 0.001104
svrloc 427/tcp 0.005382 # Server Location
svrloc 427/udp 0.018270 # Server Location
ocs_cmu 428/tcp 0.000013
ocs_cmu 428/udp 0.000329
ocs_amu 429/udp 0.000428
utmpsd 430/udp 0.000362
utmpcd 431/udp 0.000461
iasd 432/tcp 0.000013
iasd 432/udp 0.000577
nnsp 433/udp 0.000445
mobileip-agent 434/tcp 0.000013
mobileip-agent 434/udp 0.002257
mobilip-mn 435/tcp 0.000013
mobilip-mn 435/udp 0.000511
dna-cml 436/udp 0.000379
comscm 437/tcp 0.000025
comscm 437/udp 0.000741
dsfgw 438/tcp 0.000013
dsfgw 438/udp 0.000725
dasp 439/tcp 0.000013
dasp 439/udp 0.000412
sgcp 440/tcp 0.000063
sgcp 440/udp 0.000807
decvms-sysmgt 441/tcp 0.000138
decvms-sysmgt 441/udp 0.000395
cvc_hostd 442/tcp 0.000138
cvc_hostd 442/udp 0.000774
https 443/sctp 0.000000
https 443/tcp 0.208669 # secure http (SSL)
https 443/udp 0.010840
snpp 444/tcp 0.004466 # Simple Network Paging Protocol
snpp 444/udp 0.000873 # Simple Network Paging Protocol
microsoft-ds 445/tcp 0.056944 # SMB directly over IP
microsoft-ds 445/udp 0.253118
ddm-rdb 446/tcp 0.000075
ddm-rdb 446/udp 0.000461
ddm-dfm 447/tcp 0.000138
ddm-dfm 447/udp 0.000675
ddm-ssl 448/tcp 0.000050 # ddm-byte
ddm-ssl 448/udp 0.000511 # ddm-byte
as-servermap 449/tcp 0.000063 # AS Server Mapper
as-servermap 449/udp 0.000675 # AS Server Mapper
tserver 450/tcp 0.000050
tserver 450/udp 0.000692
sfs-smp-net 451/tcp 0.000013 # Cray Network Semaphore server
sfs-smp-net 451/udp 0.000774 # Cray Network Semaphore server
sfs-config 452/tcp 0.000013 # Cray SFS config server
sfs-config 452/udp 0.000297 # Cray SFS config server
creativeserver 453/tcp 0.000025
creativeserver 453/udp 0.000280
contentserver 454/tcp 0.000038
contentserver 454/udp 0.000329
creativepartnr 455/udp 0.000758
macon 456/tcp 0.000050
macon 456/udp 0.000494
scohelp 457/tcp 0.000013
scohelp 457/udp 0.000610
appleqtc 458/tcp 0.000314 # apple quick time
appleqtc 458/udp 0.000725 # apple quick time
ampr-rcmd 459/udp 0.000362
skronk 460/tcp 0.000013
skronk 460/udp 0.000610
datasurfsrv 461/udp 0.000379
datasurfsrvsec 462/tcp 0.000025
datasurfsrvsec 462/udp 0.000560
alpes 463/udp 0.000494
kpasswd5 464/tcp 0.001192 # Kerberos (v5)
kpasswd5 464/udp 0.004300 # Kerberos (v5)
smtps 465/tcp 0.013888 # smtp protocol over TLS/SSL (was ssmtp)
smtps 465/udp 0.000527 # smtp protocol over TLS/SSL (was ssmtp)
digital-vrc 466/tcp 0.000025
digital-vrc 466/udp 0.000297
mylex-mapd 467/udp 0.000445
photuris 468/udp 0.000560
rcp 469/udp 0.000692 # Radio Control Protocol
scx-proxy 470/tcp 0.000013
scx-proxy 470/udp 0.000395
mondex 471/udp 0.000478
ljk-login 472/tcp 0.000013
ljk-login 472/udp 0.000758
hybrid-pop 473/tcp 0.000013
hybrid-pop 473/udp 0.000445
tn-tl-w2 474/udp 0.000214
tcpnethaspsrv 475/tcp 0.000138
tcpnethaspsrv 475/udp 0.000643
tn-tl-fd1 476/udp 0.000346
ss7ns 477/udp 0.000626
spsc 478/udp 0.000610
iafserver 479/tcp 0.000013
iafserver 479/udp 0.000675
loadsrv 480/tcp 0.000013
iafdbase 480/udp 0.000461
dvs 481/tcp 0.000176
ph 481/udp 0.000445
xlog 482/udp 0.000577
ulpnet 483/udp 0.000461
integra-sme 484/udp 0.001186 # Integra Software Management Environment
powerburst 485/tcp 0.000013 # Air Soft Power Burst
powerburst 485/udp 0.000725 # Air Soft Power Burst
sstats 486/tcp 0.000025
avian 486/udp 0.000379
saft 487/tcp 0.000013 # saft Simple Asynchronous File Transfer
saft 487/udp 0.000428 # saft Simple Asynchronous File Transfer
gss-http 488/udp 0.000643
nest-protocol 489/udp 0.000544
micom-pfs 490/udp 0.000577
go-login 491/tcp 0.000050
go-login 491/udp 0.000297
ticf-1 492/tcp 0.000050 # Transport Independent Convergence for FNA
ticf-1 492/udp 0.000610 # Transport Independent Convergence for FNA
ticf-2 493/tcp 0.000025 # Transport Independent Convergence for FNA
ticf-2 493/udp 0.000560 # Transport Independent Convergence for FNA
pov-ray 494/udp 0.000478
intecourier 495/udp 0.000362
pim-rp-disc 496/tcp 0.000013
pim-rp-disc 496/udp 0.001153
retrospect 497/tcp 0.001179
retrospect 497/udp 0.017348
siam 498/udp 0.000461
iso-ill 499/udp 0.000511 # ISO ILL Protocol
isakmp 500/tcp 0.001129
isakmp 500/udp 0.163742
stmf 501/tcp 0.000063
stmf 501/udp 0.001186
mbap 502/tcp 0.000151 # Modbus Application Protocol
mbap 502/udp 0.001318 # Modbus Application Protocol
intrinsa 503/udp 0.000708
citadel 504/udp 0.000758
mailbox-lm 505/tcp 0.000038
mailbox-lm 505/udp 0.000807
ohimsrv 506/udp 0.000577
crs 507/tcp 0.000050
crs 507/udp 0.000593
xvttp 508/udp 0.000461
snare 509/tcp 0.000075
snare 509/udp 0.000643
fcp 510/tcp 0.000063 # FirstClass Protocol
fcp 510/udp 0.000923 # FirstClass Protocol
passgo 511/tcp 0.000038
passgo 511/udp 0.000610
exec 512/tcp 0.000841 # BSD rexecd(8)
biff 512/udp 0.002142 # comsat
login 513/tcp 0.005595 # BSD rlogind(8)
who 513/udp 0.002323 # BSD rwhod(8)
shell 514/tcp 0.011078 # BSD rshd(8)
syslog 514/udp 0.119804 # BSD syslogd(8)
printer 515/tcp 0.007214 # spooler (lpd)
printer 515/udp 0.011022 # spooler (lpd)
videotex 516/tcp 0.000013
videotex 516/udp 0.000807
talk 517/udp 0.004794 # BSD talkd(8)
ntalk 518/tcp 0.000013 # (talkd)
ntalk 518/udp 0.022208 # (talkd)
utime 519/udp 0.000560 # unixtime
route 520/udp 0.139376 # router routed -- RIP
ripng 521/udp 0.000708
ulp 522/tcp 0.000013
ulp 522/udp 0.000511
ibm-db2 523/tcp 0.000113
ibm-db2 523/udp 0.000461
ncp 524/tcp 0.000213
ncp 524/udp 0.000873
timed 525/tcp 0.000063 # timeserver
timed 525/udp 0.000890 # timeserver
tempo 526/tcp 0.000013 # newdate
tempo 526/udp 0.000346 # newdate
stx 527/udp 0.000362 # Stock IXChange
custix 528/tcp 0.000013 # Customer IXChange
custix 528/udp 0.000329 # Customer IXChange
irc 529/udp 0.000544
courier 530/tcp 0.000013 # rpc
courier 530/udp 0.000873 # rpc
conference 531/udp 0.000824 # chat
netnews 532/udp 0.000758 # readnews
netwall 533/tcp 0.000013 # for emergency broadcasts
netwall 533/udp 0.000461 # for emergency broadcasts
mm-admin 534/udp 0.000379 # MegaMedia Admin
iiop 535/tcp 0.000013
iiop 535/udp 0.000329
opalis-rdv 536/tcp 0.000025
opalis-rdv 536/udp 0.000428
nmsp 537/udp 0.000774 # Networked Media Streaming Protocol
gdomap 538/tcp 0.000063
gdomap 538/udp 0.000461
apertus-ldp 539/udp 0.002274 # Apertus Technologies Load Determination
uucp 540/tcp 0.000138 # uucpd
uucp 540/udp 0.000791 # uucpd
uucp-rlogin 541/tcp 0.000489
uucp-rlogin 541/udp 0.000807
commerce 542/tcp 0.000013
commerce 542/udp 0.000675
klogin 543/tcp 0.005282 # Kerberos (v4/v5)
klogin 543/udp 0.000610 # Kerberos (v4/v5)
kshell 544/tcp 0.005269 # krcmd Kerberos (v4/v5)
kshell 544/udp 0.000527 # krcmd Kerberos (v4/v5)
ekshell 545/tcp 0.000276 # Kerberos encrypted remote shell -kfall
appleqtcsrvr 545/udp 0.000478
dhcpv6-client 546/udp 0.000840 # DHCPv6 Client
dhcpv6-server 547/udp 0.000807 # DHCPv6 Server
afp 548/tcp 0.012395 # AFP over TCP
afp 548/udp 0.000774 # AFP over UDP
idfp 549/udp 0.000461
new-rwho 550/udp 0.001170 # new-who
cybercash 551/udp 0.000774
deviceshare 552/tcp 0.000013
deviceshare 552/udp 0.000840
pirp 553/tcp 0.000038
pirp 553/udp 0.000593
rtsp 554/tcp 0.008104 # Real Time Stream Control Protocol
rtsp 554/udp 0.000593 # Real Time Stream Control Protocol
dsf 555/tcp 0.000238
dsf 555/udp 0.000329
remotefs 556/tcp 0.000125 # rfs, rfs_server, Brunhoff remote filesystem
remotefs 556/udp 0.000428 # rfs, rfs_server, Brunhoff remote filesystem
openvms-sysipc 557/tcp 0.000113
openvms-sysipc 557/udp 0.000461
sdnskmp 558/udp 0.000461
teedtap 559/udp 0.001433
rmonitor 560/tcp 0.000038 # rmonitord
rmonitor 560/udp 0.000626 # rmonitord
monitor 561/tcp 0.000038
monitor 561/udp 0.000544
chshell 562/udp 0.000346 # chcmd
snews 563/tcp 0.000916
snews 563/udp 0.000675
9pfs 564/tcp 0.000013 # plan 9 file service
9pfs 564/udp 0.000527 # plan 9 file service
whoami 565/udp 0.000445
banyan-rpc 567/udp 0.000544
ms-shuttle 568/tcp 0.000025 # Microsoft shuttle
ms-shuttle 568/udp 0.000824 # Microsoft shuttle
ms-rome 569/tcp 0.000013 # Microsoft rome
ms-rome 569/udp 0.000758 # Microsoft rome
meter 570/tcp 0.000013 # demon
meter 570/udp 0.000461 # demon
umeter 571/tcp 0.000013 # udemon
umeter 571/udp 0.000692 # udemon
sonar 572/tcp 0.000013
sonar 572/udp 0.000297
banyan-vip 573/udp 0.000939
ftp-agent 574/udp 0.000428 # FTP Software Agent System
vemmi 575/udp 0.000379
ipcd 576/udp 0.000346
vnas 577/tcp 0.000063
vnas 577/udp 0.000972
ipdd 578/tcp 0.000075
ipdd 578/udp 0.000527
decbsrv 579/udp 0.000544
sntp-heartbeat 580/udp 0.000428
bdp 581/udp 0.000395 # Bundle Discovery Protocol
scc-security 582/tcp 0.000013
scc-security 582/udp 0.000280
philips-vc 583/tcp 0.000013 # Philips Video-Conferencing
philips-vc 583/udp 0.000544 # Philips Video-Conferencing
keyserver 584/udp 0.001005
imap4-ssl 585/udp 0.000412 # use 993 instead)
password-chg 586/udp 0.000758
submission 587/tcp 0.019721
submission 587/udp 0.000692
cal 588/udp 0.000544
eyelink 589/udp 0.000461
tns-cml 590/udp 0.000577
http-alt 591/tcp 0.000075 # FileMaker, Inc. - HTTP Alternate
http-alt 591/udp 0.000527 # FileMaker, Inc. - HTTP Alternate
eudora-set 592/udp 0.000626
http-rpc-epmap 593/tcp 0.001242 # HTTP RPC Ep Map
http-rpc-epmap 593/udp 0.022933 # HTTP RPC Ep Map
tpip 594/udp 0.000873
cab-protocol 595/udp 0.000445
smsd 596/tcp 0.000013
smsd 596/udp 0.000544
ptcnameservice 597/udp 0.000214 # PTC Name Service
sco-websrvrmg3 598/tcp 0.000013 # SCO Web Server Manager 3
sco-websrvrmg3 598/udp 0.000626 # SCO Web Server Manager 3
acp 599/tcp 0.000013 # Aeolon Core Protocol
acp 599/udp 0.000412 # Aeolon Core Protocol
ipcserver 600/tcp 0.000100 # Sun IPC server
ipcserver 600/udp 0.000741 # Sun IPC server
syslog-conn 601/tcp 0.000025 # Reliable Syslog Service
syslog-conn 601/udp 0.000330 # Reliable Syslog Service
xmlrpc-beep 602/tcp 0.000100 # XML-RPC over BEEP
mnotes 603/tcp 0.000063 # CommonTime Mnotes PDA Synchronization
idxp 603/udp 0.000991 # IDXP
tunnel 604/tcp 0.000025 # TUNNEL
soap-beep 605/tcp 0.000050 # SOAP over BEEP
soap-beep 605/udp 0.000661 # SOAP over BEEP
urm 606/tcp 0.000088 # Cray Unified Resource Manager
urm 606/udp 0.000494 # Cray Unified Resource Manager
nqs 607/tcp 0.000025
nqs 607/udp 0.000758
sift-uft 608/tcp 0.000025 # Sender-Initiated/Unsolicited File Transfer
sift-uft 608/udp 0.000544 # Sender-Initiated/Unsolicited File Transfer
npmp-trap 609/tcp 0.000050
npmp-trap 609/udp 0.000379
npmp-local 610/tcp 0.000113
npmp-local 610/udp 0.000741
npmp-gui 611/tcp 0.000038
npmp-gui 611/udp 0.000577
hmmp-ind 612/tcp 0.000013 # HMMP Indication
hmmp-op 613/tcp 0.000013 # HMMP Operation
hmmp-op 613/udp 0.000330 # HMMP Operation
sshell 614/tcp 0.000013 # SSLshell
sshell 614/udp 0.000330 # SSLshell
sco-inetmgr 615/tcp 0.000063 # Internet Configuration Manager
sco-inetmgr 615/udp 0.000330 # Internet Configuration Manager
sco-sysmgr 616/tcp 0.000289 # SCO System Administration Server
sco-sysmgr 616/udp 0.000330 # SCO System Administration Server
sco-dtmgr 617/tcp 0.000226 # SCO Desktop Administration Server or Arkeia (www.arkeia.com) backup software
sco-dtmgr 617/udp 0.001302 # SCO Desktop Administration Server
dei-icda 618/tcp 0.000013 # DEI-ICDA
compaq-evm 619/tcp 0.000025 # Compaq EVM
compaq-evm 619/udp 0.000991 # Compaq EVM
sco-websrvrmgr 620/tcp 0.000063 # SCO WebServer Manager
sco-websrvrmgr 620/udp 0.000991 # SCO WebServer Manager
escp-ip 621/tcp 0.000088 # ESCP
escp-ip 621/udp 0.000661 # ESCP
collaborator 622/tcp 0.000038 # Collaborator
oob-ws-http 623/tcp 0.000151 # DMTF out-of-band web services management protocol
asf-rmcp 623/udp 0.007929 # ASF Remote Management and Control
cryptoadmin 624/tcp 0.000038 # Crypto Admin
apple-xsrvr-admin 625/tcp 0.001869 # Apple Mac Xserver admin
apple-imap-admin 626/tcp 0.000025 # Apple IMAP mail admin
serialnumberd 626/udp 0.021473 # Mac OS X Server serial number (licensing) daemon
passgo-tivoli 627/tcp 0.000050 # PassGo Tivoli
qmqp 628/tcp 0.000038 # Qmail Quick Mail Queueing
qmqp 628/udp 0.000661 # QMQP
3com-amp3 629/tcp 0.000063 # 3Com AMP3
rda 630/tcp 0.000050 # RDA
rda 630/udp 0.000330 # RDA
ipp 631/tcp 0.006160 # Internet Printing Protocol -- for one implementation see http://www.cups.org (Common UNIX Printing System)
ipp 631/udp 0.450281 # Internet Printing Protocol
bmpp 632/tcp 0.000050
bmpp 632/udp 0.000661
servstat 633/tcp 0.000038 # Service Status update (Sterling Software)
ginad 634/tcp 0.000063
ginad 634/udp 0.000692
rlzdbase 635/tcp 0.000075 # RLZ DBase
mount 635/udp 0.000511 # NFS Mount Service
ldapssl 636/tcp 0.002083 # LDAP over SSL
ldaps 636/udp 0.000661 # ldap protocol over TLS/SSL (was sldap)
lanserver 637/tcp 0.000038
lanserver 637/udp 0.000428
mcns-sec 638/tcp 0.000050
msdp 639/tcp 0.000151 # MSDP
msdp 639/udp 0.001321 # MSDP
entrust-sps 640/tcp 0.000050
pcnfs 640/udp 0.000890 # PC-NFS DOS Authentication
repcmd 641/tcp 0.000088
repcmd 641/udp 0.000661
esro-emsdp 642/tcp 0.000075 # ESRO-EMSDP V1.3
sanity 643/tcp 0.000013 # SANity
sanity 643/udp 0.001982 # SANity
dwr 644/tcp 0.000038
dwr 644/udp 0.000991
pssc 645/tcp 0.000025 # PSSC
ldp 646/tcp 0.006549 # Label Distribution
dhcp-failover 647/tcp 0.000050 # DHCP Failover
rrp 648/tcp 0.000577 # Registry Registrar Protocol (RRP)
rrp 648/udp 0.000330 # Registry Registrar Protocol (RRP)
cadview-3d 649/tcp 0.000063 # Cadview-3d - streaming 3d models over the internet
cadview-3d 649/udp 0.000330 # Cadview-3d - streaming 3d models over the internet
bwnfs 650/udp 0.000544 # BW-NFS DOS Authentication
ieee-mms 651/tcp 0.000050 # IEEE MMS
hello-port 652/tcp 0.000013 # HELLO_PORT
hello-port 652/udp 0.000330 # HELLO_PORT
repscmd 653/tcp 0.000063 # RepCmd
repscmd 653/udp 0.000661 # RepCmd
aodv 654/tcp 0.000038 # AODV
tinc 655/tcp 0.000100 # TINC
tinc 655/udp 0.000330 # TINC
spmp 656/tcp 0.000038 # SPMP
rmc 657/tcp 0.000113 # RMC
rmc 657/udp 0.001321 # RMC
tenfold 658/tcp 0.000050 # TenFold
unknown 659/tcp 0.000100
unknown 659/udp 0.000661
mac-srvr-admin 660/tcp 0.000100 # MacOS Server Admin
mac-srvr-admin 660/udp 0.000577 # MacOS Server Admin
hap 661/tcp 0.000050 # HAP
pftp 662/tcp 0.000013 # PFTP
pftp 662/udp 0.000330 # PFTP
purenoise 663/tcp 0.000050 # PureNoise