summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/etc/services
blob: d8aa0d5ae2230ac546d58278c1c502bc1d281590 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
tcpmux            1/tcp	# TCP Port Service Multiplexer
tcpmux            1/udp	# TCP Port Service Multiplexer
compressnet       2/tcp	# Management Utility
compressnet       2/udp	# Management Utility
compressnet       3/tcp	# Compression Process
compressnet       3/udp	# Compression Process
rje               5/tcp	# Remote Job Entry
rje               5/udp	# Remote Job Entry
echo              7/tcp	# Echo
echo              7/udp	# Echo
discard           9/tcp	# Discard
discard           9/udp	# Discard
systat           11/tcp	# Active Users
systat           11/udp	# Active Users
daytime          13/tcp	# Daytime (RFC 867)
daytime          13/udp	# Daytime (RFC 867)
qotd             17/tcp	# Quote of the Day
qotd             17/udp	# Quote of the Day
msp              18/tcp	# Message Send Protocol
msp              18/udp	# Message Send Protocol
chargen          19/tcp	# Character Generator
chargen          19/udp	# Character Generator
ftp              21/tcp	# File Transfer [Control]
ftp              21/udp	# File Transfer [Control]
ssh              22/tcp	# SSH Remote Login Protocol
ssh              22/udp	# SSH Remote Login Protocol
telnet           23/tcp	# Telnet
telnet           23/udp	# Telnet
smtp             25/tcp	# Simple Mail Transfer
smtp             25/udp	# Simple Mail Transfer
dsp              33/tcp	# Display Support Protocol
dsp              33/udp	# Display Support Protocol
time             37/tcp	# Time
time             37/udp	# Time
rap              38/tcp	# Route Access Protocol
rap              38/udp	# Route Access Protocol
rlp              39/tcp	# Resource Location Protocol
rlp              39/udp	# Resource Location Protocol
graphics         41/tcp	# Graphics
graphics         41/udp	# Graphics
name             42/tcp	# Host Name Server
name             42/udp	# Host Name Server
nameserver       42/tcp	# Host Name Server
nameserver       42/udp	# Host Name Server
nicname          43/tcp	# Who Is
nicname          43/udp	# Who Is
mpm              45/tcp	# Message Processing Module [recv]
mpm              45/udp	# Message Processing Module [recv]
auditd           48/tcp	# Digital Audit Daemon
auditd           48/udp	# Digital Audit Daemon
tacacs           49/tcp	# Login Host Protocol (TACACS)
tacacs           49/udp	# Login Host Protocol (TACACS)
domain           53/tcp	# Domain Name Server
domain           53/udp	# Domain Name Server
acas             62/tcp	# ACA Services
acas             62/udp	# ACA Services
covia            64/tcp	# Communications Integrator (CI)
covia            64/udp	# Communications Integrator (CI)
sql*net          66/tcp	# Oracle SQL*NET
sql*net          66/udp	# Oracle SQL*NET
bootps           67/tcp	# Bootstrap Protocol Server
bootps           67/udp	# Bootstrap Protocol Server
bootpc           68/tcp	# Bootstrap Protocol Client
bootpc           68/udp	# Bootstrap Protocol Client
tftp             69/tcp	# Trivial File Transfer
tftp             69/udp	# Trivial File Transfer
gopher           70/tcp	# Gopher
gopher           70/udp	# Gopher
deos             76/tcp	# Distributed External Object Store
deos             76/udp	# Distributed External Object Store
vettcp           78/tcp	# vettcp
vettcp           78/udp	# vettcp
finger           79/tcp	# Finger
finger           79/udp	# Finger
http             80/tcp	# World Wide Web HTTP
http             80/udp	# World Wide Web HTTP
www              80/tcp	# World Wide Web HTTP
www              80/udp	# World Wide Web HTTP
xfer             82/tcp	# XFER Utility
xfer             82/udp	# XFER Utility
ctf              84/tcp	# Common Trace Facility
ctf              84/udp	# Common Trace Facility
mfcobol          86/tcp	# Micro Focus Cobol
mfcobol          86/udp	# Micro Focus Cobol
kerberos         88/tcp	# Kerberos
kerberos         88/udp	# Kerberos
dnsix            90/tcp	# DNSIX Securit Attribute Token Map
dnsix            90/udp	# DNSIX Securit Attribute Token Map
npp              92/tcp	# Network Printing Protocol
npp              92/udp	# Network Printing Protocol
dcp              93/tcp	# Device Control Protocol
dcp              93/udp	# Device Control Protocol
objcall          94/tcp	# Tivoli Object Dispatcher
objcall          94/udp	# Tivoli Object Dispatcher
supdup           95/tcp	# SUPDUP
supdup           95/udp	# SUPDUP
dixie            96/tcp	# DIXIE Protocol Specification
dixie            96/udp	# DIXIE Protocol Specification
tacnews          98/tcp	# TAC News
tacnews          98/udp	# TAC News
metagram         99/tcp	# Metagram Relay
metagram         99/udp	# Metagram Relay
newacct         100/tcp    [unauthorized use]
hostname        101/tcp	# NIC Host Name Server
hostname        101/udp	# NIC Host Name Server
gppitnp         103/tcp	# Genesis Point-to-Point Trans Net
gppitnp         103/udp	# Genesis Point-to-Point Trans Net
cso             105/tcp	# CCSO name server protocol
cso             105/udp	# CCSO name server protocol
rtelnet         107/tcp	# Remote Telnet Service
rtelnet         107/udp	# Remote Telnet Service
snagas          108/tcp	# SNA Gateway Access Server
snagas          108/udp	# SNA Gateway Access Server
pop2            109/tcp	# Post Office Protocol - Version 2
pop2            109/udp	# Post Office Protocol - Version 2
pop3            110/tcp	# Post Office Protocol - Version 3
pop3            110/udp	# Post Office Protocol - Version 3
sunrpc          111/tcp	# SUN Remote Procedure Call
sunrpc          111/udp	# SUN Remote Procedure Call
mcidas          112/tcp	# McIDAS Data Transmission Protocol
mcidas          112/udp	# McIDAS Data Transmission Protocol
ident           113/tcp
auth            113/tcp	# Authentication Service
auth            113/udp	# Authentication Service
audionews       114/tcp	# Audio News Multicast
audionews       114/udp	# Audio News Multicast
sftp            115/tcp	# Simple File Transfer Protocol
sftp            115/udp	# Simple File Transfer Protocol
ansanotify      116/tcp	# ANSA REX Notify
ansanotify      116/udp	# ANSA REX Notify
sqlserv         118/tcp	# SQL Services
sqlserv         118/udp	# SQL Services
nntp            119/tcp	# Network News Transfer Protocol
nntp            119/udp	# Network News Transfer Protocol
cfdptkt         120/tcp	# CFDPTKT
cfdptkt         120/udp	# CFDPTKT
erpc            121/tcp	# Encore Expedited Remote Pro.Call
erpc            121/udp	# Encore Expedited Remote Pro.Call
smakynet        122/tcp	# SMAKYNET
smakynet        122/udp	# SMAKYNET
ntp             123/tcp	# Network Time Protocol
ntp             123/udp	# Network Time Protocol
ansatrader      124/tcp	# ANSA REX Trader
ansatrader      124/udp	# ANSA REX Trader
nxedit		126/tcp	# NXEdit
nxedit		126/udp	# NXEdit
pwdgen          129/tcp	# Password Generator Protocol
pwdgen          129/udp	# Password Generator Protocol
statsrv         133/tcp	# Statistics Service
statsrv         133/udp	# Statistics Service
epmap           135/tcp	# DCE endpoint resolution
epmap           135/udp	# DCE endpoint resolution
profile         136/tcp	# PROFILE Naming System
profile         136/udp	# PROFILE Naming System
imap            143/tcp	# Internet Message Access Protocol
imap            143/udp	# Internet Message Access Protocol
uma 		144/tcp	# Universal Management Architecture
uma		144/udp	# Universal Management Architecture
uaac            145/tcp	# UAAC Protocol
uaac            145/udp	# UAAC Protocol
jargon          148/tcp	# Jargon
jargon          148/udp	# Jargon
hems            151/tcp	# HEMS
hems            151/udp	# HEMS
bftp            152/tcp	# Background File Transfer Program
bftp            152/udp	# Background File Transfer Program
sgmp            153/tcp	# SGMP
sgmp            153/udp	# SGMP
sqlsrv          156/tcp	# SQL Service
sqlsrv          156/udp	# SQL Service
snmp            161/tcp	# SNMP
snmp            161/udp	# SNMP
snmptrap        162/tcp	# SNMPTRAP
snmptrap        162/udp	# SNMPTRAP
namp            167/tcp	# NAMP
namp            167/udp	# NAMP
rsvd            168/tcp	# RSVD
rsvd            168/udp	# RSVD
send            169/tcp	# SEND
send            169/udp	# SEND
multiplex       171/tcp	# Network Innovations Multiplex
multiplex       171/udp	# Network Innovations Multiplex
cl/1            172/tcp	# Network Innovations CL/1
cl/1            172/udp	# Network Innovations CL/1
mailq           174/tcp	# MAILQ
mailq           174/udp	# MAILQ
vmnet           175/tcp	# VMNET
vmnet           175/udp	# VMNET
xdmcp           177/tcp	# X Display Manager Control Protocol
xdmcp           177/udp	# X Display Manager Control Protocol
nextstep        178/tcp	# NextStep Window Server
nextstep        178/udp	# NextStep Window Server
bgp             179/tcp	# Border Gateway Protocol
bgp             179/udp	# Border Gateway Protocol
ris             180/tcp	# Intergraph
ris             180/udp	# Intergraph
unify           181/tcp	# Unify
unify           181/udp	# Unify
audit           182/tcp	# Unisys Audit SITP
audit           182/udp	# Unisys Audit SITP
ocbinder        183/tcp	# OCBinder
ocbinder        183/udp	# OCBinder
ocserver        184/tcp	# OCServer
ocserver        184/udp	# OCServer
kis             186/tcp	# KIS Protocol
kis             186/udp	# KIS Protocol
aci             187/tcp	# Application Communication Interface
aci             187/udp	# Application Communication Interface
mumps           188/tcp	# Plus Five's MUMPS
mumps           188/udp	# Plus Five's MUMPS
qft             189/tcp	# Queued File Transport
qft             189/udp	# Queued File Transport
gacp            190/tcp	# Gateway Access Control Protocol
gacp            190/udp	# Gateway Access Control Protocol
prospero        191/tcp	# Prospero Directory Service
prospero        191/udp	# Prospero Directory Service
srmp            193/tcp	# Spider Remote Monitoring Protocol
srmp            193/udp	# Spider Remote Monitoring Protocol
irc             194/tcp	# Internet Relay Chat Protocol
irc             194/udp	# Internet Relay Chat Protocol
dls             197/tcp	# Directory Location Service
dls             197/udp	# Directory Location Service
smux            199/tcp	# SMUX
smux            199/udp	# SMUX
src             200/tcp	# IBM System Resource Controller
src             200/udp	# IBM System Resource Controller
qmtp            209/tcp	# The Quick Mail Transfer Protocol
qmtp            209/udp	# The Quick Mail Transfer Protocol
anet            212/tcp	# ATEXSSTR
anet            212/udp	# ATEXSSTR
ipx             213/tcp	# IPX         
ipx             213/udp	# IPX
vmpwscs         214/tcp	# VM PWSCS
vmpwscs         214/udp	# VM PWSCS
softpc          215/tcp	# Insignia Solutions
softpc          215/udp	# Insignia Solutions
dbase           217/tcp	# dBASE Unix
dbase           217/udp	# dBASE Unix
mpp             218/tcp	# Netix Message Posting Protocol
mpp             218/udp	# Netix Message Posting Protocol
uarps           219/tcp	# Unisys ARPs
uarps           219/udp	# Unisys ARPs
imap3           220/tcp	# Interactive Mail Access Protocol v3
imap3           220/udp	# Interactive Mail Access Protocol v3
cdc             223/tcp	# Certificate Distribution Center
cdc             223/udp	# Certificate Distribution Center
masqdialer	224/tcp	# masqdialer
masqdialer	224/udp	# masqdialer
direct          242/tcp	# Direct
direct          242/udp	# Direct
dayna           244/tcp	# Dayna
dayna           244/udp	# Dayna
link            245/tcp	# LINK
link            245/udp	# LINK
dsp3270         246/tcp	# Display Systems Protocol
dsp3270         246/udp	# Display Systems Protocol
bhfhs		248/tcp	# bhfhs
bhfhs		248/udp	# bhfhs
rap             256/tcp	# RAP
rap             256/udp	# RAP
set             257/tcp	# Secure Electronic Transaction
set             257/udp	# Secure Electronic Transaction
openport        260/tcp	# Openport
openport        260/udp	# Openport
nsiiops 	261/tcp	# IIOP Name Service over TLS/SSL
nsiiops		261/udp	# IIOP Name Service over TLS/SSL
arcisdms	262/tcp	# Arcisdms
arcisdms	262/udp	   Arcisdms
hdap		263/tcp	# HDAP
hdap		263/udp	# HDAP
bgmp		264/tcp	# BGMP
bgmp		264/udp	# BGMP
rescap		283/tcp	# rescap
rescap		283/udp	# rescap
novastorbakcup	308/tcp	# Novastor Backup
novastorbakcup	308/udp	# Novastor Backup
entrusttime     309/tcp	# EntrustTime
entrusttime     309/udp	# EntrustTime
bhmds		310/tcp	# bhmds
bhmds 		310/udp	# bhmds
vslmp		312/tcp	# VSLMP
vslmp		312/udp	# VSLMP
dpsi		315/tcp	# DPSI
dpsi		315/udp	# DPSI
decauth		316/tcp	# decAuth
decauth		316/udp	# decAuth
zannet		317/tcp	# Zannet
zannet		317/udp	# Zannet
pip		321/tcp	# PIP
pip		321/udp	# PIP
rtsps		322/tcp	# RTSPS
rtsps		322/udp	# RTSPS
pdap            344/tcp	# Prospero Data Access Protocol
pdap            344/udp	# Prospero Data Access Protocol
pawserv         345/tcp	# Perf Analysis Workbench
pawserv         345/udp	# Perf Analysis Workbench
zserv           346/tcp	# Zebra server
zserv           346/udp	# Zebra server
fatserv         347/tcp	# Fatmen Server
fatserv         347/udp	# Fatmen Server
mftp            349/tcp	# mftp
mftp            349/udp	# mftp
bhoetty		351/tcp	   bhoetty (added 5/21/97)
bhoetty		351/udp	# bhoetty
bhoedap4	352/tcp	# bhoedap4 (added 5/21/97)
bhoedap4	352/udp	# bhoedap4
ndsauth		353/tcp	# NDSAUTH
ndsauth		353/udp	# NDSAUTH
bh611		354/tcp	   bh611
bh611		354/udp	# bh611
bhevent		357/tcp	   bhevent
bhevent		357/udp	# bhevent
shrinkwrap	358/tcp	# Shrinkwrap
shrinkwrap	358/udp	# Shrinkwrap
scoi2odialog	360/tcp	# scoi2odialog
scoi2odialog	360/udp	# scoi2odialog
semantix	361/tcp	# Semantix
semantix	361/udp	# Semantix
srssend		362/tcp	# SRS Send
srssend		362/udp	# SRS Send
dtk		365/tcp	# DTK
dtk		365/udp	# DTK
odmr		366/tcp	# ODMR
odmr		366/udp	# ODMR
mortgageware	367/tcp	# MortgageWare
mortgageware	367/udp	# MortgageWare
qbikgdp		368/tcp	# QbikGDP
qbikgdp		368/udp	# QbikGDP
rpc2portmap	369/tcp	# rpc2portmap
rpc2portmap	369/udp	# rpc2portmap
codaauth2	370/tcp	# codaauth2
codaauth2	370/udp	# codaauth2
clearcase       371/tcp	# Clearcase
clearcase       371/udp	# Clearcase
ulistproc       372/tcp	# ListProcessor
ulistproc       372/udp	# ListProcessor
hassle          375/tcp	# Hassle
hassle          375/udp	# Hassle
nip             376/tcp	# Amiga Envoy Network Inquiry Proto
nip             376/udp	# Amiga Envoy Network Inquiry Proto
tnETOS          377/tcp	# NEC Corporation
tnETOS          377/udp	# NEC Corporation
dsETOS          378/tcp	# NEC Corporation
dsETOS          378/udp	# NEC Corporation
is99c           379/tcp	# TIA/EIA/IS-99 modem client
is99c           379/udp	# TIA/EIA/IS-99 modem client
is99s           380/tcp	# TIA/EIA/IS-99 modem server
is99s           380/udp	# TIA/EIA/IS-99 modem server
arns            384/tcp	# A Remote Network Server System
arns            384/udp	# A Remote Network Server System
asa             386/tcp	# ASA Message Router Object Def.
asa             386/udp	# ASA Message Router Object Def.
aurp            387/tcp	# Appletalk Update-Based Routing Pro.
aurp            387/udp	# Appletalk Update-Based Routing Pro.
ldap            389/tcp	# Lightweight Directory Access Protocol
ldap            389/udp	# Lightweight Directory Access Protocol
uis             390/tcp	# UIS
uis             390/udp	# UIS
dis             393/tcp	# Data Interpretation System
dis             393/udp	# Data Interpretation System
netcp           395/tcp	# NETscout Control Protocol
netcp           395/udp	# NETscout Control Protocol
mptn            397/tcp	# Multi Protocol Trans. Net.
mptn            397/udp	# Multi Protocol Trans. Net.
kryptolan       398/tcp	# Kryptolan
kryptolan       398/udp	# Kryptolan
ups             401/tcp	# Uninterruptible Power Supply
ups             401/udp	# Uninterruptible Power Supply
genie           402/tcp	# Genie Protocol
genie           402/udp	# Genie Protocol
decap           403/tcp	# decap
decap           403/udp	# decap
nced            404/tcp	# nced
nced            404/udp	# nced
ncld            405/tcp	# ncld
ncld            405/udp	# ncld
imsp            406/tcp	# Interactive Mail Support Protocol
imsp            406/udp	# Interactive Mail Support Protocol
timbuktu        407/tcp	# Timbuktu
timbuktu        407/udp	# Timbuktu
decladebug      410/tcp	# DECLadebug Remote Debug Protocol
decladebug      410/udp	# DECLadebug Remote Debug Protocol
rmt             411/tcp	# Remote MT Protocol
rmt             411/udp	# Remote MT Protocol
smsp            413/tcp	# SMSP
smsp            413/udp	# SMSP
infoseek        414/tcp	# InfoSeek
infoseek        414/udp	# InfoSeek
bnet            415/tcp	# BNet
bnet            415/udp	# BNet
silverplatter   416/tcp	# Silverplatter
silverplatter   416/udp	# Silverplatter
onmux           417/tcp	# Onmux
onmux           417/udp	# Onmux
ariel1          419/tcp	# Ariel
ariel1          419/udp	# Ariel
smpte           420/tcp	# SMPTE
smpte           420/udp	# SMPTE
ariel2          421/tcp	# Ariel
ariel2          421/udp	# Ariel
ariel3          422/tcp	# Ariel
ariel3          422/udp	# Ariel
smartsdp        426/tcp	# smartsdp
smartsdp        426/udp	# smartsdp
svrloc          427/tcp	# Server Location
svrloc          427/udp	# Server Location
utmpsd          430/tcp	# UTMPSD
utmpsd          430/udp	# UTMPSD
utmpcd          431/tcp	# UTMPCD
utmpcd          431/udp	# UTMPCD
iasd            432/tcp	# IASD
iasd            432/udp	# IASD
nnsp            433/tcp	# NNSP
nnsp            433/udp	# NNSP
comscm          437/tcp	# comscm
comscm          437/udp	# comscm
dsfgw           438/tcp	# dsfgw
dsfgw           438/udp	# dsfgw
dasp            439/tcp	# dasp      Thomas Obermair
dasp            439/udp	# dasp      tommy@inlab.m.eunet.de
sgcp            440/tcp	# sgcp
sgcp            440/udp	# sgcp
https           443/tcp	# http protocol over TLS/SSL
https           443/udp	# http protocol over TLS/SSL
snpp            444/tcp	# Simple Network Paging Protocol
snpp            444/udp	# Simple Network Paging Protocol
tserver         450/tcp	# TServer
tserver         450/udp	# TServer
creativeserver  453/tcp	# CreativeServer
creativeserver  453/udp	# CreativeServer
contentserver   454/tcp	# ContentServer
contentserver   454/udp	# ContentServer
creativepartnr  455/tcp	# CreativePartnr
creativepartnr  455/udp	# CreativePartnr
scohelp         457/tcp	# scohelp
scohelp         457/udp	# scohelp
appleqtc        458/tcp	# apple quick time
appleqtc        458/udp	# apple quick time
skronk          460/tcp	# skronk
skronk          460/udp	# skronk
datasurfsrv     461/tcp	# DataRampSrv
datasurfsrv     461/udp	# DataRampSrv
datasurfsrvsec  462/tcp	# DataRampSrvSec
datasurfsrvsec  462/udp	# DataRampSrvSec
alpes           463/tcp	# alpes
alpes           463/udp	# alpes
kpasswd         464/tcp	# kpasswd
kpasswd         464/udp	# kpasswd
photuris        468/tcp	# proturis
photuris        468/udp	# proturis
rcp             469/tcp	# Radio Control Protocol
rcp             469/udp	# Radio Control Protocol
mondex          471/tcp	# Mondex
mondex          471/udp	# Mondex
tcp	# nethaspsrv   475/tcp	# tcpnethaspsrv
tcp	# nethaspsrv   475/udp	# tcp	# nethaspsrv
ss7ns           477/tcp	# ss7ns
ss7ns           477/udp	# ss7ns
spsc            478/tcp	# spsc
spsc            478/udp	# spsc
iafserver       479/tcp	# iafserver
iafserver       479/udp	# iafserver
iafdbase        480/tcp	# iafdbase
iafdbase        480/udp	# iafdbase
ph              481/tcp	# Ph service
ph              481/udp	# Ph service
ulpnet          483/tcp	# ulpnet
ulpnet          483/udp	# ulpnet
powerburst      485/tcp	# Air Soft Power Burst
powerburst      485/udp	# Air Soft Power Burst
avian           486/tcp	# avian
avian           486/udp	# avian
saft            487/tcp	# saft Simple Asynchronous File Transfer
saft            487/udp	# saft Simple Asynchronous File Transfer
intecourier     495/tcp	# intecourier
intecourier     495/udp	# intecourier
dantz           497/tcp	# dantz
dantz           497/udp	# dantz
siam            498/tcp	# siam
siam            498/udp	# siam
isakmp          500/tcp	# isakmp
isakmp          500/udp	# isakmp
stmf            501/tcp	# STMF
stmf            501/udp	# STMF
intrinsa        503/tcp	# Intrinsa
intrinsa        503/udp	# Intrinsa
citadel         504/tcp	# citadel
citadel         504/udp	# citadel
ohimsrv         506/tcp	# ohimsrv
ohimsrv         506/udp	# ohimsrv
crs             507/tcp	# crs
crs             507/udp	# crs
xvttp           508/tcp	# xvttp
xvttp           508/udp	# xvttp
snare           509/tcp	# snare
snare           509/udp	# snare
fcp             510/tcp	# FirstClass Protocol
fcp             510/udp	# FirstClass Protocol
passgo          511/tcp	# PassGo
passgo          511/udp	# PassGo
exec            512/tcp	# remote process execution;
comsat          512/udp
biff            512/udp	# used by mail system to notify users
login           513/tcp	# remote login a la telnet;
who             513/udp	# maintains data bases showing who's
shell           514/tcp	# cmd
syslog          514/udp
printer         515/tcp	# spooler
printer         515/udp	# spooler
videotex        516/tcp	# videotex
videotex        516/udp	# videotex
talk            517/tcp	# like tenex link, but across
talk            517/udp	# like tenex link, but across
ntalk           518/tcp
ntalk           518/udp
utime           519/tcp	# unixtime
utime           519/udp	# unixtime
efs             520/tcp	# extended file name server
router          520/udp	# local routing process (on site);
ripng           521/tcp	# ripng
ripng           521/udp	# ripng
ulp             522/tcp	# ULP
ulp             522/udp	# ULP
ncp             524/tcp	# NCP
ncp             524/udp	# NCP
timed  	        525/tcp	# timeserver
timed           525/udp	# timeserver
tempo	        526/tcp	# newdate
tempo	        526/udp	# newdate
stx             527/tcp	# Stock IXChange
stx             527/udp	# Stock IXChange
custix          528/tcp	# Customer IXChange
custix          528/udp	# Customer IXChange
courier         530/tcp	# rpc
courier         530/udp	# rpc
conference      531/tcp	# chat
conference      531/udp	# chat
netnews         532/tcp	# readnews
netnews         532/udp	# readnews
netwall	        533/tcp	# for emergency broadcasts
netwall	        533/udp	# for emergency broadcasts
iiop            535/tcp	# iiop
iiop            535/udp	# iiop
nmsp            537/tcp	# Networked Media Streaming Protocol
nmsp            537/udp	# Networked Media Streaming Protocol
gdomap          538/tcp	# gdomap
gdomap          538/udp	# gdomap
uucp	        540/tcp	# uucpd
uucp	        540/udp	# uucpd
commerce        542/tcp	# commerce
commerce        542/udp	# commerce
klogin          543/tcp
klogin          543/udp
kshell 	        544/tcp	# krcmd
kshell 	        544/udp	# krcmd
appleqtcsrvr    545/tcp	# appleqtcsrvr
appleqtcsrvr    545/udp	# appleqtcsrvr
afpovertcp      548/tcp	# AFP over TCP
afpovertcp      548/udp	# AFP over TCP
idfp            549/tcp	# IDFP
idfp            549/udp	# IDFP
cybercash       551/tcp	# cybercash
cybercash       551/udp	# cybercash
deviceshare     552/tcp	# deviceshare
deviceshare     552/udp	# deviceshare
pirp            553/tcp	# pirp
pirp            553/udp	# pirp
rtsp            554/tcp	# Real Time Stream Control Protocol
rtsp            554/udp	# Real Time Stream Control Protocol
dsf             555/tcp
dsf             555/udp
remotefs        556/tcp	# rfs server
remotefs        556/udp	# rfs server
sdnskmp         558/tcp	# SDNSKMP
sdnskmp         558/udp	# SDNSKMP
teedtap         559/tcp	# TEEDTAP
teedtap         559/udp	# TEEDTAP
rmonitor        560/tcp	# rmonitord
rmonitor        560/udp	# rmonitord
monitor         561/tcp
monitor         561/udp
chshell         562/tcp	# chcmd
chshell         562/udp	# chcmd
nntps           563/tcp	# nntp protocol over TLS/SSL (was snntp)
nntps           563/udp	# nntp protocol over TLS/SSL (was snntp)
whoami          565/tcp	# whoami
whoami          565/udp	# whoami
streettalk      566/tcp	# streettalk
streettalk      566/udp	# streettalk
meter           570/tcp	# demon
meter           570/udp	# demon
meter	        571/tcp	# udemon
meter	        571/udp	# udemon
sonar           572/tcp	# sonar
sonar           572/udp	# sonar
vemmi           575/tcp	# VEMMI
vemmi           575/udp	# VEMMI
ipcd            576/tcp	# ipcd
ipcd            576/udp	# ipcd
vnas            577/tcp	# vnas
vnas            577/udp	# vnas
ipdd            578/tcp	# ipdd
ipdd            578/udp	# ipdd
decbsrv		579/tcp	# decbsrv
decbsrv		579/udp	# decbsrv
bdp		581/tcp	# Bundle Discovery Protocol
bdp		581/udp	# Bundle Discovery Protocol
keyserver	584/tcp	# Key Server
keyserver	584/udp	# Key Server
submission	587/tcp	# Submission
submission	587/udp	# Submission
cal		588/tcp	# CAL
cal		588/udp	# CAL
eyelink		589/tcp	# EyeLink
eyelink		589/udp	# EyeLink
tpip		594/tcp	# TPIP
tpip		594/udp	# TPIP
smsd		596/tcp	# SMSD
smsd		596/udp	# SMSD
ptcnameservice	597/tcp	# PTC Name Service
ptcnameservice	597/udp	# PTC Name Service
acp		599/tcp	# Aeolon Core Protocol
acp		599/udp	# Aeolon Core Protocol
ipcserver       600/tcp	# Sun IPC server
ipcserver       600/udp	# Sun IPC server
urm             606/tcp	# Cray Unified Resource Manager
urm             606/udp	# Cray Unified Resource Manager
nqs	        607/tcp	# nqs
nqs	        607/udp	# nqs
sshell		614/tcp	# SSLshell
sshell   	614/udp	# SSLshell
collaborator	622/tcp	# Collaborator
collaborator	622/udp	# Collaborator
cryptoadmin	624/tcp	# Crypto Admin
cryptoadmin	624/udp	# Crypto Admin
asia		626/tcp	# ASIA
asia		626/udp	# ASIA
qmqp		628/tcp	# QMQP
qmqp		628/udp	# QMQP
rda		630/tcp	# RDA
rda		630/udp	# RDA
ipp		631/tcp	# IPP (Internet Printing Protocol)
ipp		631/udp	# IPP (Internet Printing Protocol)
bmpp		632/tcp	# bmpp
bmpp		632/udp	# bmpp
servstat	633/tcp	# Service Status update (Sterling Software)
servstat	633/udp	# Service Status update (Sterling Software)
ginad           634/tcp	# ginad
ginad           634/udp	# ginad
rlzdbase        635/tcp	# RLZ DBase
rlzdbase        635/udp	# RLZ DBase
ldaps           636/tcp	# ldap protocol over TLS/SSL (was sldap)
ldaps           636/udp	# ldap protocol over TLS/SSL (was sldap)
lanserver       637/tcp	# lanserver
lanserver       637/udp	# lanserver
msdp		639/tcp	# MSDP
msdp		639/udp	# MSDP
repcmd		641/tcp	# repcmd
repcmd		641/udp	# repcmd
sanity		643/tcp	# SANity
sanity		643/udp	# SANity
dwr		644/tcp	# dwr
dwr		644/udp	# dwr
pssc		645/tcp	# PSSC
pssc		645/udp	# PSSC
ldp		646/tcp	# LDP
ldp		646/udp	# LDP
rrp		648/tcp	# Registry Registrar Protocol (RRP)
rrp		648/udp	# Registry Registrar Protocol (RRP)
aminet		649/tcp	# Aminet
aminet		649/udp	# Aminet
obex		650/tcp	# OBEX
obex		650/udp	# OBEX
repscmd		653/tcp	# RepCmd
repscmd		653/udp	# RepCmd
aodv		654/tcp	# AODV
aodv		654/udp	# AODV
tinc		655/tcp	# TINC
tinc		655/udp	# TINC
spmp		656/tcp	# SPMP
spmp		656/udp	# SPMP
mdqs            666/tcp
mdqs            666/udp
doom            666/tcp	# doom Id Software
doom            666/udp	# doom Id Software
disclose        667/tcp	# campaign contribution disclosures - SDR Technologies
disclose        667/udp	# campaign contribution disclosures - SDR Technologies
mecomm          668/tcp	# MeComm
mecomm          668/udp	# MeComm
meregister      669/tcp	# MeRegister
meregister      669/udp	# MeRegister
cimplex         673/tcp	# CIMPLEX
cimplex         673/udp	# CIMPLEX
acap		674/tcp	# ACAP
acap		674/udp	# ACAP
dctp		675/tcp	# DCTP
dctp		675/udp	# DCTP
vpp		677/tcp	# Virtual Presence Protocol
vpp		677/udp	# Virtual Presence Protocol
mrm		679/tcp	# MRM
mrm		679/udp	# MRM
xfr		682/tcp	# XFR
xfr		682/udp	# XFR
asipregistry	687/tcp	# asipregistry
asipregistry	687/udp	# asipregistry
elcsd	        704/tcp	# errlog copy/server daemon
elcsd	        704/udp	# errlog copy/server daemon
agentx	        705/tcp	# AgentX
agentx		705/udp	# AgentX
netviewdm1      729/tcp	# IBM NetView DM/6000 Server/Client
netviewdm1      729/udp	# IBM NetView DM/6000 Server/Client
netviewdm2      730/tcp	# IBM NetView DM/6000 send/tcp
netviewdm2      730/udp	# IBM NetView DM/6000 send/tcp
netviewdm3      731/tcp	# IBM NetView DM/6000 receive/tcp
netviewdm3      731/udp	# IBM NetView DM/6000 receive/tcp
netgw           741/tcp	# netGW
netgw           741/udp	# netGW
netrcs          742/tcp	# Network based Rev. Cont. Sys.
netrcs          742/udp	# Network based Rev. Cont. Sys.
flexlm          744/tcp	# Flexible License Manager
flexlm          744/udp	# Flexible License Manager
rfile 	        750/tcp
loadav          750/udp
pump	        751/tcp
pump	        751/udp
qrh	        752/tcp
qrh	        752/udp
rrh    	        753/tcp
rrh	        753/udp
tell	        754/tcp	    send
tell	        754/udp	    send
nlogin	        758/tcp
nlogin	        758/udp
con	        759/tcp
con	        759/udp
ns	        760/tcp
ns	        760/udp
rxe	        761/tcp
rxe	        761/udp
quotad	        762/tcp
quotad	        762/udp
cycleserv       763/tcp
cycleserv       763/udp
omserv	        764/tcp
omserv	        764/udp
webster	        765/tcp
webster	        765/udp
phonebook       767/tcp	   phone
phonebook       767/udp	   phone
vid	        769/tcp
vid	        769/udp
cadlock         770/tcp
cadlock         770/udp
rtip 	        771/tcp
rtip 	        771/udp
cycleserv2      772/tcp
cycleserv2      772/udp
submit	        773/tcp
notify	        773/udp
rpasswd	        774/tcp
entomb	        775/tcp
wpages		776/tcp
wpages          776/udp
wpgs		780/tcp
wpgs		780/udp
concert         786/tcp	# Concert
concert         786/udp	# Concert
qsc		787/tcp	# QSC
qsc		787/udp	# QSC
device		801/tcp
device		801/udp
rsync		873/tcp	# rsync
rsync		873/udp	# rsync
accessbuilder   888/tcp	# AccessBuilder
accessbuilder   888/udp	# AccessBuilder
cddbp           888/tcp	# CD Database Protocol
omginitialrefs  900/tcp	# OMG Initial Refs
omginitialrefs  900/udp	# OMG Initial Refs
ftps		990/tcp	# ftp protocol, control, over TLS/SSL
ftps		990/udp	# ftp protocol, control, over TLS/SSL
nas		991/tcp	# Netnews Administration System
nas		991/udp	# Netnews Administration System
telnets		992/tcp	# telnet protocol over TLS/SSL
telnets		992/udp	# telnet protocol over TLS/SSL
imaps		993/tcp	# imap4 protocol over TLS/SSL
imaps		993/udp	# imap4 protocol over TLS/SSL
ircs		994/tcp	# irc protocol over TLS/SSL
ircs		994/udp	# irc protocol over TLS/SSL
pop3s           995/tcp	# pop3 protocol over TLS/SSL (was spop3)
pop3s           995/udp	# pop3 protocol over TLS/SSL (was spop3)
vsinet          996/tcp	# vsinet
vsinet          996/udp	# vsinet
maitrd		997/tcp
maitrd		997/udp
busboy		998/tcp
puparp		998/udp
garcon		999/tcp
applix		999/udp	# Applix ac
puprouter	999/tcp
puprouter	999/udp
cadlock		1000/tcp
ock		1000/udp
surf		1010/tcp	# surf
surf		1010/udp	# surf
blackjack	1025/tcp	# network blackjack
blackjack	1025/udp	# network blackjack
iad1            1030/tcp	# BBN IAD
iad1            1030/udp	# BBN IAD
iad2            1031/tcp	# BBN IAD
iad2            1031/udp	# BBN IAD
iad3            1032/tcp	# BBN IAD
iad3            1032/udp	# BBN IAD
neod1           1047/tcp	# Sun's NEO Object Request Broker
neod1           1047/udp	# Sun's NEO Object Request Broker
neod2           1048/tcp	# Sun's NEO Object Request Broker
neod2           1048/udp	# Sun's NEO Object Request Broker
nim             1058/tcp	# nim
nim             1058/udp	# nim
nimreg          1059/tcp	# nimreg
nimreg          1059/udp	# nimreg
socks           1080/tcp	# Socks
socks           1080/udp	# Socks
sunclustermgr	1097/tcp	# Sun Cluster Manager
sunclustermgr	1097/udp	# Sun Cluster Manager
rmiactivation	1098/tcp	# RMI Activation
rmiactivation	1098/udp	# RMI Activation
rmiregistry	1099/tcp	# RMI Registry
rmiregistry	1099/udp	# RMI Registry
lmsocialserver  1111/tcp	# LM Social Server
lmsocialserver	1111/udp	# LM Social Server
murray          1123/tcp	# Murray
murray          1123/udp	# Murray
nfa             1155/tcp	# Network File Access
nfa             1155/udp	# Network File Access
caiccipc	1202/tcp	# caiccipc
caiccipc	1202/udp	# caiccipc
lupa            1212/tcp	# lupa
lupa            1212/udp	# lupa
nerv		1222/tcp	# SNI R&D network
nerv		1222/udp	# SNI R&D network
nmsd		1239/tcp	# NMSD
nmsd		1239/udp	# NMSD
hermes		1248/tcp
hermes		1248/udp
h323hostcallsc	1300/tcp	# H323 Host Call Secure
h323hostcallsc	1300/udp	# H323 Host Call Secure
husky		1310/tcp	# Husky
husky		1310/udp	# Husky
rxmon		1311/tcp	# RxMon
rxmon		1311/udp	# RxMon
pdps		1314/tcp	# Photoscript Distributed Printing System
pdps            1314/udp	# Photoscript Distributed Printing System
pip		1321/tcp	# PIP
pip		1321/udp	# PIP
vpjp            1345/tcp	# VPJP
vpjp            1345/udp	# VPJP
sbook           1349/tcp	# Registration Network Protocol
sbook           1349/udp	# Registration Network Protocol
editbench       1350/tcp	# Registration Network Protocol
editbench       1350/udp	# Registration Network Protocol
equationbuilder 1351/tcp	# Digital Tool Works (MIT)
equationbuilder 1351/udp	# Digital Tool Works (MIT)
lotusnote       1352/tcp	# Lotus Note
lotusnote       1352/udp	# Lotus Note
relief          1353/tcp	# Relief Consulting
relief          1353/udp	# Relief Consulting
rightbrain      1354/tcp	# RightBrain Software
rightbrain      1354/udp	# RightBrain Software
cuillamartin    1356/tcp	# CuillaMartin Company
cuillamartin    1356/udp	# CuillaMartin Company
pegboard        1357/tcp	# Electronic PegBoard
pegboard        1357/udp	# Electronic PegBoard
connlcli        1358/tcp	# CONNLCLI
connlcli        1358/udp	# CONNLCLI
ftsrv           1359/tcp	# FTSRV
ftsrv           1359/udp	# FTSRV
mimer           1360/tcp	# MIMER
mimer           1360/udp	# MIMER
linx            1361/tcp	# LinX
linx            1361/udp	# LinX
timeflies       1362/tcp	# TimeFlies
timeflies       1362/udp	# TimeFlies
dcs             1367/tcp	# DCS
dcs             1367/udp	# DCS
screencast      1368/tcp	# ScreenCast
screencast      1368/udp	# ScreenCast
chromagrafx     1373/tcp	# Chromagrafx
chromagrafx     1373/udp	# Chromagrafx
molly           1374/tcp	# EPI Software Systems
molly           1374/udp	# EPI Software Systems
bytex           1375/tcp	# Bytex
bytex           1375/udp	# Bytex
cichlid         1377/tcp	# Cichlid License Manager
cichlid         1377/udp	# Cichlid License Manager
elan            1378/tcp	# Elan License Manager
elan            1378/udp	# Elan License Manager
dbreporter      1379/tcp	# Integrity Solutions
dbreporter      1379/udp	# Integrity Solutions
gwha            1383/tcp	# GW Hannaway Network License Manager
gwha            1383/udp	# GW Hannaway Network License Manager
checksum        1386/tcp	# CheckSum License Manager
checksum        1386/udp	# CheckSum License Manager
hiq             1410/tcp	# HiQ License Manager
hiq             1410/udp	# HiQ License Manager
af              1411/tcp	# AudioFile
af              1411/udp	# AudioFile
innosys         1412/tcp	# InnoSys
innosys         1412/udp	# InnoSys
dbstar          1415/tcp	# DBStar
dbstar          1415/udp	# DBStar
essbase         1423/tcp	# Essbase Arbor Software
essbase         1423/udp	# Essbase Arbor Software
hybrid          1424/tcp	# Hybrid Encryption Protocol
hybrid          1424/udp	# Hybrid Encryption Protocol
sais            1426/tcp	# Satellite-data Acquisition System 1
sais            1426/udp	# Satellite-data Acquisition System 1
mloadd          1427/tcp	# mloadd monitoring tool
mloadd          1427/udp	# mloadd monitoring tool
nms             1429/tcp	# Hypercom NMS
nms             1429/udp	# Hypercom NMS
tpdu            1430/tcp	# Hypercom TPDU
tpdu            1430/udp	# Hypercom TPDU
rgtp            1431/tcp	# Reverse Gossip Transport
rgtp            1431/udp	# Reverse Gossip Transport
saism           1436/tcp	# Satellite-data Acquisition System 2
saism           1436/udp	# Satellite-data Acquisition System 2
tabula          1437/tcp	# Tabula
tabula          1437/udp	# Tabula
peport          1449/tcp	# PEport
peport          1449/udp	# PEport
dwf             1450/tcp	# Tandem Distributed Workbench Facility
dwf             1450/udp	# Tandem Distributed Workbench Facility
infoman         1451/tcp	# IBM Information Management
infoman         1451/udp	# IBM Information Management
dca             1456/tcp	# DCA
dca             1456/udp	# DCA
proshare1       1459/tcp	# Proshare Notebook Application
proshare1       1459/udp	# Proshare Notebook Application
proshare2       1460/tcp	# Proshare Notebook Application
proshare2       1460/udp	# Proshare Notebook Application
nucleus         1463/tcp	# Nucleus
nucleus         1463/udp	# Nucleus
pipes           1465/tcp	# Pipes Platform
pipes           1465/udp	# Pipes Platform  mfarlin@peerlogic.com
csdmbase        1467/tcp	# CSDMBASE
csdmbase        1467/udp	# CSDMBASE
csdm            1468/tcp	# CSDM
csdm            1468/udp	# CSDM
uaiact          1470/tcp	# Universal Analytics
uaiact          1470/udp	# Universal Analytics
csdmbase        1471/tcp	# csdmbase
csdmbase        1471/udp	# csdmbase
csdm            1472/tcp	# csdm
csdm            1472/udp	# csdm
openmath        1473/tcp	# OpenMath
openmath        1473/udp	# OpenMath
telefinder      1474/tcp	# Telefinder
telefinder      1474/udp	# Telefinder
dberegister     1479/tcp	# dberegister
dberegister     1479/udp	# dberegister
pacerforum      1480/tcp	# PacerForum
pacerforum      1480/udp	# PacerForum
airs            1481/tcp	# AIRS
airs            1481/udp	# AIRS
afs             1483/tcp	# AFS License Manager
afs             1483/udp	# AFS License Manager
confluent       1484/tcp	# Confluent License Manager
confluent       1484/udp	# Confluent License Manager
lansource       1485/tcp	# LANSource
lansource       1485/udp	# LANSource
localinfosrvr   1487/tcp	# LocalInfoSrvr
localinfosrvr   1487/udp	# LocalInfoSrvr
docstor         1488/tcp	# DocStor
docstor         1488/udp	# DocStor
dmdocbroker     1489/tcp	# dmdocbroker
dmdocbroker     1489/udp	# dmdocbroker
anynetgateway   1491/tcp	# anynetgateway
anynetgateway   1491/udp	# anynetgateway
ica             1494/tcp	# ica
ica             1494/udp	# ica
cvc             1495/tcp	# cvc
cvc             1495/udp	# cvc
fhc             1499/tcp	# Federico Heinz Consultora
fhc             1499/udp	# Federico Heinz Consultora
saiscm          1501/tcp	# Satellite-data Acquisition System 3
saiscm          1501/udp	# Satellite-data Acquisition System 3
shivadiscovery  1502/tcp	# Shiva
shivadiscovery  1502/udp	# Shiva
funkproxy       1505/tcp	# Funk Software, Inc.
funkproxy       1505/udp	# Funk Software, Inc.
utcd            1506/tcp	# Universal Time daemon (utcd)
utcd            1506/udp	# Universal Time daemon (utcd)
symplex         1507/tcp	# symplex
symplex         1507/udp	# symplex
diagmond        1508/tcp	# diagmond
diagmond        1508/udp	# diagmond
wins            1512/tcp	# Microsoft's Windows Internet Name Service
wins            1512/udp	# Microsoft's Windows Internet Name Service
vpad            1516/tcp	# Virtual Places Audio data
vpad            1516/udp	# Virtual Places Audio data
vpac            1517/tcp	# Virtual Places Audio control
vpac            1517/udp	# Virtual Places Audio control
vpvd            1518/tcp	# Virtual Places Video data
vpvd            1518/udp	# Virtual Places Video data
vpvc            1519/tcp	# Virtual Places Video control
vpvc            1519/udp	# Virtual Places Video control
ingreslock	1524/tcp	# ingres
ingreslock	1524/udp	# ingres
orasrv          1525/tcp	# oracle
orasrv          1525/udp	# oracle
tlisrv          1527/tcp	# oracle
tlisrv          1527/udp	# oracle
mciautoreg      1528/tcp	# micautoreg
mciautoreg      1528/udp	# micautoreg
coauthor        1529/tcp	# oracle
coauthor        1529/udp	# oracle
miroconnect     1532/tcp	# miroconnect
miroconnect     1532/udp	# miroconnect
rds             1540/tcp	# rds
rds             1540/udp	# rds
rds2            1541/tcp	# rds2
rds2            1541/udp	# rds2
aspeclmd        1544/tcp	# aspeclmd
aspeclmd        1544/udp	# aspeclmd
abbaccuray      1546/tcp	# abbaccuray
abbaccuray      1546/udp	# abbaccuray
laplink         1547/tcp	# laplink
laplink         1547/udp	# laplink
shivahose       1549/tcp	# Shiva Hose
shivasound      1549/udp	# Shiva Sound
pciarray        1552/tcp	# pciarray
pciarray        1552/udp	# pciarray
livelan         1555/tcp	# livelan
livelan         1555/udp	# livelan
ashwin          1556/tcp	# AshWin CI Tecnologies
ashwin          1556/udp	# AshWin CI Tecnologies
xingmpeg        1558/tcp	# xingmpeg
xingmpeg        1558/udp	# xingmpeg
web2host        1559/tcp	# web2host
web2host        1559/udp	# web2host
facilityview    1561/tcp	# facilityview
facilityview    1561/udp	# facilityview
pconnectmgr     1562/tcp	# pconnectmgr
pconnectmgr     1562/udp	# pconnectmgr
winddlb         1565/tcp	# WinDD
winddlb         1565/udp	# WinDD
corelvideo      1566/tcp	# CORELVIDEO
corelvideo      1566/udp	# CORELVIDEO
jlicelmd        1567/tcp	# jlicelmd
jlicelmd        1567/udp	# jlicelmd
tsspmap         1568/tcp	# tsspmap
tsspmap         1568/udp	# tsspmap
ets             1569/tcp	# ets
ets             1569/udp	# ets
orbixd          1570/tcp	# orbixd
orbixd          1570/udp	# orbixd
oraclenames     1575/tcp	# oraclenames
oraclenames     1575/udp	# oraclenames
msims           1582/tcp	# MSIMS
msims           1582/udp	# MSIMS
simbaexpress    1583/tcp	# simbaexpress
simbaexpress    1583/udp	# simbaexpress
intv            1585/tcp	# intv
intv            1585/udp	# intv
vqp             1589/tcp	# VQP
vqp             1589/udp	# VQP
commonspace     1592/tcp	# commonspace
commonspace     1592/udp	# commonspace
sixtrak         1594/tcp	# sixtrak
sixtrak         1594/udp	# sixtrak
radio           1595/tcp	# radio
radio           1595/udp	# radio
picknfs         1598/tcp	# picknfs
picknfs         1598/udp	# picknfs
simbaservices   1599/tcp	# simbaservices
simbaservices   1599/udp	# simbaservices
issd		1600/tcp
issd		1600/udp
aas             1601/tcp	# aas
aas             1601/udp	# aas
inspect         1602/tcp	# inspect
inspect         1602/udp	# inspect
picodbc         1603/tcp	# pickodbc
picodbc         1603/udp	# pickodbc
icabrowser      1604/tcp	# icabrowser
icabrowser      1604/udp	# icabrowser
slp             1605/tcp	# Salutation Manager (Salutation Protocol)
slp             1605/udp	# Salutation Manager (Salutation Protocol)
stt             1607/tcp	# stt
stt             1607/udp	# stt
ill             1611/tcp	# Inter Library Loan
ill             1611/udp	# Inter Library Loan
skytelnet       1618/tcp	# skytelnet
skytelnet       1618/udp	# skytelnet
faxportwinport  1620/tcp	# faxportwinport
faxportwinport  1620/udp	# faxportwinport
softdataphone   1621/tcp	# softdataphone
softdataphone   1621/udp	# softdataphone
ontime          1622/tcp	# ontime
ontime          1622/udp	# ontime
jaleosnd        1623/tcp	# jaleosnd
jaleosnd        1623/udp	# jaleosnd
shockwave	1626/tcp	# Shockwave
shockwave	1626/udp	# Shockwave
oraclenet8cman	1630/tcp	# Oracle Net8 Cman
oraclenet8cman	1630/udp	# Oracle Net8 Cman
visitview	1631/tcp	# Visit view 
visitview	1631/udp	# Visit view 
pammratc	1632/tcp	# PAMMRATC
pammratc	1632/udp	# PAMMRATC
pammrpc		1633/tcp	# PAMMRPC
pammrpc		1633/udp	# PAMMRPC
loaprobe	1634/tcp	# Log On America Probe
loaprobe	1634/udp	# Log On America Probe
cncp            1636/tcp	# CableNet Control Protocol
cncp            1636/udp	# CableNet Control Protocol
cnap            1637/tcp	# CableNet Admin Protocol
cnap            1637/udp	# CableNet Admin Protocol
cnip            1638/tcp	# CableNet Info Protocol
cnip            1638/udp	# CableNet Info Protocol
invision        1641/tcp	# InVision
invision        1641/udp	# InVision
saiseh          1644/tcp	# Satellite-data Acquisition System 4
datametrics     1645/tcp	# datametrics
datametrics     1645/udp	# datametrics
rsap            1647/tcp	# rsap
rsap            1647/udp	# rsap
kermit          1649/tcp	# kermit
kermit          1649/udp	# kermit
nkd		1650/tcp	# nkd
nkd		1650/udp	# nkd
xnmp            1652/tcp	# xnmp
xnmp            1652/udp	# xnmp
stargatealerts  1654/tcp	# stargatealerts
stargatealerts  1654/udp	# stargatealerts
sixnetudr       1658/tcp	# sixnetudr
sixnetudr       1658/udp	# sixnetudr
pdp             1675/tcp	# Pacific Data Products
pdp             1675/udp	# Pacific Data Products
netcomm1        1676/tcp	# netcomm1
netcomm2        1676/udp	# netcomm2
groupwise       1677/tcp	# groupwise
groupwise       1677/udp	# groupwise
prolink         1678/tcp	# prolink
prolink         1678/udp	# prolink
snaresecure     1684/tcp	# SnareSecure
snaresecure     1684/udp	# SnareSecure
n2nremote       1685/tcp	# n2nremote
n2nremote       1685/udp	# n2nremote
cvmon           1686/tcp	# cvmon
cvmon           1686/udp	# cvmon
firefox         1689/tcp	# firefox
firefox         1689/udp	# firefox
rrirtr          1693/tcp	# rrirtr
rrirtr          1693/udp	# rrirtr
rrimwm          1694/tcp	# rrimwm
rrimwm          1694/udp	# rrimwm
rrilwm          1695/tcp	# rrilwm
rrilwm          1695/udp	# rrilwm
rrifmm          1696/tcp	# rrifmm
rrifmm          1696/udp	# rrifmm
rrisat          1697/tcp	# rrisat
rrisat          1697/udp	# rrisat
l2f             1701/tcp	# l2f
l2f             1701/udp	# l2f
l2tp		1701/tcp	# l2tp
l2tp		1701/udp	# l2tp
deskshare       1702/tcp	# deskshare
deskshare       1702/udp	# deskshare
slingshot       1705/tcp	# slingshot
slingshot       1705/udp	# slingshot
jetform         1706/tcp	# jetform
jetform         1706/udp	# jetform
vdmplay         1707/tcp	# vdmplay
vdmplay         1707/udp	# vdmplay
centra          1709/tcp	# centra
centra          1709/udp	# centra
impera          1710/tcp	# impera
impera          1710/udp	# impera
pptconference   1711/tcp	# pptconference
pptconference   1711/udp	# pptconference
registrar       1712/tcp	# resource monitoring service
registrar       1712/udp	# resource monitoring service
conferencetalk  1713/tcp	# ConferenceTalk
conferencetalk  1713/udp	# ConferenceTalk
xmsg            1716/tcp	# xmsg
xmsg            1716/udp	# xmsg
h323gatedisc    1718/tcp	# h323gatedisc
h323gatedisc    1718/udp	# h323gatedisc
h323gatestat    1719/tcp	# h323gatestat
h323gatestat    1719/udp	# h323gatestat
h323hostcall    1720/tcp	# h323hostcall
h323hostcall    1720/udp	# h323hostcall
caicci          1721/tcp	# caicci
caicci          1721/udp	# caicci
pptp            1723/tcp	# pptp
pptp            1723/udp	# pptp
csbphonemaster  1724/tcp	# csbphonemaster
csbphonemaster  1724/udp	# csbphonemaster
iberiagames     1726/tcp	# IBERIAGAMES
iberiagames     1726/udp	# IBERIAGAMES
winddx          1727/tcp	# winddx
winddx          1727/udp	# winddx
telindus        1728/tcp	# TELINDUS
telindus        1728/udp	# TELINDUS
citynl          1729/tcp	# CityNL License Management
citynl          1729/udp	# CityNL License Management
roketz          1730/tcp	# roketz
roketz          1730/udp	# roketz
msiccp          1731/tcp	# MSICCP
msiccp          1731/udp	# MSICCP
proxim          1732/tcp	# proxim
proxim          1732/udp	# proxim
siipat          1733/tcp	# SIMS - SIIPAT Protocol for Alarm Transmission
siipat          1733/udp	# SIMS - SIIPAT Protocol for Alarm Transmission
privatechat     1735/tcp	# PrivateChat
privatechat     1735/udp	# PrivateChat
ultimad         1737/tcp	# ultimad
ultimad         1737/udp	# ultimad
gamegen1        1738/tcp	# GameGen1
gamegen1        1738/udp	# GameGen1
webaccess       1739/tcp	# webaccess
webaccess       1739/udp	# webaccess
encore          1740/tcp	# encore
encore          1740/udp	# encore
sslp            1750/tcp	# Simple Socket Library's PortMaster
sslp            1750/udp	# Simple Socket Library's PortMaster
swiftnet        1751/tcp	# SwiftNet
swiftnet        1751/udp	# SwiftNet
cnhrp           1757/tcp	# cnhrp
cnhrp           1757/udp	# cnhrp
vaultbase       1771/tcp	# vaultbase
vaultbase       1771/udp	# vaultbase
kmscontrol      1773/tcp	# KMSControl
kmscontrol      1773/udp	# KMSControl
femis           1776/tcp	# Federal Emergency Management Information System
femis           1776/udp	# Federal Emergency Management Information System
powerguardian   1777/tcp	# powerguardian
powerguardian   1777/udp	# powerguardian
pharmasoft      1779/tcp	# pharmasoft
pharmasoft      1779/udp	# pharmasoft
dpkeyserv       1780/tcp	# dpkeyserv
dpkeyserv       1780/udp	# dpkeyserv
fjris           1783/tcp	# Fujitsu Remote Install Service
fjris           1783/udp	# Fujitsu Remote Install Service
windlm          1785/tcp	# Wind River Systems License Manager
windlm          1785/udp	# Wind River Systems License Manager
psmond          1788/tcp	# psmond
psmond          1788/udp	# psmond
hello           1789/tcp	# hello
hello           1789/udp	# hello
nmsp            1790/tcp	# Narrative Media Streaming Protocol
nmsp            1790/udp	# Narrative Media Streaming Protocol
ea1             1791/tcp	# EA1
ea1             1791/udp	# EA1
uma             1797/tcp	# UMA
uma             1797/udp	# UMA
etp             1798/tcp	# Event Transfer Protocol
etp             1798/udp	# Event Transfer Protocol
netrisk		1799/tcp	# NETRISK
netrisk		1799/udp	# NETRISK
msmq		1801/tcp	# Microsoft Message Que
msmq		1801/udp	# Microsoft Message Que
concomp1	1802/tcp	# ConComp1
concomp1	1802/udp	# ConComp1
enl		1804/tcp	# ENL
enl		1804/udp	# ENL
musiconline	1806/tcp	# Musiconline
musiconline	1806/udp	# Musiconline
fhsp		1807/tcp	# Fujitsu Hot Standby Protocol
fhsp		1807/udp	# Fujitsu Hot Standby Protocol
radius          1812/tcp	# RADIUS
radius          1812/udp	# RADIUS
mmpft		1815/tcp	# MMPFT
mmpft		1815/udp	# MMPFT
harp		1816/tcp	# HARP
harp		1816/udp	# HARP
etftp           1818/tcp	# Enhanced Trivial File Transfer Protocol
etftp           1818/udp	# Enhanced Trivial File Transfer Protocol
mcagent         1820/tcp	# mcagent
mcagent         1820/udp	# mcagent
donnyworld      1821/tcp	# donnyworld
donnyworld      1821/udp	# donnyworld
ardt		1826/tcp	# ARDT
ardt		1826/udp	# ARDT
asi		1827/tcp	# ASI
asi		1827/udp	# ASI
myrtle		1831/tcp	# Myrtle
myrtle		1831/udp	# Myrtle
udp	# radio	1833/tcp	# udp	# radio
udp	# radio	1833/udp	# udpradio
ardusuni	1834/tcp	# ARDUS Unicast
ardusuni	1834/udp	# ARDUS Unicast
ardusmul	1835/tcp	# ARDUS Multicast
ardusmul	1835/udp	# ARDUS Multicast
csoft1		1837/tcp	# csoft1
csoft1		1837/udp	# csoft1
talnet		1838/tcp	# TALNET
talnet		1838/udp	# TALNET
gsi		1850/tcp	# GSI
gsi		1850/udp	# GSI
ctcd		1851/tcp	# ctcd
ctcd		1851/udp	# ctcd
msnp		1863/tcp	# MSNP
msnp		1863/udp	# MSNP
entp		1865/tcp	# ENTP
entp		1865/udp	# ENTP
canocentral0	1871/tcp	# Cano Central 0
canocentral0	1871/udp	# Cano Central 0
canocentral1	1872/tcp	# Cano Central 1
canocentral1	1872/udp	# Cano Central 1
fjmpjps		1873/tcp	# Fjmpjps
fjmpjps		1873/udp	# Fjmpjps
fjswapsnp	1874/tcp	# Fjswapsnp
fjswapsnp	1874/udp	# Fjswapsnp
mc2studios	1899/tcp	# MC2Studios
mc2studios	1899/udp	# MC2Studios
linkname        1903/tcp	# Local Link Name Resolution
linkname        1903/udp	# Local Link Name Resolution
sugp   		1905/tcp	# Secure UP.Link Gateway Protocol
sugp            1905/udp	# Secure UP.Link Gateway Protocol
tpmd		1906/tcp	# TPortMapperReq
tpmd		1906/udp	# TPortMapperReq
intrastar	1907/tcp	# IntraSTAR
intrastar	1907/udp	# IntraSTAR
dawn		1908/tcp	# Dawn
dawn		1908/udp	# Dawn
ultrabac	1910/tcp	# ultrabac
ultrabac	1910/udp	# ultrabac
mtp             1911/tcp	# Starlight Networks Multimedia Transport Protocol
mtp             1911/udp	# Starlight Networks Multimedia Transport Protocol
armadp          1913/tcp	# armadp
armadp          1913/udp	# armadp
facelink        1915/tcp	# FACELINK
facelink        1915/udp	# FACELINK
persona         1916/tcp	# Persoft Persona
persona         1916/udp	# Persoft Persona
noagent		1917/tcp	# nOAgent
noagent		1917/udp	# nOAgent
noadmin		1921/tcp	# NoAdmin
noadmin		1921/udp	# NoAdmin
tapestry	1922/tcp	# Tapestry
tapestry	1922/udp	# Tapestry
spice		1923/tcp	# SPICE
spice		1923/udp	# SPICE
xiip		1924/tcp	# XIIP
xiip		1924/udp	# XIIP
tekpls          1946/tcp	# tekpls
tekpls          1946/udp	# tekpls
hlserver        1947/tcp	# hlserver
hlserver        1947/udp	# hlserver
eye2eye         1948/tcp	# eye2eye
eye2eye         1948/udp	# eye2eye
ismaeasdaqlive  1949/tcp	# ISMA Easdaq Live
ismaeasdaqlive  1949/udp	# ISMA Easdaq Live
ismaeasdaqtest  1950/tcp	# ISMA Easdaq Test
ismaeasdaqtest  1950/udp	# ISMA Easdaq Test
mpnjsc		1952/tcp	# mpnjsc
mpnjsc		1952/udp	# mpnjsc
rapidbase	1953/tcp	# Rapid Base
rapidbase	1953/udp	# Rapid Base
dlsrap          1973/tcp	# Data Link Switching Remote Access Protocol
dlsrap          1973/udp	# Data Link Switching Remote Access Protocol
bb		1984/tcp	# BB
bb		1984/udp	# BB
hsrp		1985/tcp	# Hot Standby Router Protocol
hsrp		1985/udp	# Hot Standby Router Protocol
licensedaemon   1986/tcp	# cisco license management
licensedaemon   1986/udp	# cisco license management
mshnet          1989/tcp	# MHSnet system
mshnet          1989/udp	# MHSnet system
ipsendmsg       1992/tcp	# IPsendmsg
ipsendmsg       1992/udp	# IPsendmsg
callbook        2000/tcp
callbook        2000/udp
dc		2001/tcp
wizard		2001/udp	# curry
globe		2002/tcp
globe		2002/udp
mailbox		2004/tcp
emce            2004/udp	# CCWS mm conf
berknet		2005/tcp
oracle		2005/udp
invokator	2006/tcp
dectalk		2007/tcp
conf		2008/tcp
terminaldb	2008/udp
news		2009/tcp
whosockami	2009/udp
search		2010/tcp
servserv	2011/udp
ttyinfo		2012/tcp
troff		2014/tcp
cypress		2015/tcp
bootserver	2016/tcp
bootserver	2016/udp
bootclient	2017/udp
terminaldb	2018/tcp
rellpack	2018/udp
whosockami	2019/tcp
about		2019/udp
xinupageserver	2020/tcp
xinupageserver	2020/udp
servexec	2021/tcp
xinuexpansion1	2021/udp
down		2022/tcp
xinuexpansion2	2022/udp
xinuexpansion3	2023/tcp
xinuexpansion3	2023/udp
xinuexpansion4	2024/tcp
xinuexpansion4	2024/udp
ellpack		2025/tcp
xribs		2025/udp
scrabble	2026/tcp
scrabble	2026/udp
shadowserver	2027/tcp
shadowserver	2027/udp
submitserver	2028/tcp
submitserver	2028/udp
device2		2030/tcp
device2		2030/udp
blackboard      2032/tcp
blackboard      2032/udp
glogger		2033/tcp
glogger		2033/udp
scoremgr	2034/tcp
scoremgr	2034/udp
imsldoc		2035/tcp
imsldoc		2035/udp
objectmanager	2038/tcp
objectmanager	2038/udp
lam		2040/tcp
lam		2040/udp
interbase	2041/tcp
interbase	2041/udp
isis		2042/tcp	# isis
isis		2042/udp	# isis
rimsl		2044/tcp
rimsl		2044/udp
cdfunc		2045/tcp
cdfunc		2045/udp
sdfunc		2046/tcp
sdfunc		2046/udp
dls		2047/tcp
dls		2047/udp
shilp		2049/tcp
shilp		2049/udp
nfs             2049/tcp	# Network File System - Sun Microsystems
nfs             2049/udp	# Network File System - Sun Microsystems
dlsrpn          2065/tcp	# Data Link Switch Read Port Number
dlsrpn          2065/udp	# Data Link Switch Read Port Number
dlswpn          2067/tcp	# Data Link Switch Write Port Number
dlswpn          2067/udp	# Data Link Switch Write Port Number
lrp		2090/tcp	# Load Report Protocol
lrp		2090/udp	# Load Report Protocol
prp		2091/tcp	# PRP
prp		2091/udp	# PRP
descent3	2092/tcp	# Descent 3
descent3	2092/udp	# Descent 3
jetformpreview	2097/tcp	# Jet Form Preview
jetformpreview	2097/udp	# Jet Form Preview
amiganetfs	2100/tcp	# amiganetfs
amiganetfs	2100/udp	# amiganetfs
minipay		2105/tcp	# MiniPay
minipay		2105/udp	# MiniPay
mzap		2106/tcp	# MZAP
mzap		2106/udp	# MZAP
comcam		2108/tcp	# Comcam
comcam		2108/udp	# Comcam
ergolight	2109/tcp	# Ergolight
ergolight	2109/udp	# Ergolight
ici		2200/tcp	# ICI
ici		2200/udp	# ICI
ats             2201/tcp	# Advanced Training System Program
ats             2201/udp	# Advanced Training System Program
kali            2213/tcp	# Kali
kali            2213/udp	# Kali
ganymede	2220/tcp	# Ganymede
ganymede	2220/udp	# Ganymede
infocrypt	2233/tcp	# INFOCRYPT
infocrypt	2233/udp	# INFOCRYPT
directplay      2234/tcp	# DirectPlay
directplay      2234/udp	# DirectPlay
nani		2236/tcp	# Nani
nani		2236/udp	# Nani
imagequery	2239/tcp	# Image Query
imagequery      2239/udp	# Image Query
recipe		2240/tcp	# RECIPe
recipe		2240/udp	# RECIPe
ivsd            2241/tcp	# IVS Daemon
ivsd            2241/udp	# IVS Daemon
foliocorp       2242/tcp	# Folio Remote Server
foliocorp       2242/udp	# Folio Remote Server
magicom		2243/tcp	# Magicom Protocol
magicom		2243/udp	# Magicom Protocol
nmsserver	2244/tcp	# NMS Server
nmsserver	2244/udp	# NMS Server
hao		2245/tcp	# HaO
hao		2245/udp	# HaO
xmquery         2279/tcp	# xmquery
xmquery         2279/udp	# xmquery
lnvpoller       2280/tcp	# LNVPOLLER
lnvpoller       2280/udp	# LNVPOLLER
lnvconsole      2281/tcp	# LNVCONSOLE
lnvconsole      2281/udp	# LNVCONSOLE
lnvalarm        2282/tcp	# LNVALARM
lnvalarm        2282/udp	# LNVALARM
lnvstatus       2283/tcp	# LNVSTATUS
lnvstatus       2283/udp	# LNVSTATUS
lnvmaps         2284/tcp	# LNVMAPS
lnvmaps         2284/udp	# LNVMAPS
lnvmailmon      2285/tcp	# LNVMAILMON
lnvmailmon      2285/udp	# LNVMAILMON
dna		2287/tcp	# DNA
dna		2287/udp	# DNA
netml		2288/tcp	# NETML
netml		2288/udp	# NETML
cvmmon		2300/tcp	# CVMMON
cvmmon		2300/udp	# CVMMON
binderysupport	2302/tcp	# Bindery Support
binderysupport	2302/udp	# Bindery Support
pehelp          2307/tcp	# pehelp
pehelp          2307/udp	# pehelp
sdhelp		2308/tcp	# sdhelp
sdhelp		2308/udp	# sdhelp
sdserver	2309/tcp	# SD Server
sdserver	2309/udp	# SD Server
sdclient	2310/tcp	# SD Client
sdclient	2310/udp	# SD Client
messageservice	2311/tcp	# Message Service
messageservice	2311/udp	# Message Service
iapp		2313/tcp	# IAPP (Inter Access Point Protocol)
iapp		2313/udp	# IAPP (Inter Access Point Protocol)
cadencecontrol	2318/tcp	# Cadence Control
cadencecontrol	2318/udp	# Cadence Control
infolibria	2319/tcp	# InfoLibria
infolibria	2319/udp	# InfoLibria
rdlap		2321/tcp	# RDLAP over UDP
rdlap		2321/udp	# RDLAP
ofsd		2322/tcp	# ofsd
ofsd		2322/udp	# ofsd
cosmocall	2324/tcp	# Cosmocall
cosmocall	2324/udp	# Cosmocall
idcp		2326/tcp	# IDCP
idcp		2326/udp	# IDCP
xingcsm		2327/tcp	# xingcsm
xingcsm		2327/udp	# xingcsm
nvd		2329/tcp	# NVD
nvd		2329/udp	# NVD
tscchat		2330/tcp	# TSCCHAT
tscchat		2330/udp	# TSCCHAT
agentview	2331/tcp	# AGENTVIEW
agentview	2331/udp	# AGENTVIEW
snapp		2333/tcp	# SNAPP
snapp		2333/udp	# SNAPP
appleugcontrol  2336/tcp	# Apple UG Control
appleugcontrol	2336/udp	# Apple UG Control
ideesrv		2337/tcp	# ideesrv
ideesrv		2337/udp	# ideesrv
xiostatus	2341/tcp	# XIO Status
xiostatus	2341/udp	# XIO Status
fcmsys		2344/tcp	# fcmsys
fcmsys		2344/udp	# fcmsys
dbm		2345/tcp	# dbm
dbm		2345/udp	# dbm
psbserver	2350/tcp	# psbserver
psbserver	2350/udp	# psbserver
psrserver	2351/tcp	# psrserver
psrserver	2351/udp	# psrserver
pslserver	2352/tcp	# pslserver
pslserver	2352/udp	# pslserver
pspserver	2353/tcp	# pspserver
pspserver	2353/udp	# pspserver
psprserver	2354/tcp	# psprserver
psprserver	2354/udp	# psprserver
psdbserver	2355/tcp	# psdbserver
psdbserver	2355/udp	# psdbserver
gxtelmd		2356/tcp	# GXT License Managemant
gxtelmd		2356/udp	# GXT License Managemant
futrix		2358/tcp	# Futrix
futrix		2358/udp	# Futrix
flukeserver	2359/tcp	# FlukeServer
flukeserver	2359/udp	# FlukeServer
nexstorindltd	2360/tcp	# NexstorIndLtd
nexstorindltd	2360/udp	# NexstorIndLtd
tl1		2361/tcp	# TL1
tl1		2361/udp	# TL1
ovsessionmgr	2389/tcp	# OpenView Session Mgr
ovsessionmgr	2389/udp	# OpenView Session Mgr
rsmtp		2390/tcp	# RSMTP
rsmtp		2390/udp	# RSMTP
tacticalauth	2392/tcp	# Tactical Auth
tacticalauth	2392/udp	# Tactical Auth
wusage		2396/tcp	# Wusage
wusage 		2396/udp	# Wusage
ncl		2397/tcp	# NCL
ncl		2397/udp	# NCL
orbiter		2398/tcp	# Orbiter
orbiter		2398/udp	# Orbiter
cvspserver      2401/tcp	# cvspserver
cvspserver      2401/udp	# cvspserver
taskmaster2000	2402/tcp	# TaskMaster 2000 Server
taskmaster2000	2402/udp	# TaskMaster 2000 Server
taskmaster2000	2403/tcp	# TaskMaster 2000 Web
taskmaster2000	2403/udp	# TaskMaster 2000 Web
jediserver	2406/tcp	# JediServer
jediserver	2406/udp	# JediServer
orion		2407/tcp	# Orion
orion		2407/udp	# Orion
optimanet	2408/tcp	# OptimaNet
optimanet	2408/udp	# OptimaNet
cdn		2412/tcp	# CDN
cdn		2412/udp	# CDN
interlingua	2414/tcp	# Interlingua
interlingua	2414/udp	# Interlingua
comtest		2415/tcp	# COMTEST
comtest		2415/udp	# COMTEST
rmtserver	2416/tcp	# RMT Server
rmtserver	2416/udp	# RMT Server
cas		2418/tcp	# cas
cas		2418/udp	# cas
crmsbits	2422/tcp	# CRMSBITS
crmsbits	2422/udp	# CRMSBITS
rnrp		2423/tcp	# RNRP
rnrp		2423/udp	# RNRP
fjitsuappmgr	2425/tcp	# Fujitsu App Manager
fjitsuappmgr	2425/udp	# Fujitsu App Manager
applianttcp	2426/tcp	# Appliant TCP
appliantudp	2426/udp	# Appliant UDP
stgcp		2427/tcp	# Simple telephony Gateway Control Protocol
stgcp		2427/udp	# Simple telephony Gateway Control Protocol
ott		2428/tcp	# One Way Trip Time
ott		2428/udp	# One Way Trip Time
venus		2430/tcp	# venus
venus		2430/udp	# venus
codasrv		2432/tcp	# codasrv
codasrv		2432/udp	# codasrv
optilogic	2435/tcp	# OptiLogic
optilogic	2435/udp	# OptiLogic
topx		2436/tcp	# TOP/X
topx		2436/udp	# TOP/X
unicontrol	2437/tcp	# UniControl
unicontrol	2437/udp	# UniControl
msp		2438/tcp	# MSP
msp		2438/udp	# MSP
sybasedbsynch	2439/tcp	# SybaseDBSynch
sybasedbsynch	2439/udp	# SybaseDBSynch
spearway	2440/tcp	# Spearway Lockers
spearway	2440/udp	# Spearway Lockser
netangel	2442/tcp	# Netangel
netangel	2442/udp	# Netangel
powerclientcsf  2443/tcp	# PowerClient Central Storage Facility
powerclientcsf  2443/udp	# PowerClient Central Storage Facility
btpp2sectrans	2444/tcp	# BT PP2 Sectrans
btpp2sectrans	2444/udp	# BT PP2 Sectrans
dtn1		2445/tcp	# DTN1
dtn1		2445/udp	# DTN1
ovwdb		2447/tcp	# OpenView NNM daemon
ovwdb		2447/udp	# OpenView NNM daemon
hpppssvr	2448/tcp	# hpppsvr
hpppssvr	2448/udp	# hpppsvr
ratl		2449/tcp	# RATL
ratl		2449/udp	# RATL
netadmin	2450/tcp	# netadmin
netadmin	2450/udp	# netadmin
netchat		2451/tcp	# netchat
netchat		2451/udp	# netchat
snifferclient	2452/tcp	# SnifferClient
snifferclient	2452/udp	# SnifferClient
griffin		2458/tcp	# griffin
griffin		2458/udp	# griffin
community	2459/tcp	# Community
community	2459/udp	# Community
qadmifoper	2461/tcp	# qadmifoper
qadmifoper	2461/udp	# qadmifoper
qadmifevent	2462/tcp	# qadmifevent
qadmifevent	2462/udp	# qadmifevent
lbm		2465/tcp	# Load Balance Management
lbm		2465/udp	# Load Balance Management
lbf		2466/tcp	# Load Balance Forwarding
lbf		2466/udp	# Load Balance Forwarding
seaodbc		2471/tcp	# SeaODBC
seaodbc		2471/udp	# SeaODBC
c3		2472/tcp	# C3
c3		2472/udp	# C3
vitalanalysis	2474/tcp	# Vital Analysis
vitalanalysis	2474/udp	# Vital Analysis
lingwood	2480/tcp	# Lingwood's Detail
lingwood	2480/udp	# Lingwood's Detail
giop		2481/tcp	# Oracle GIOP
giop		2481/udp	# Oracle GIOP
ttc		2483/tcp	# Oracle TTC
ttc		2483/udp	# Oracel TTC
netobjects1	2485/tcp	# Net Objects1
netobjects1	2485/udp	# Net Objects1
netobjects2	2486/tcp	# Net Objects2
netobjects2	2486/udp	# Net Objects2
pns		2487/tcp	# Policy Notice Service
pns		2487/udp	# Policy Notice Service
tsilb		2489/tcp	# TSILB
tsilb		2489/udp	# TSILB
groove		2492/tcp	# GROOVE
groove		2492/udp	# GROOVE
dirgis		2496/tcp	# DIRGIS
dirgis		2496/udp	# DIRGIS
quaddb		2497/tcp	# Quad DB
quaddb		2497/udp	# Quad DB
unicontrol	2499/tcp	# UniControl
unicontrol	2499/udp	# UniControl
rtsserv         2500/tcp	# Resource Tracking system server
rtsserv         2500/udp	# Resource Tracking system server
rtsclient       2501/tcp	# Resource Tracking system client
rtsclient       2501/udp	# Resource Tracking system client
wlbs		2504/tcp	# WLBS
wlbs		2504/udp	# WLBS
jbroker		2506/tcp	# jbroker
jbroker		2506/udp	# jbroker
spock		2507/tcp	# spock
spock		2507/udp	# spock
datastore	2508/tcp	# datastore
datastore	2508/udp	# datastore
fjmpss		2509/tcp	# fjmpss
fjmpss		2509/udp	# fjmpss
fjappmgrbulk	2510/tcp	# fjappmgrbulk
fjappmgrbulk	2510/udp	# fjappmgrbulk
metastorm	2511/tcp	# Metastorm
metastorm	2511/udp	# Metastorm
citrixima	2512/tcp	# Citrix IMA
citrixima	2512/udp	# Citrix IMA
citrixadmin	2513/tcp	# Citrix ADMIN
citrixadmin	2513/udp	# Citrix ADMIN
maincontrol	2516/tcp	# Main Control
maincontrol	2516/udp	# Main Control
willy		2518/tcp	# Willy
willy		2518/udp	# Willy
globmsgsvc	2519/tcp	# globmsgsvc
globmsgsvc	2519/udp	# globmsgsvc
pvsw		2520/tcp	# pvsw
pvsw		2520/udp	# pvsw
adaptecmgr	2521/tcp	# Adaptec Manager
adaptecmgr	2521/udp	# Adaptec Manager
windb		2522/tcp	# WinDb
windb		2522/udp	# WinDb
iqserver	2527/tcp	# IQ Server
iqserver	2527/udp	# IQ Server
utsftp		2529/tcp	# UTS FTP
utsftp		2529/udp	# UTS FTP
vrcommerce	2530/tcp	# VR Commerce
vrcommerce	2530/udp	# VR Commerce
ovtopmd		2532/tcp	# OVTOPMD
ovtopmd		2532/udp	# OVTOPMD
snifferserver	2533/tcp	# SnifferServer
snifferserver	2533/udp	# SnifferServer
mdhcp		2535/tcp	# MDHCP
mdhcp		2535/udp	# MDHCP
btpp2audctr1	2536/tcp	# btpp2audctr1
btpp2audctr1	2536/udp	# btpp2audctr1
upgrade		2537/tcp	# Upgrade Protocol
upgrade		2537/udp	# Upgrade Protocol
vsiadmin	2539/tcp	# VSI Admin
vsiadmin	2539/udp	# VSI Admin
lonworks	2540/tcp	# LonWorks
lonworks	2540/udp	# LonWorks
lonworks2	2541/tcp	# LonWorks2
lonworks2	2541/udp	# LonWorks2
davinci		2542/tcp	# daVinci
davinci		2542/udp	# daVinci
reftek		2543/tcp	# REFTEK
reftek		2543/udp	# REFTEK
vytalvaultbrtp	2546/tcp	# vytalvaultbrtp
vytalvaultbrtp	2546/udp	# vytalvaultbrtp
vytalvaultvsmp	2547/tcp	# vytalvaultvsmp
vytalvaultvsmp	2547/udp	# vytalvaultvsmp
vytalvaultpipe	2548/tcp	# vytalvaultpipe
vytalvaultpipe	2548/udp	# vytalvaultpipe
ipass		2549/tcp	# IPASS
ipass		2549/udp	# IPASS
ads		2550/tcp	# ADS
ads		2550/udp	# ADS
efidiningport	2553/tcp	# efidiningport
efidiningport	2553/udp	# efidiningport
pclemultimedia	2558/tcp	# PCLE Multi Media
pclemultimedia	2558/udp	# PCLE Multi Media
lstp		2559/tcp	# LSTP
lstp		2559/udp	# LSTP
labrat		2560/tcp	# labrat
labrat		2560/udp	# labrat
mosaixcc	2561/tcp	# MosaixCC
mosaixcc	2561/udp	# MosaixCC
delibo		2562/tcp	# Delibo
delibo		2562/udp	# Delibo
clp		2567/tcp	# Cisco Line Protocol
clp		2567/udp	# Cisco Line Protocol
spamtrap	2568/tcp	# SPAM TRAP
spamtrap	2568/udp	# SPAM TRAP
sonuscallsig	2569/tcp	# Sonus Call Signal
sonuscallsig	2569/udp	# Sonus Call Signal
cecsvc		2571/tcp	# CECSVC
cecsvc		2571/udp	# CECSVC
ibp		2572/tcp	# IBP
ibp		2572/udp	# IBP
trustestablish	2573/tcp	# Trust Establish
trustestablish	2573/udp	# Trust Establish
hl7		2575/tcp	# HL7
hl7		2575/udp	# HL7
tclprodebugger	2576/tcp	# TCL Pro Debugger
tclprodebugger	2576/udp	# TCL Pro Debugger
scipticslsrvr	2577/tcp	# Scriptics Lsrvr
scipticslsrvr	2577/udp	# Scriptics Lsrvr
mpfoncl		2579/tcp	# mpfoncl
mpfoncl		2579/udp	# mpfoncl
tributary	2580/tcp	# Tributary
tributary	2580/udp	# Tributary
mon		2583/tcp	# MON
mon		2583/udp	# MON
cyaserv		2584/tcp	# cyaserv
cyaserv		2584/udp	# cyaserv
masc		2587/tcp	# MASC
masc		2587/udp	# MASC
privilege	2588/tcp	# Privilege
privilege	2588/udp	# Privilege
idotdist	2590/tcp	# idotdist
idotdist	2590/udp	# idotdist
maytagshuffle	2591/tcp	# Maytag Shuffle
maytagshuffle	2591/udp	# Maytag Shuffle
netrek          2592/tcp	# netrek
netrek          2592/udp	# netrek
dts		2594/tcp	# Data Base Server
dts		2594/udp	# Data Base Server
worldfusion1	2595/tcp	# World Fusion 1
worldfusion1	2595/udp	# World Fusion 1
worldfusion2	2596/tcp	# World Fusion 2
worldfusion2	2596/udp	# World Fusion 2
homesteadglory	2597/tcp	# Homestead Glory
homesteadglory	2597/udp	# Homestead Glory
citriximaclient	2598/tcp	# Citrix MA Client
citriximaclient	2598/udp	# Citrix MA Client
meridiandata	2599/tcp	# Meridian Data
meridiandata	2599/udp	# Meridian Data
hpstgmgr	2600/tcp	# HPSTGMGR
hpstgmgr	2600/udp	# HPSTGMGR
servicemeter	2603/tcp	# Service Meter
servicemeter	2603/udp	# Service Meter
netmon		2606/tcp	# Dell Netmon
netmon		2606/udp	# Dell Netmon
connection	2607/tcp	# Dell Connection
connection	2607/udp	# Dell Connection
lionhead	2611/tcp	# LIONHEAD
lionhead	2611/udp	# LIONHEAD
smntubootstrap	2613/tcp	# SMNTUBootstrap
smntubootstrap	2613/udp	# SMNTUBootstrap
neveroffline	2614/tcp	# Never Off Line
neveroffline	2614/udp	# Never Off Line
firepower	2615/tcp	# firepower
firepower	2615/udp	# firepower
cmadmin		2617/tcp	# Clinical Context Managers
cmadmin		2617/udp	# Clinical Context Managers
bruce		2619/tcp	# bruce
bruce		2619/udp	# bruce
lpsrecommender	2620/tcp	# LPSRecommender
lpsrecommender	2620/udp	# LPSRecommender
dict		2628/tcp	# DICT
dict		2628/udp	# DICT
sitaraserver	2629/tcp	# Sitara Server
sitaraserver	2629/udp	# Sitara Server
sitaramgmt	2630/tcp	# Sitara Management
sitaramgmt	2630/udp	# Sitara Management
sitaradir	2631/tcp	# Sitara Dir
sitaradir	2631/udp	# Sitara Dir
interintelli	2633/tcp	# InterIntelli
interintelli	2633/udp	# InterIntelli
backburner	2635/tcp	# Back Burner
backburner	2635/udp	# Back Burner
solve		2636/tcp	# Solve
solve		2636/udp	# Solve
imdocsvc	2637/tcp	# Import Document Service
imdocsvc	2637/udp	# Import Document Service
sybaseanywhere  2638/tcp	# Sybase Anywhere
sybaseanywhere	2638/udp	# Sybase Anywhere
aminet		2639/tcp	# AMInet
aminet		2639/udp	# AMInet
tragic		2642/tcp	# Tragic
tragic		2642/udp	# Tragic
syncserver	2647/tcp	# SyncServer
syncserver	2647/udp	# SyncServer
upsnotifyprot	2648/tcp	# Upsnotifyprot
upsnotifyprot	2648/udp	# Upsnotifyprot
vpsipport	2649/tcp	# VPSIPPORT
vpsipport	2649/udp	# VPSIPPORT
eristwoguns	2650/tcp	# eristwoguns
eristwoguns	2650/udp	# eristwoguns
ebinsite	2651/tcp	# EBInSite
ebinsite	2651/udp	# EBInSite
interpathpanel	2652/tcp	# InterPathPanel
interpathpanel	2652/udp	# InterPathPanel
sonus		2653/tcp	# Sonus
sonus		2653/udp	# Sonus
unglue		2655/tcp	# UNIX Nt Glue
unglue		2655/udp	# UNIX Nt Glue
kana		2656/tcp	# Kana
kana		2656/udp	# Kana
gcmonitor	2660/tcp	# GC Monitor
gcmonitor	2660/udp	# GC Monitor
olhost		2661/tcp	# OLHOST
olhost		2661/udp	# OLHOST
extensis	2666/tcp	# extensis
extensis	2666/udp	# extensis
toad		2669/tcp	# TOAD
toad		2669/udp	# TOAD
newlixreg	2671/tcp	# newlixreg
newlixreg	2671/udp	# newlixreg
nhserver	2672/tcp	# nhserver
nhserver	2672/udp	# nhserver
firstcall42	2673/tcp	# First Call 42
firstcall42	2673/udp	# First Call 42
ewnn		2674/tcp	# ewnn
ewnn		2674/udp	# ewnn
simslink	2676/tcp	# SIMSLink
simslink	2676/udp	# SIMSLink
gadgetgate1way	2677/tcp	# Gadget Gate 1 Way
gadgetgate1way	2677/udp	# Gadget Gate 1 Way
gadgetgate2way	2678/tcp	# Gadget Gate 2 Way
gadgetgate2way	2678/udp	# Gadget Gate 2 Way
syncserverssl	2679/tcp	# Sync Server SSL
syncserverssl	2679/udp	# Sync Server SSL
mpnjsomb	2681/tcp	# mpnjsomb
mpnjsomb	2681/udp	# mpnjsomb
srsp		2682/tcp	# SRSP
srsp		2682/udp	# SRSP
ncdloadbalance	2683/tcp	# NCDLoadBalance
ncdloadbalance	2683/udp	# NCDLoadBalance
mpnjsosv	2684/tcp	# mpnjsosv
mpnjsosv	2684/udp	# mpnjsosv
mpnjsocl	2685/tcp	# mpnjsocl
mpnjsocl	2685/udp	# mpnjsocl
mpnjsomg	2686/tcp	# mpnjsomg
mpnjsomg	2686/udp	# mpnjsomg
fastlynx	2689/tcp	# FastLynx
fastlynx	2689/udp	# FastLynx
tqdata          2700/tcp	# tqdata
tqdata          2700/udp	# tqdata
piccolo         2787/tcp	# piccolo - Cornerstone Software
piccolo         2787/udp	# piccolo - Cornerstone Software
fryeserv        2788/tcp	# NetWare Loadable Module - Seagate Software
fryeserv        2788/udp	# NetWare Loadable Module - Seagate Software
mao             2908/tcp	# mao
mao             2908/udp	# mao
tdaccess	2910/tcp	# TDAccess
tdaccess	2910/udp	# TDAccess
blockade	2911/tcp	# Blockade
blockade	2911/udp	# Blockade
epicon		2912/tcp	# Epicon
epicon		2912/udp	# Epicon
boosterware	2913/tcp	# Booster Ware
boosterware	2913/udp	# Booster Ware
gamelobby	2914/tcp	# Game Lobby
gamelobby	2914/udp	# Game Lobby
tksocket	2915/tcp	# TK Socket
tksocket	2915/udp	# TK Socket
kastenchasepad	2918/tcp	# Kasten Chase Pad
kastenchasepad	2918/udp	# Kasten Chase Pad
netclip		2971/tcp	# Net Clip
netclip		2971/udp	# Net Clip
svnetworks	2973/tcp	# SV Networks
svnetworks	2973/udp	# SV Networks
signal		2974/tcp	# Signal
signal		2974/udp	# Signal
fjmpcm		2975/tcp	# Fujitsu Configuration Management Service
fjmpcm		2975/udp	# Fujitsu Configuration Management Service
realsecure	2998/tcp	# Real Secure
realsecure	2998/udp	# Real Secure
hbci            3000/tcp	# HBCI
hbci            3000/udp	# HBCI
cgms		3003/tcp	# CGMS
cgms		3003/udp	# CGMS
csoftragent	3004/tcp	# Csoft Agent
csoftragent	3004/udp	# Csoft Agent
geniuslm	3005/tcp	# Genius License Manager
geniuslm	3005/udp	# Genius License Manager
lotusmtap	3007/tcp	# Lotus Mail Tracking Agent Protocol
lotusmtap	3007/udp	# Lotus Mail Tracking Agent Protocol
gw              3010/tcp	# Telerate Workstation
twsdss		3012/tcp	# Trusted Web Client
twsdss		3012/udp	# Trusted Web Client
gilatskysurfer	3013/tcp	# Gilat Sky Surfer
gilatskysurfer	3013/udp	# Gilat Sky Surfer
cifs		3020/tcp	# CIFS
cifs		3020/udp	# CIFS
agriserver	3021/tcp	# AGRI Server
agriserver	3021/udp	# AGRI Server
csregagent	3022/tcp	# CSREGAGENT
csregagent	3022/udp	# CSREGAGENT
magicnotes	3023/tcp	# magicnotes
magicnotes	3023/udp	# magicnotes
agentvu		3031/tcp	# AgentVU
agentvu		3031/udp	# AgentVU
pdb		3033/tcp	# PDB
pdb		3033/udp	# PDB
cogitate	3039/tcp	# Cogitate, Inc.
cogitate	3039/udp	# Cogitate, Inc.
journee		3042/tcp	# journee
journee		3042/udp	# journee
brp		3043/tcp	# BRP
brp		3043/udp	# BRP
responsenet	3045/tcp	# ResponseNet
responsenet	3045/udp	# ResponseNet
hlserver        3047/tcp	# Fast Security HL Server
hlserver        3047/udp	# Fast Security HL Server
pctrader        3048/tcp	# Sierra Net PC Trader
pctrader        3048/udp	# Sierra Net PC Trader
nsws		3049/tcp	# NSWS
nsws		3049/udp	# NSWS
interserver	3060/tcp	# interserver
interserver	3060/udp	# interserver
cardbox		3105/tcp	# Cardbox
cardbox		3105/udp	# Cardbox
icpv2		3130/tcp	# ICPv2
icpv2		3130/udp	# ICPv2
netbookmark	3131/tcp	# Net Book Mark
netbookmark	3131/udp	# Net Book Mark
vmodem          3141/tcp	# VMODEM
vmodem          3141/udp	# VMODEM
seaview		3143/tcp	# Sea View
seaview		3143/udp	# Sea View
tarantella	3144/tcp	# Tarantella
tarantella	3144/udp	# Tarantella
rfio		3147/tcp	# RFIO
rfio		3147/udp	# RFIO
ccmail          3264/tcp	# cc:mail/lotus
ccmail          3264/udp	# cc:mail/lotus
verismart	3270/tcp	# Verismart
verismart	3270/udp	# Verismart
sxmp		3273/tcp	# Simple Extensible Multiplexed Protocol
sxmp		3273/udp	# Simple Extensible Multiplexed Protocol
samd		3275/tcp	# SAMD
samd		3275/udp	# SAMD
lkcmserver	3278/tcp	# LKCM Server
lkcmserver	3278/udp	# LKCM Server
admind		3279/tcp	# admind
admind		3279/udp	# admind
sysopt		3281/tcp	# SYSOPT
sysopt 		3281/udp	# SYSOPT
datusorb	3282/tcp	# Datusorb
datusorb	3282/udp	# Datusorb
plato		3285/tcp	# Plato
plato		3285/udp	# Plato
directvdata	3287/tcp	# DIRECTVDATA
directvdata	3287/udp	# DIRECTVDATA
cops		3288/tcp	# COPS
cops 		3288/udp	# COPS
enpc		3289/tcp	# ENPC
enpc		3289/udp	# ENPC
dyniplookup	3295/tcp	# Dynamic IP Lookup
dyniplookup	3295/udp	# Dynamic IP Lookup
transview	3298/tcp	# Transview
transview	3298/udp	# Transview
pdrncs		3299/tcp	# pdrncs
pdrncs		3299/udp	# pdrncs
bmcpatrolagent	3300/tcp	# BMC Patrol Agent
bmcpatrolagent  3300/udp	# BMC Patrol Agent
bmcpatrolrnvu	3301/tcp	# BMC Patrol Rendezvous
bmcpatrolrnvu   3301/udp	# BMC Patrol Rendezvous
mysql		3306/tcp	# MySQL
mysql		3306/udp	# MySQL
uorb		3313/tcp	# Unify Object Broker
uorb		3313/udp	# Unify Object Broker
uohost		3314/tcp	# Unify Object Host
uohost		3314/udp	# Unify Object Host
cdid		3315/tcp	# CDID
cdid		3315/udp	# CDID
vsaiport	3317/tcp	# VSAI PORT
vsaiport	3317/udp	# VSAI PORT
ssrip		3318/tcp	# Swith to Swith Routing Information Protocol
ssrip		3318/udp	# Swith to Swith Routing Information Protocol
officelink2000	3320/tcp	# Office Link 2000
officelink2000	3320/udp	# Office Link 2000
vnsstr		3321/tcp	# VNSSTR
vnsstr		3321/udp	# VNSSTR
sftu		3326/tcp	# SFTU
sftu		3326/udp	# SFTU
bbars		3327/tcp	# BBARS
bbars		3327/udp	# BBARS
egptlm		3328/tcp	# Eaglepoint License Manager
egptlm		3328/udp	# Eaglepoint License Manager
webtie		3342/tcp	# WebTIE
webtie		3342/udp	# WebTIE
influence	3345/tcp	# Influence
influence	3345/udp	# Influence
trnsprntproxy	3346/tcp	# Trnsprnt Proxy
trnsprntproxy   3346/udp	# Trnsprnt Proxy
chevinservices	3349/tcp	# Chevin Services
chevinservices  3349/udp	# Chevin Services
findviatv	3350/tcp	# FINDVIATV
findviatv	3350/udp	# FINDVIATV
btrieve		3351/tcp	# BTRIEVE
btrieve		3351/udp	# BTRIEVE
ssql		3352/tcp	# SSQL
ssql		3352/udp	# SSQL
fatpipe		3353/tcp	# FATPIPE
fatpipe		3353/udp	# FATPIPE
suitjd		3354/tcp	# SUITJD
suitjd		3354/udp	# SUITJD
upnotifyps	3356/tcp	# UPNOTIFYPS
upnotifyps	3356/udp	# UPNOTIFYPS
mpsysrmsvr	3358/tcp	# Mp Sys Rmsvr
mpsysrmsvr	3358/udp	# Mp Sys Rmsvr
creativeserver	3364/tcp	# Creative Server
creativeserver	3364/udp	# Creative Server
contentserver	3365/tcp	# Content Server
contentserver	3365/udp	# Content Server
creativepartnr	3366/tcp	# Creative Partner
creativepartnr	3366/udp	# Creative Partner
tip2		3372/tcp	# TIP 2
tip2		3372/udp	# TIP 2
cdborker	3376/tcp	# CD Broker
cdbroker	3376/udp	# CD Broker
wsicopy		3378/tcp	# WSICOPY
wsicopy		3378/udp	# WSICOPY
socorfs		3379/tcp	# SOCORFS
socorfs		3379/udp	# SOCORFS
geneous		3381/tcp	# Geneous
geneous		3381/udp	# Geneous
qnxnetman	3385/tcp	# qnxnetman
qnxnetman	3385/udp	# qnxnetman
backroomnet	3387/tcp	# Back Room Net
backroomnet	3387/udp	# Back Room Net
cbserver	3388/tcp	# CB Server
cbserver	3388/udp	# CB Server
dsc		3390/tcp	# Distributed Service Coordinator
dsc		3390/udp	# Distributed Service Coordinator
savant		3391/tcp	# SAVANT
savant		3391/udp	# SAVANT
mercantile	3398/tcp	# Mercantile
mercantile	3398/udp	# Mercantile
csms		3399/tcp	# CSMS
csms		3399/udp	# CSMS
csms2		3400/tcp	# CSMS2
csms2		3400/udp	# CSMS2
bmap            3421/tcp	# Bull Apprise portmapper
bmap            3421/udp	# Bull Apprise portmapper
mira            3454/tcp	# Apple Remote Access Protocol
prsvp           3455/tcp	# RSVP Port
prsvp           3455/udp	# RSVP Port
vat             3456/tcp	# VAT default data
vat             3456/udp	# VAT default data
d3winosfi	3458/tcp	# D3WinOsfi
d3winosfi	3458/udp	# DsWinOSFI
integral	3459/tcp	# Integral
integral 	3459/udp	# Integral
workflow	3466/tcp	# WORKFLOW
workflow	3466/udp	# WORKFLOW
rcst		3467/tcp	# RCST
rcst		3467/udp	# RCST
ttcmremotectrl	3468/tcp	# TTCM Remote Controll
ttcmremotectrl	3468/udp	# TTCM Remote Controll
pluribus	3469/tcp	# Pluribus
pluribus	3469/udp	# Pluribus
jt400		3470/tcp	# jt400
jt400		3470/udp	# jt400
watcomdebug	3563/tcp	# Watcom Debug
watcomdebug	3563/udp	# Watcom Debug
harlequinorb	3672/tcp	# harlequinorb
harlequinorb	3672/udp	# harlequinorb
centerline	3987/tcp	# Centerline
centerline	3987/udp	# Centerline
terabase	4000/tcp	# Terabase
terabase	4000/udp	# Terabase
newoak		4001/tcp	# NewOak
newoak		4001/udp	# NewOak
netcheque       4008/tcp	# NetCheque accounting
netcheque       4008/udp	# NetCheque accounting
altserviceboot	4011/tcp	# Alternate Service Boot
altserviceboot	4011/udp	# Alternate Service Boot
taiclock	4014/tcp	# TAICLOCK
taiclock	4014/udp	# TAICLOCK
bre 		4096/tcp	# BRE (Bridge Relay Element)
bre 		4096/udp	# BRE (Bridge Relay Element)
patrolview	4097/tcp	# Patrol View
patrolview	4097/udp	# Patrol View
drmsfsd		4098/tcp	# drmsfsd
drmsfsd		4098/udp	# drmsfsd
dpcp		4099/tcp	# DPCP
dpcp		4099/udp	# DPCP
oirtgsvc	4141/tcp	# Workflow Server
oirtgsvc	4141/udp	# Workflow Server
oidocsvc	4142/tcp	# Document Server
oidocsvc	4142/udp	# Document Server
oidsr		4143/tcp	# Document Replication
oidsr		4143/udp	# Document Replication
corelccam	4300/tcp	# Corel CCam
corelccam	4300/udp	# Corel CCam
rwhois          4321/tcp	# Remote Who Is
rwhois          4321/udp	# Remote Who Is
unicall         4343/tcp	# UNICALL
unicall         4343/udp	# UNICALL
vinainstall 	4344/tcp	# VinaInstall
vinainstall	4344/udp	# VinaInstall
elanlm		4346/tcp	# ELAN LM
elanlm		4346/udp	# ELAN LM
lansurveyor	4347/tcp	# LAN Surveyor
lansurveyor	4347/udp	# LAN Surveyor
itose		4348/tcp	# ITOSE
itose		4348/udp	# ITOSE
fsportmap	4349/tcp	# File System Port Map
fsportmap	4349/udp	# File System Port Map
saris		4442/tcp	# Saris
saris		4442/udp	# Saris
pharos		4443/tcp	# Pharos
pharos		4443/udp	# Pharos
krb524          4444/tcp	# KRB524
krb524          4444/udp	# KRB524
upnotifyp	4445/tcp	# UPNOTIFYP
upnotifyp 	4445/udp	# UPNOTIFYP
privatewire     4449/tcp	# PrivateWire
privatewire     4449/udp	# PrivateWire
camp		4450/tcp	# Camp
camp		4450/udp	# Camp
ctisystemmsg    4451/tcp	# CTI System Msg
ctisystemmsg    4451/udp	# CTI System Msg
ctiprogramload  4452/tcp	# CTI Program Load
ctiprogramload  4452/udp	# CTI Program Load
nssalertmgr 	4453/tcp	# NSS Alert Manager
nssalertmgr	4453/udp	# NSS Alert Manager
nssagentmgr	4454/tcp	# NSS Agent Manager
nssagentmgr 	4454/udp	# NSS Agent Manager
prRegister	4457/tcp	# PR Register
prRegister	4457/udp	# PR Register
worldscores	4545/tcp	# WorldScores
worldscores	4545/udp	# WorldScores
piranha1	4600/tcp	# Piranha1
piranha1	4600/udp	# Piranha1
piranha2	4601/tcp	# Piranha2
piranha2	4601/udp	# Piranha2
rfa             4672/tcp	# remote file access server
rfa             4672/udp	# remote file access server
iims		4800/tcp	# Icona Instant Messenging System
iims		4800/udp	# Icona Instant Messenging System
iwec		4801/tcp	# Icona Web Embedded Chat
iwec		4801/udp	# Icona Web Embedded Chat
ilss		4802/tcp	# Icona License System Server
ilss		4802/udp	# Icona License System Server
htcp		4827/tcp	# HTCP
htcp		4827/udp	# HTCP
phrelay		4868/tcp	# Photon Relay
phrelay		4868/udp	# Photon Relay
phrelaydbg	4869/tcp	# Photon Relay Debug
phrelaydbg	4869/udp	# Photon Relay Debug
abbs		4885/tcp	# ABBS
abbs		4885/udp	# ABBS
rfe             5002/tcp	# radio free ethernet
rfe             5002/udp	# radio free ethernet
telelpathstart  5010/tcp	# TelepathStart
telelpathstart  5010/udp	# TelepathStart
telelpathattack 5011/tcp	# TelepathAttack
telelpathattack 5011/udp	# TelepathAttack
asnaacceler8db	5042/tcp	# asnaacceler8db
asnaacceler8db	5042/udp	# asnaacceler8db
mmcc            5050/tcp	# multimedia conference control tool
mmcc            5050/udp	# multimedia conference control tool
sip		5060/tcp	# SIP
sip		5060/udp	# SIP
atmp            5150/tcp	# Ascend Tunnel Management Protocol
atmp            5150/udp	# Ascend Tunnel Management Protocol
aol             5190/tcp	# America-Online
aol             5190/udp	# America-Online
padl2sim	5236/tcp
padl2sim	5236/udp
pk		5272/tcp	# PK
pk		5272/udp	# PK
cfengine 	5308/tcp	# CFengine
cfengine	5308/udp	# CFengine
jprinter	5309/tcp	# J Printer
jprinter  	5309/udp	# J Printer
outlaws		5310/tcp	# Outlaws
outlaws		5310/udp	# Outlaws
tmlogin		5311/tcp	# TM Login
tmlogin		5311/udp	# TM Login
excerpt		5400/tcp	# Excerpt Search
excerpt		5400/udp	# Excerpt Search
excerpts	5401/tcp	# Excerpt Search Secure
excerpts	5401/udp	# Excerpt Search Secure
mftp		5402/tcp	# MFTP
mftp		5402/udp	# MFTP
netsupport	5405/tcp	# NetSupport
netsupport	5405/udp	# NetSupport
actnet		5411/tcp	# ActNet
actnet		5411/udp	# ActNet
continuus	5412/tcp	# Continuus
continuus	5412/udp	# Continuus
wwiotalk	5413/tcp	# WWIOTALK
wwiotalk	5413/udp	# WWIOTALK
statusd		5414/tcp	# StatusD
statusd		5414/udp	# StatusD
mcntp		5418/tcp	# MCNTP
mcntp		5418/udp	# MCNTP
esinstall	5599/tcp	# Enterprise Security Remote Install
esinstall	5599/udp	# Enterprise Security Remote Install
esmmanager	5600/tcp	# Enterprise Security Manager
esmmanager	5600/udp	# Enterprise Security Manager
esmagent	5601/tcp	# Enterprise Security Agent
esmagent	5601/udp	# Enterprise Security Agent
pcanywheredata  5631/tcp	# pcANYWHEREdata
pcanywheredata  5631/udp	# pcANYWHEREdata
pcanywherestat  5632/tcp	# pcANYWHEREstat
pcanywherestat  5632/udp	# pcANYWHEREstat
rrac            5678/tcp	# Remote Replication Agent Connection
rrac            5678/udp	# Remote Replication Agent Connection
dccm            5679/tcp	# Direct Cable Connect Manager
dccm            5679/udp	# Direct Cable Connect Manager
proshareaudio   5713/tcp	# proshare conf audio
proshareaudio   5713/udp	# proshare conf audio
prosharevideo   5714/tcp	# proshare conf video
prosharevideo   5714/udp	# proshare conf video
prosharedata    5715/tcp	# proshare conf data
prosharedata    5715/udp	# proshare conf data
prosharerequest 5716/tcp	# proshare conf request
prosharerequest 5716/udp	# proshare conf request
prosharenotify  5717/tcp	# proshare conf notify
prosharenotify  5717/udp	# proshare conf notify
openmail        5729/tcp	# Openmail User Agent Layer
openmail        5729/udp	# Openmail User Agent Layer
openmailg       5755/tcp	# OpenMail Desk Gateway server
openmailg       5755/udp	# OpenMail Desk Gateway server
x500ms          5757/tcp	# OpenMail X.500 Directory Server
x500ms          5757/udp	# OpenMail X.500 Directory Server
openmailns      5766/tcp	# OpenMail NewMail Server
openmailns      5766/udp	# OpenMail NewMail Server
openmailpxy	5768/tcp	# OpenMail CMTS Server
openmailpxy	5768/udp	# OpenMail CMTS Server
softcm          6110/tcp	# HP SoftBench CM
softcm          6110/udp	# HP SoftBench CM
spc             6111/tcp	# HP SoftBench Sub-Process Control
spc             6111/udp	# HP SoftBench Sub-Process Control
dtspcd          6112/tcp	# dtspcd
dtspcd          6112/udp	# dtspcd
crip            6253/tcp	# CRIP
crip            6253/udp	# CRIP
boks		6500/tcp	# BoKS Master
boks		6500/udp	# BoKS Master
xdsxdm		6558/tcp
xdsxdm		6558/udp
hnmp		6790/tcp	# HNMP
hnmp		6790/udp	# HNMP
jmact3		6961/tcp	# JMACT3
jmact3		6961/udp	# JMACT3
jmevt2		6962/tcp	# jmevt2
jmevt2		6962/udp	# jmevt2
swismgr1	6963/tcp	# swismgr1
swismgr1	6963/udp	# swismgr1
swismgr2	6964/tcp	# swismgr2
swismgr2	6964/udp	# swismgr2
swistrap	6965/tcp	# swistrap
swistrap	6965/udp	# swistrap
swispol		6966/tcp	# swispol
swispol		6966/udp	# swispol
acmsoda         6969/tcp	# acmsoda
acmsoda         6969/udp	# acmsoda
dpserve		7020/tcp	# DP Serve
dpserve		7020/udp	# DP Serve
dpserveadmin	7021/tcp	# DP Serve Admin
dpserveadmin	7021/udp	# DP Serve Admin
raudio		7070/tcp	@ Real Audio
arcp		7070/tcp	# ARCP
arcp		7070/udp	# ARCP
clutild		7174/tcp	# Clutild
clutild         7174/udp	# Clutild
fodms           7200/tcp	# FODMS FLIP
fodms           7200/udp	# FODMS FLIP
dlip            7201/tcp	# DLIP
dlip            7201/udp	# DLIP
winqedit        7395/tcp	# winqedit
winqedit        7395/udp	# winqedit
pmdmgr		7426/tcp	# OpenView DM Postmaster Manager
pmdmgr 		7426/udp	# OpenView DM Postmaster Manager
oveadmgr	7427/tcp	# OpenView DM Event Agent Manager
oveadmgr	7427/udp	# OpenView DM Event Agent Manager
ovladmgr	7428/tcp	# OpenView DM Log Agent Manager
ovladmgr	7428/udp	# OpenView DM Log Agent Manager
xmpv7		7430/tcp	# OpenView DM xmpv7 api pipe
xmpv7		7430/udp	# OpenView DM xmpv7 api pipe
pmd		7431/tcp	# OpenView DM ovc/xmpv3 api pipe
pmd		7431/udp	# OpenView DM ovc/xmpv3 api pipe
faximum		7437/tcp	# Faximum
faximum		7437/udp	# Faximum
pmdfmgt		7633/tcp	# PMDF Management
pmdfmgt		7633/udp	# PMDF Management
cbt             7777/tcp	# cbt
cbt             7777/udp	# cbt
supercell	7967/tcp	# Supercell
supercell	7967/udp	# Supercell
irdmi2          7999/tcp	# iRDMI2
irdmi2          7999/udp	# iRDMI2
irdmi           8000/tcp	# iRDMI
irdmi           8000/udp	# iRDMI
mindprint	8033/tcp	# MindPrint
mindprint	8033/udp	# MindPrint
trivnet1	8200/tcp	# TRIVNET
trivnet1	8200/udp	# TRIVNET
trivnet2	8201/tcp	# TRIVNET
trivnet2	8201/udp	# TRIVNET
cvd		8400/tcp	# cvd
cvd		8400/udp	# cvd
sabarsd		8401/tcp	# sabarsd
sabarsd		8401/udp	# sabarsd
abarsd		8402/tcp	# abarsd
abarsd		8402/udp	# abarsd
admind		8403/tcp	# admind
admind		8403/udp	# admind
npmp            8450/tcp	# npmp
npmp            8450/udp	# npmp
vp2p            8473/tcp	# Virtual Point to Point
vp2p            8473/udp	# Virtual Point to Point
ibus		8733/tcp	# iBus
ibus		8733/udp	# iBus
cslistener      9000/tcp	# CSlistener
cslistener      9000/udp	# CSlistener
sctp		9006/tcp	# SCTP
sctp		9006/udp	# SCTP
websm		9090/tcp	# WebSM
websm		9090/udp	# WebSM
guibase		9321/tcp	# guibase
guibase		9321/udp	# guibase
mpidcmgr	9343/tcp	# MpIdcMgr
mpidcmgr	9343/udp	# MpIdcMgr
fjdmimgr	9374/tcp	# fjdmimgr
fjdmimgr	9374/udp	# fjdmimgr
fjinvmgr	9396/tcp	# fjinvmgr
fjinvmgr	9396/udp	# fjinvmgr
mpidcagt	9397/tcp	# MpIdcAgt
mpidcagt	9397/udp	# MpIdcAgt
ismserver	9500/tcp	# ismserver
ismserver	9500/udp	# ismserver
man		9535/tcp
man		9535/udp
msgsys		9594/tcp	# Message System
msgsys		9594/udp	# Message System
pds		9595/tcp	# Ping Discovery Service
pds		9595/udp	# Ping Discovery Service
sd              9876/tcp	# Session Director
sd              9876/udp	# Session Director
monkeycom	9898/tcp	# MonkeyCom
monkeycom	9898/udp	# MonkeyCom
palace          9992/tcp	# Palace
palace          9992/udp	# Palace
palace          9993/tcp	# Palace
palace          9993/udp	# Palace
palace          9994/tcp	# Palace
palace          9994/udp	# Palace
palace          9995/tcp	# Palace
palace          9995/udp	# Palace
palace          9996/tcp	# Palace
palace          9996/udp	# Palace
palace		9997/tcp	# Palace
palace		9997/udp	# Palace
distinct32      9998/tcp	# Distinct32
distinct32      9998/udp	# Distinct32
distinct        9999/tcp	# distinct
distinct        9999/udp	# distinct
ndmp            10000/tcp	# Network Data Management Protocol
ndmp            10000/udp	# Network Data Management Protocol
amanda		10080/tcp	# Amanda
amanda		10080/udp	# Amanda
blocks		10288/tcp	# Blocks
blocks		10288/udp	# Blocks
irisa		11000/tcp	# IRISA
irisa		11000/udp	# IRISA
metasys		11001/tcp	# Metasys
metasys		11001/udp	# Metasys
vce		11111/tcp	# Viral Computing Environment (VCE)
vce		11111/udp	# Viral Computing Environment (VCE)
entextxid	12000/tcp	# IBM Enterprise Extender SNA XID Exchange
entextxid	12000/udp	# IBM Enterprise Extender SNA XID Exchange
entextnetwk	12001/tcp	# IBM Enterprise Extender SNA COS Network Priority
entextnetwk	12001/udp	# IBM Enterprise Extender SNA COS Network Priority
entexthigh	12002/tcp	# IBM Enterprise Extender SNA COS High Priority
entexthigh	12002/udp	# IBM Enterprise Extender SNA COS High Priority
entextmed	12003/tcp	# IBM Enterprise Extender SNA COS Medium Priority
entextmed	12003/udp	# IBM Enterprise Extender SNA COS Medium Priority
entextlow	12004/tcp	# IBM Enterprise Extender SNA COS Low Priority
entextlow	12004/udp	# IBM Enterprise Extender SNA COS Low Priority
tsaf            12753/tcp	# tsaf port
tsaf            12753/udp	# tsaf port
bprd		13720/tcp	# BPRD Protocol (VERITAS NetBackup)
bprd		13720/udp	# BPRD Protocol (VERITAS NetBackup)
bpbrm		13721/tcp	# BPBRM Protocol (VERITAS NetBackup)
bpbrm		13721/udp	# BPBRM Protocol (VERITAS NetBackup)
bpcd		13782/tcp	# VERITAS NetBackup
bpcd		13782/udp	# VERITAS NetBackup
vopied		13783/tcp	# VOPIED Protocol
vopied		13783/udp	# VOPIED Protocol
netserialext1	16360/tcp	# netserialext1
netserialext1	16360/udp	# netserialext1
netserialext2	16361/tcp	# netserialext2
netserialext2	16361/udp	# netserialext2
netserialext3	16367/tcp	# netserialext3
netserialext3	16367/udp	# netserialext3
netserialext4	16368/tcp	# netserialext4
netserialext4   16368/udp	# netserialext4
chipper		17219/tcp	# Chipper
chipper		17219/udp	# Chipper
biimenu         18000/tcp	# Beckman Instruments, Inc.
biimenu         18000/udp	# Beckman Instruments, Inc.
jcp		19541/tcp	# JCP Client
jcp		19541/udp	# JCP Client
dnp		20000/tcp	# DNP
dnp		20000/udp	# DNP
track		20670/tcp	# Track
track		20670/udp	# Track
webphone        21845/tcp	# webphone
webphone        21845/udp	# webphone
wnn6            22273/tcp	# wnn6
wnn6            22273/udp	# wnn6
quake           26000/tcp	# quake
quake           26000/udp	# quake
traceroute	33434/tcp	# traceroute use
traceroute	33434/udp	# traceroute use
kastenxpipe	36865/tcp	# KastenX Pipe
kastenxpipe	36865/udp	# KastenX Pipe
eba		45678/tcp	# EBA PRISE
eba		45678/udp	# EBA PRISE
dbbrowse        47557/tcp	# Databeam Corporation
dbbrowse        47557/udp	# Databeam Corporation
directplaysrvr	47624/tcp	# Direct Play Server
directplaysrvr  47624/udp	# Direct Play Server
ap              47806/tcp	# ALC Protocol
ap              47806/udp	# ALC Protocol
bacnet          47808/tcp	# Building Automation and Control Networks
bacnet          47808/udp	# Building Automation and Control Networks
nimcontroller	48000/tcp	# Nimbus Controller
nimcontroller	48000/udp	# Nimbus Controller
nimspooler	48001/tcp	# Nimbus Spooler
nimspooler	48001/udp	# Nimbus Spooler
nimhub		48002/tcp	# Nimbus Hub
nimhub		48002/udp	# Nimbus Hub
nimgtw		48003/tcp	# Nimbus Gateway
nimgtw		48003/udp	# Nimbus Gateway
OpenPOWER on IntegriCloud