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