summaryrefslogtreecommitdiffstats
path: root/nmap-rpc
blob: 24f413dca84fcef473572713554a788ec552b31f (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
# $Id$ -*- mode: fundamental; -*-
#
# /***************************************************************************
# * nmap-rpc -- Known RPC numbers.  Nmap uses them for RPC grinding.        *
# * Thanks to Eilon Gishri, Vik Bajaj, Fyodor, and other members of         *
# * the Nmap community for contributing entries.  Someday we might          *
# * reorder this with the most popular services first to make scans         *
# * faster.                                                                 *
# ***************************************************************************/
#
# This collection of data is (C) 1996-2022 by Nmap Software LLC.  It
# is distributed under the Nmap Public Source license as provided in
# the LICENSE file of the source distribution or at
# https://nmap.org/npsl/.  Note that this free license does not allow
# incorporation of Nmap or its data files within proprietary
# software. We sell a separate Nmap OEM for that as described
# (including pricing) at https://nmap.org/npsl/.

# Master RPC program number data base (/etc/rpc).
#
#
# Program numbers are assigned in groups of 0x20000000 (decimal 536870912)
# according to the following chart:
#
#	       0x0 - 0x1fffffff		Defined by IANA
#	0x20000000 - 0x3fffffff		Defined by user
#	0x40000000 - 0x5fffffff		Transient
#	0x60000000 - 0x7fffffff		Reserved
#	0x80000000 - 0x9fffffff		Reserved
#	0xa0000000 - 0xbfffffff		Reserved
#	0xc0000000 - 0xdfffffff		Reserved
#	0xe0000000 - 0xffffffff		Reserved
#
# To obtain SUN Remote Procedure Call (RPC) numbers send an e-mail
# request to "rpc@sun.com".
#

rpcbind		100000	portmap sunrpc rpcbind pmapprog	# portmapper
rstatd		100001	rstat rup perfmeter rstat_svc rstatprog	# remote stats
rusersd		100002	rusers rusersprog	# remote users
nfs		100003	nfsprog nfsd	# nfs
ypserv		100004	ypprog	# yellow pages (NIS)
mountd		100005	mount showmount mountprog	# mount demon
remote_dbx	100006	dbxprog	# remote dbx
ypbind		100007	ypbindprog	# yp binder (NIS)
walld		100008	rwall shutdown wall	# shutdown msg
yppasswdd	100009	yppasswd yppasswdprog	# yppasswd server
etherstatd	100010	etherstat etherstatprog	# ether stats
rquotad		100011	rquotaprog quota rquota	# disk quotas
sprayd		100012	spray	# spray packets
3270_mapper	100013	ibm3270prog	# 3270 mapper
rje_mapper	100014	ibmrjeprog	# Remote job entry mapping service.
selection_svc	100015	selnsvc selnsvcprog	# selection service
database_svc	100016	dbsessionmgr unify netdbms dbms rdatabaseprog	# remote database access
rexd		100017	rex remote_exec rexec	# remote execution
alis		100018	alice office_auto aliceprog	# Alice Office Automation
sched		100019	schedprog	# scheduling service
llockmgr	100020	lockprog	# local lock manager
nlockmgr	100021	netlockprog	# network lock manager
x25.inr		100022	x25prog	# x.25 inr protocol
statmon		100023	statmon1	# status monitor 1
status		100024	statd rpc.statd statmon2	# Status monitor
select_lib	100025	selnlibprog	# selection library
bootparam	100026	# boot parameters service
mazewars	100027	mazeprog	# Mazewars game
ypupdated	100028	ypupdate ypupdateprog	# yp update (NIS)
keyserv		100029	keyserver keyserveprog	# key server
securelogin	100030	securecmdprog	# secure login
nfs_fwdlnit	100031	netfwdiprog	# NFS network forwarding service.
nfs_fwdtrns	100032	netfwdtprog	# NFS forwarding transmitter
sunlink_mapper	100033	sunlinkmap	# sunlink MAP
net_monitor	100034	netmonprog	# network monitor
database	100035	dbaseprog	# Lightweight database
passwd_auth	100036	pwdauthprog	# password authorization
tfsd		100037	tfsprog	# Translucent file service.
nsed		100038	nseprog	# nse server
nsemntd		100039	nse_activate_prog	# nse activate daemon
pfs_mountd	100040	sunview_help_prog	# sunview help
pnp_prog	100041	# pnp install
ipaddr_alloc_prog	100042	# ip addr allocator
showfhd		100043	showfh filehandle	# show filehandle
mvsmount	100044	mvsnfsprog	# MVSmount daemon (for mvslogin mvslogout)
rem_fileop_user_prog	100045	# remote user file operations
batch_ypupdateprog	100046	# batched ypupdate
nem_prog	100047	# network execution mgr
raytrace_rd_prog	100048	# raytrace/mandelbrot remote daemon
raytrace_ld_prog	100049	# raytrace/mandelbrot local daemon
rem_fileop_group_prog	100050	# remote group file operations
rem_fileop_system_prog	100051	# remote system file operations
rem_system_role_prog	100052	# remote system role operations
ioadmd		100055	rpc.ioadmd	# ioadmd
filemerge_prog	100056	# filemerge
namebind_prog	100057	# Name Binding Program
njeprog		100058	# sunlink NJE
showattrd	100059	mvsattrprog	# DFSMS/MVS NFS server
rmgrprog	100060	# SunAccess/SunLink resource manager
uidallocprog	100061	# UID allocation service
NETlicense	100062	lbserverprog	# license broker
lbbinderprog	100063	# NETlicense client binder
gidallocprog	100064	# GID allocation service
sunisamd	100065	sunisamprog	# SunIsam
debug_svc	100066	dbsrv rdbsrvprog	# Remote Debug Server
cmsd		100068	rpc.cmsd dtcalendar cm	# Network Calendar Program
ypxfrd		100069	rpc.ypxfrd ypxfr	# ypxfrd
timedprog	100070	# rpc.timed
bugtraqd	100071	# bugtraqd
schedroom	100075	# Sun tool for scheduling rooms
authnegotiate_prog	100076	# Authentication Negotiation
attribute_prog	100077	# Database manipulation
kerbd		100078	kerbprog	# Kerberos authentication daemon
rpc.operd	100080	opermsg autodump_prog	# Sun Online-Backup
event_svc	100081	# Event protocol
bugtraq_qd	100082	# bugtraq_qd
ttdbserverd	100083	rpc.ttdbserverd ttdbserverd ttdbserver tooltalk database service	# ToolTalk and Link Service Project
admind		100087	adm_agent	# Jupiter Administration
libdsd/dsd	100090	# Dual Disk support
remote_activation_svc	100092	# ToolTalk
host_checking	100093	# Consulting Services
searchit	100095	# Roger Riggs
mesgtool	100096	# Robert Allen
networked	100098	version of CS5	# SISU
autofsd		100099	autofsd autofs	# NFS Automount File System
msgboard	100100
event		100101	na.event netmgt_eventd_prog	# SunNet Manager
logger		100102	na.logger netmgt_netlogd_prog	# SunNet Manager
netmgt_topology_prog	100103	# topology display manager [topology]
sync		100104	na.sync netmgt_syncstatd_prog	# syncstat agent [syncstatd]
diskinfo	100105	na.diskinfo netmgt_ippktd_prog	# SunNet Manager
iostat		100106	na.iostat netmgt_configd_prog	# netmgt config agent [configd]
hostperf	100107	na.hostperf netmgt_restatd_prog	# restat agent [restatd]
netmgt_lprstatd_prog	100108	# lpq agent [lprstatd]
activity	100109	na.activity netmgt_mgtlogd_prog	# SunNet Manager
db_mgr		100110	netmgt_proxydni_prog	# proxy DECnet NCP agent [proxydni]
lpstat		100111	na.lpstat netmgt_mapperd_prog	# SunNet Manager
hostmem		100112	na.hostmem netmgt_netstatd_prog	# netstat agent [netstatd]
sample		100113	na.sample netmgt_sampled_prog	# sample netmgt agent [sampled]
x25		100114	na.x25 netmgt_vcstatd_prog	# X.25 statistics agent [vcstatd]
ping		100115	na.ping
rpcnfs		100116	na.rpcnfs
hostif		100117	na.hostif
etherif		100118	na.etherif
ippath		100119	na.ippath	# SunNet Manager
iproutes	100120	na.iproutes
layers		100121	na.layers
snmp		100122	na.snmp snmp-cmc snmp-synoptics snmp-unisys snmp-utk
traffic		100123	na.traffic
DNInode		100124	na.dni DNIneT
rpc.localhad	100130	# localhad
layers2		100131	na.layers2	# SunNet Manager
na.tr		100132	# token ring agent
nsm_addrand	100133	nsm_addr	# Solaris's statd NSM
ktkt_warnd	100134	kwarn	# Kerberos warning daemon
etherif2	100135	na.etherif2	# SunNet Manager
hostmem2	100136	na.hostmem2	# SunNet Manager
iostat2		100137	na.iostat2	# SunNet Manager
snmpv2		100138	na.snmpv2	# SNM Version 2.2.2
sender		100139	cc_sender	# Cooperative Consoles
na.cpustat	100140	# na.cpustat
rgmd_receptionist	100141	# Sun Cluster SC3.0
fed		100142
rdc		100143	# Network Storage
nafo		100144	# Sun Cluster products
scadmd		100145	# SunCluster 3.0
amiserv		100146	# AMI Daemon
amiaux		100147	# BER and DER	# AMI Daemon
dm		100148	# Delegate Management Server
rkstat		100149
ocfserv		100150	# OCF (Smart card) Daemon
sccheckd	100151
autoclientd	100152
sunvts		100153
ssmond		100154
smserverd	100155	rpc.smserverd	# support removable media devices
test1		100156
test2		100157
test3		100158
test4		100159
test5		100160
test6		100161
test7		100162
test8		100163
test9		100164
test10		100165
nfsmapid	100166
SUN_WBEM_C_CIMON_HANDLE	100167
sacmmd		100168
fmd_adm		100169
fmd_api		100170
idmapd		100172
na.snmptrap	100175	# snmptrap
ShowMe		100213
keyrsa		100216	# AUTH_RSA Key service
sunsolve	100218	# WWCS (Corporate)
cstatd		100219
xfn_server_prog	100220	# X/Open Federated Naming
kcms_server	100221	kcs_network_io kcs	# SunKCMS Profile Server
ha_dbms_serv	100222	# HA-DBMS
hafaultd	100226
nfs_acl		100227	# NFS ACL Service
#
# rpc.metad - SUNWmd - Sun Solstice DiskSuite
#
dlmd		100228	# distributed lock manager
metad		100229	metad rpc.metad	# METAD - SLVM metadb Daemon
metamhd		100230	metamhd rpc.metamhd
nfsauth		100231
sadmind		100232	# Solstice
ufsd		100233	ufsd
gssd		100234	gss grpservd	# GSS Daemon
cachefsd	100235	cachefs	# CacheFS Daemon
msmprog		100236	Media_Server
ihnamed		100237
ihnetd		100238
ihsecured	100239
ihclassmgrd	100240
ihrepositoryd	100241
rpc.metamedd	100242	metamedd	# SUNWmdm - Sun Cluster
contentmanager	100243	cm
sm_symond	100244	symon	# Solstice SyMON process controller
pld		100245	genesil
ctid		100246
ccd		100247
rpc.pmfd	100248	pmfd	# Sun Cluster - process monitor server
snmpXdmid	100249	dmi2_client
mfs_admin	100250
ndshared_unlink	100251
ndshared_touch	100252
ndshared_slink	100253
cbs		100254	control_board_server
skiserv		100255
nfsxa		100256	nfsxattr
ndshared_disable	100257
ndshared_enable	100258
sms_account_admin	100259
sms_modem_admin	100260
sms_r_login	100261
sms_r_subaccount_mgt	100262
sms_service_admin	100263
session_admin	100264
canci_ancs_program	100265
canci_sms_program	100266
msmp		100267
halck		100268
halogmsg	100269
nfs_id_map	100270
ncall		100271
hmip		100272
repl_mig	100273
repl_mig_cb	100274
rpc.metacld	100281	# SUNWmdm - Sun Cluster
nisd		100300	rpc.nisd nisplus	# NIS+
nis_cache	100301	nis_cachemgr	# NIS+
nis_callback	100302
nispasswd	100303	rpc.nispasswdd nispasswdd	# NIS+ Password Update Daemon
fnsypd		100304	# Federated Naming Service (FNS)
nfscksum	100399	# nfscksum
netmgt_netu_prog	100400	# network utilization agent
netmgt_rping_prog	100401	# network rpc ping agent
na.shell	100402
na.picslp	100403	# picsprint
traps		100404
jdsagent	100410
na.haconfig	100411
na.halhost	100412
na.hadtsrvc	100413
na.hamdstat	100414
na.neoadmin	100415
ex1048prog	100416
rpc.rdmaconfig	100417	# rdmaconfig
fedfs_admin	100418	# FedFS Administration

# MDMN_COMMD
mdcommd		100422	# SVM Multi Node Communication Daemon
kiprop		100423	krb5_iprop
stfsloader	100424	stsf	# Standard Type Services Framework (STSF) Font Server
ucmmstate	100532
scrcmd		100533
nselinktool	101002	# nse link daemon
nselinkapp	101003	# nse link application
sharedapp	105001	# ShowMe
REGISTRY_PROG	105002	# Registry
print-server	105003	# Print-server
rpc.pts		105004	Protoserver proto-server	# Advanced Printing Software
notification-server	105005	# Notification-server
transfer-agent-server	105006	# Transfer-agent-server
tsolrpcb	110001
tsolpeerinfo	110002
tsolboot	110003
cmip		120001	na.cmip
na.osidiscover	120002
cmiptrap	120003
swu_svr		120100	eserver	# Software Usage Monitoring daemon
repserver	120101
swserver	120102
dmd		120103
ca		120104
nf_snmd		120126	nf_fddi	# SunNet Manager
nf_snmd		120127	nf_fddismt7_2
pcnfsd		150001	pcnfs pcnfsdprog	# pc passwd authorization
pcnfslicense	150006	# PC NFS License
rdaprog		150007	# RDA
wsprog		150008	# WabiServer
wsrlprog	150009	# WabiServer
nihon-cm	160001
nihon-ce	160002
domf_daemon0	170100
domf_daemon1	170101
domf_daemon2	170102
domf_daemon3	170103
domf_daemon4	170104
domf_daemon5	170105
cecprog		180000
cecsysprog	180001
cec2cecprog	180002
cesprog		180003
ces2cesprog	180004
cet2cetprog	180005
cet2cetdoneprog	180006
cetcomprog	180007
cetsysprog	180008
cghapresenceprog	180009
cgdmsyncprog	180010
cgdmcnscliprog	180011
cgdmcrcscliprog	180012
cgdmcrcssvcproG	180013
chmprog		180014
chmsysprog	180015
crcsapiprog	180016
ckptmprog	180017
crimcomponentprog	180018
crimqueryprog	180019
crimsecondaryprog	180020
crimservicesprog	180021
crimsyscomponentprog	180022
crimsysservicesprog	180023
csmagtapiprog	180024
csmagtcallbackprog	180025
csmreplicaprog	180026
csmsrvprog	180027
cssccltprog	180028
csscsvrprog	180029
csscopresultprog	180030
#
# Pyramid
#
PyramidLock	200000	pyramid_nfs
PyramidSys5	200001	pyramid_reserved	# Sys5
#
CADDS_Image	200002	cadds_image	# CV CADDS images.
stellar_name_prog	200003
#
pdbDA		200005
pacl		200006
lookupids	200007
ax_statd_prog	200008
ax_statd2_prog	200009
edm		200010
dtedirwd	200011
easerpcd	200016
rlxnfs		200017
sascuiddprog	200018
knfsd		200019
SWG		200020	swg ftnfsd ftnfsd_program	# DMFE/DAWS (Defense Automated Warning System)
ftsyncd		200021	ftsyncd_program
ftstatd		200022	ftstatd_program
exportmap	200023
nfs_metadata	200024
#
# DMFE/DAWS (Defense Automated Warning System)
#
Gqsrv		200034	gqsrv
Ppt		200035	ppt
Pmt		200036	pmt
Msgt		200037	msgt
Walerts		200038	walerts
Mgt		200039	mgt
Pft		200040	pft
Msgq		200041	msgq
Smpsrv		200042	smpsrv
Dexsrv		200043	dexsrv
Statussrv	200044	statussrv
SessionServer	200046	sessionserver
SessionDaemon	200047	sessiondaemon
Pmsgq		200048	pmsgq
Filesrv		200049	filesrv
Magfetch	200050	magfetch
Optfetch	200051	optfetch
Securitysrv	200052	securitysrv
#
bundle		200100	# Delay Tolerant Networking - DTN agent
bundle_demux	200200	# Delay Tolerant Networking - DTN agent
#
# EcoTools daemons/programs
#
ecodisc		200201	ecoad
ecolic		200202	eamon
eamon		200203	ecolic
cs_printstatus_svr	200204
ecoad		200205	ecodisc
#
# VERSANT
# Operator Communications Software (OCS)
#
rpc.dbserv	211637	dbserv rpc.dbserv_dir
rpc.taped	217843	taped rpc.taped_dir
rpc.taped	217854	taped rpc.taped_dir
#
ADTFileLock	300001	adt_rflockprog	# ADT file locking service.
columbine1	300002
system33_prog	300003
#
# FrameMaker
#
rpc.frameusersd	300004	frame_prog1	# FrameMaker
uimxprog	300005
fmclient	300006	rvd	# FrameMaker Client
fmeditor	300007	entombing daemon	# FrameMaker Editor
account		300008	mgmt system
fmserver	300009	stdfm FrameServer frame_prog2	# FrameMaker Server
#
beeper		300010	access
dptuprog	300011
mx-bcp		300012
instrument-file-access	300013
file-system-statistics	300014
unify-database-server	300015
tmd_msg		300016
amd		300019	amq automounter access
#
lock		300020	server
Steering	300021	# Steering Library
office-automation-1	300022
office-automation-2	300023
office-automation-3	300024
office-automation-4	300025
office-automation-5	300026
office-automation-6	300027
office-automation-7	300028
#
rpc.ldmd	300029	ldm local-data-manager	# Unidata LDM
#
# DMFE/DAWS (Defense Automated Warning System)
#
UpdtAuditsS	300030	chide
csi_program	300031
online-help	300033
case-tool	300034
delta		300035
rgi		300036
instrument-config-server	300037
dtia-rpc-server	300040
cms		300041
viewer		300042
aqm		300043
exclaim		300044
masterplan	300045
fig_tool	300046
remote-lock-manager	300050
gdebug		300052
ldebug		300053
rscanner	300054
nSERVER		300066
BioStation	300071
NetProb		300073
Logging		300074
Logging		300075
sw_twin		300082
remote_get_login	300083
odcprog		300084
Dbpass		300091	dbpass smartdoc
superping	300092
distributed-chembench	300093
uacman/alfil-uacman	300094
ait_rcagent_prog	300095
ait_rcagent_appl_prog	300096
smart		300097
ecoprog		300098
leonardo	300099
#
wingz		300108
teidan		300109
cadc_fhlockprog	300116
highscan	300117
opennavigator	300121
aarpcxfer	300122
groggs		300126
licsrv		300127
issdemon	300128
maximize	300130
cgm_server	300131
agent_rpc	300133
docmaker	300134
docmaker	300135
iesx		300139
smart-mbs	300144
clms		300145	# CenterLine CodeCenter
docimage	300147
dmc-interface	300149
jss		300151
arimage		300153
xdb-workbench	300154
frontdesk	300155
dmc		300156
expressight-6000	300157
graph		300158	service program
rlpr		300176
nx_hostdprog	300177
netuser-x	300178
rmntprog	300179
mipe		300181
collectorprog	300183
uslookup_PROG	300184
viewstation	300185
iate		300186
imsvtprog	300190
pmdb		300194
pmda		300195
trend_idbd	300198
rres		300199
sd.masterd	300200
sd.executiond	300201
sd.listend	300202
sd.reserve1	300203
sd.reserve2	300204
msbd		300205
stagedprog	300206
mountprog	300207
watchdprog	300208
pms		300209
session_server_program	300211
session_program	300212
debug_serverprog	300213
#
# FrameMaker
fm_flb		300214	# FrameMaker
fm_fls		300215	# FrameMaker licnese server

paceprog	300216
mbus		300218
aframes2ps	300219
npartprog	300220
cm1server	300221
cm1bridge	300222
sailfrogfaxprog	300223
sailfrogphoneprog	300224
sailfrogvmailprog	300225
wserviceprog	300226	arcstorm
hld		300227
alive		300228
radsp		300229
radavx		300230
radview		300231
rsys_prog	300232
rsys_prog	300233
fm_rpc_prog	300234
aries		300235
uapman		300236
ddman		300237
top		300238
trendlink	300240
licenseprog	300241
statuslicenseprog	300242
oema_rmpf_svc	300243
oema_smpf_svc	300244
oema_rmsg_svc	300245
grapes-sd	300246
ds_master	300247
ds_transfer	300248
ds_logger	300249
ds_query	300250
nsd_prog	300253
browser		300254
epoch		300255
floorplanner	300256
reach		300257
tactic		300258
cachescientific1	300259
cachescientific2	300260
desksrc_prog	300261
photo3d1	300262
photo3d2	300263
soundmgr	300265
s6k		300266
aims_referenced_	300267
xess		300268
ds_queue	300269
orionscanplus	300271
openlink-xx	300272
kbmsprog	300273
futuresource	300275
the_xprt	300276
cmg_srvprog	300277
front		300280
conmanprog	300284
jincv2		300285
isls		300286
systemstatprog	300287
fxpsprog	300288
callpath	300289
axess		300290
armor_rpcd	300291
armor_dictionary_rpcd	300292
armor_miscd	300293
filetransfer_prog	300294
bl_swda		300295
bl_hwda		300296
filemon		300300
#
# AcuServer provides remote file access services to ACUCOBOL-85 and
# ACUCOBOL-GT applications.
#
acuserve	300301	acunetprog
#
rbuild		300302
assistprog	300303
tog		300304
sns7000		300306
igprog		300307
tgprog		300308
plc		300309
pxman		300310	pxlsprog
hde_server	300311	hdeserver
tsslicenseprog	300312
rpc.explorerd	300313
chrd		300314
tbisam		300315
tbis		300316
adsprog		300317
sponsorprog	300318
querycmprog	300319
mobil1		300322
sld		300323
linkprog	300324
codexdaemonprog	300325
dr_daemon	300326	drprog	# Sun Enterprise Server Alternate Pathing
ressys_commands	300327
stamp		300328
matlab		300329
sched1d		300330
upcprog		300331
xferbkch	300332
xfer		300333
qbthd		300334
qbabort		300335
lsd		300336
geomgrd		300337
generic_fts	300338
ft_ack		300339
lymb		300340
vantage		300341
cltstd		300342	clooptstdprog
clui		300343	clui_prog
testerd		300344	tstdprog
extsim		300345
cmd_dispatch	300346	maxm_ems
callpath_receive_program	300347
x3270prog	300348
sbc_lag		300349
sbc_frsa	300350
sbc_frs		300351
atommgr		300352
geostrat	300353
dbvialu6.2	300354
fxncprog	300356
infopolic	300357
aagns		300359
aagms		300360
clariion_mgr	300362
setcimrpc	300363
virtual_protocol_adapter	300364
unibart		300365
uniarch		300366
unifile		300367
unisrex		300368
uniscmd		300369
rsc		300370
set		300371
desaf-ws/key	300372
reeldb		300373
nl		300374
#
# FA&O Command Post App
#
rmd		300375
agcd		300376
#
rsynd		300377
rcnlib		300378
rcnlib_attach	300379
evergreen_mgmt_agent	300380
fx104prog	300381
rui		300382
ovomd		300383
system_server	300386
pipecs		300387	cs_pipeprog
uv-net		300388	univision
auexe		300389
audip		300390
mqi		300391
eva		300392
eeei_reserved_1	300393
eeei_reserved_2	300394
eeei_reserved_3	300395
eeei_reserved_4	300396
eeei_reserved_5	300397
eeei_reserved_6	300398
eeei_reserved_7	300399
eeei_reserved_8	300400
cprlm		300401
wg_idms_manager	300402
timequota	300403
spiff		300404
ov_oem_svc	300405
ov_oem_svc	300406
ov_oem_svc	300407
ov_oem_svc	300408
ov_oem_svc	300409
ov_oem_svc	300410
ov_oem_svc	300411
ov_oem_svc	300412
ov_oem_svc	300413
ov_msg_ctlg_svc	300415
ov_advt_reg_svc	300416
showkron	300417
showkron	300418
showkron	300419
showkron	300420
showkron	300421
showkron	300422
showkron	300423
daatd		300425
swiftnet	300426
ovomdel		300427
ovomreq		300428
msg_dispatcher	300429
pcshare		300430	server
rcvs		300431
fdfserver	300432
bssd		300433	bss
drdd		300434	drd
mif_gutsprog	300435
mif_guiprog	300436
twolfd		300437
twscd		300438
nwsbumv		300439
dgux_mgr	300440
pfxd		300441
tds		300442
ovomadmind	300443
ovomgate	300444
omadmind	300445
nps		300446
npd		300447
tsa		300448
cdaimc		300449
ckt_implementation	300453
mda-tactical	300454
atrrun		300459
RoadRunner	300460
nas		300461
undelete	300462
ovacadd		300463
tbdesmai	300464
arguslm		300465
dmd		300466
drd		300467
fm_help		300468
ftransrpc_prog	300469
finrisk		300470
dg_pc_idisched	300471
dg_pc_idiserv	300472
ap_daemon	300473	apd	# SUNWapu - Alternate Pathing (AP)
ap_sspd		300474
callpatheventrecorder	300475
flc		300476
dg_osm		300477
dspnamed	300478
iqddsrv		300479
iqjobsrv	300480
tacosxx		300481
wheeldbmg	300482
cnxmond		300483	cnxmgr_nm_prog	# cluster node monitor (Digital UNIX)
cnxagentd	300484	cnxmgr_cfg_prog	# cluster agent (Digital UNIX)
3dsmapper	300485
ids		300486
imagine_rpc_svc	300487
lfn		300488
salesnet	300489
defaxo		300490
dbqtsd		300491
kms		300492
rpc.iced	300493
calc2s		300494
ptouidprog	300495
docsls		300496
new		300497
collagebdg	300498
ars_server	300499
ars_client	300500
vr_catalog	300501
vr_tdb		300502
ama		300503
evama		300504
conama		300505
service_process	300506
reuse_proxy	300507
mars_ctrl	300508
mars_db		300509
mars_com	300510
mars_admch	300511
tbpipcip	300512
top_acs_svc	300513
inout_svc	300514
csoft_wp	300515
mcserv		300516	mcfs
eventprog	300517
dg_pc_idimsg	300518
dg_pc_idiaux	300519
atsr_gc		300520
alarm		300521	alarm_prog
fts_prog	300522
dcs_prog	300523
ihb_prog	300524
cluinfod	300527	clu_info_prog	# cluster information server (Digital UNIX)
rmfm		300528
c2sdocd		300529
interahelp	300530
callpathasyncmsghandler	300531
optix_arc	300532
optix_ts	300533
optix_wf	300534
maxopenc	300535
cev		300536	cev_server
sitewideprog	300537
drs		300538
drsdm		300539
dasgate		300540
dcdbd		300541
dcpsd		300542
supportlink_prog	300543
broker		300544
listner		300545
multiaccess	300546
spai_interface	300547
spai_adaption	300548
chimera_ci	300549
chimera_pi	300550
teamware_fl	300551
teamware_sl	300552
teamware_ui	300553
lprm		300554
mpsprog		300555
mo_symdis	300556
retsideprog	300557
slp		300558
slm-api		300559
im_rpc		300560	teamconference
license_prog	300561	license
stuple		300562	stuple_prog
upasswd_prog	300563
gentranmentorsecurity	300564
gentranmentorprovider	300565
latituded	300566
gentranmentorreq1	300567
gentranmentorreq2	300568
gentranmentorreq3	300569
rj_server	300570
gws-rdb		300571
gws-mpmd	300572
gws-spmd	300573
vwcalcd		300574
vworad		300575
vwsybd		300576
vwave		300577
online_assistant	300578
internet_assistant	300579
spawnd		300580
procmgrg	300581
cfgdbd		300582
logutild	300583
ibis		300584
ibisaux		300585
aapi		300586
rstrt		300587
hbeat		300588
pcspu		300589
empress		300590
sched_server	300591
path_server	300592
c2sdmd		300593
c2scf		300594
btsas		300595
sdtas		300596
appie		300597
dmispd		300598	dmi	# Sun Solstice Enterprise DMI Service Provider
pscd		300599
sisd		300600
cpwebserver	300601
wwcommo		300602
mx-mie		300603
mx-mie-debug	300604
idmn		300605
ssrv		300606
vpnserver	300607
samserver	300608
sams_server	300609
chrysalis	300610
ddm		300611
ddm-is		300612
mx-bcp-debug	300613
upmrd		300614
upmdsd		300615
res		300616
colortron	300617
zrs		300618
afpsrv		300619
apxft		300620
nrp		300621
hpid		300622
mailwatch	300623
fos		300624	bc_fcrb_receiver
cs_sysadmin_svr	300625
cs_controller_svr	300626
nokia_nms_eai	300627
dbg		300628
remex		300629
cs_bind		300630
idm		300631
prpasswd	300632
iw-pw		300633
starrb		300634
Impress_Server	300635
colorstar	300636
gwugui		300637
gwsgui		300638
dai_command_proxy	300639
dai_alarm_server	300640
dai_fui_proxy	300641
spai_command_proxy	300642
spai_alarm_server	300643
iris		300644
hcxttp		300645
updatedb	300646	rsched
urnd		300647	urn
iqwpsrv		300648
dskutild	300649
online		300650
nlserv		300651
acsm		300652
dg_clar_sormsg	300653
wwpollerrpc	300654
wwmodelrpc	300655
nsprofd		300656
nsdistd		300657
recollect	300658
lssexecd	300659	lss_res
lssagend	300660	lss_rea
cdinfo		300661
sninsr_addon	300662
mm-sap		300663
ks		300664	# ACPLT/KS protocol
psched		300665
tekdvfs		300666
storxll		300667
nisse		300668
lbadvise	300669
atcinstaller	300670
atntstarter	300671
NetML		300672
tdmesmge	300673
tdmesmgd	300674
tdmesmgt	300675
olm		300676
mediamanagement	300677
rdbprog		300678	fieldowsrv
rpwdprog	300679	rpwd
sapi-trace	300680
sapi-master-daemon	300681
omdcuprog	300682	om-dcu
wwprocmon	300683
tndidprog	300684
rkey_setsecretprog	300685
asdu_server_prog	300686
pwrcntrl	300687
siunixd		300688
wmapi		300689
cross_reference_ole	300690
rtc		300691
disp		300692
sql_compilation_agent	300693
tnsysprog	300694
ius-sapimd	300695
apteam-dx	300696
rmsrpc		300697
seismic_system	300698
remote		300699
tt1_ts_event	300700	nokia_nms
fxrs		300701
onlicense	300702
vxkey		300703
dinis		300704
sched2d		300705	schedule-2
sched3d		300706	schedule-3
sched4d		300707	schedule-4
sched5d		300708	schedule-5
sched6d		300709	schedule-6
sched7d		300710	schedule-7
sched8d		300711	schedule-8
sched9d		300712	schedule-9
adtsqry		300713
adserv		300714
adrepserv	300715
caad		300717
caaui		300718
cescda		300719
vcapiadmin	300720
vcapi20		300721
tcfs		300722
csed		300723
nothand		300724
hacb		300725
nfauth		300726
imlm		300727
bestcomm	300728
lprpasswd	300729
rprpasswd	300730
proplistd	300731
mikomomc	300732
arepa-cas	300733
ando_ts		300736
intermezzo	300737
ftel-sdh-request	300738
ftel-sdh-response	300739
vrc_abb		300745
vrc_comau	300746
vrc_fanuc	300747
vrc_kuka	300748
vrc_reis	300749
hp_sv6d		300750
correntmgr01	300751
correntike	300752
intransa_location	300755
intransa_management	300756
intransa_federation	300757
portprot	300758
ipmiprot	300759
aceapi		300760
f6000pss	300761
vsmapi_program	300762
ubertuple	300763
ctconcrpcif	300764
mfuadmin	300765
aiols		300766
dsmrootd	300767
htdl		300768
caba		300769
vrc_cosimir	300770
cmhelmd		300771
polynsm		300772
dsmrecalld	300781
twrgcontrol	300784
twrled		300785
twrcfgdb	300786
sfs		344444	# SFS - Self-Certifying File System
wfmMgmtApp	351350
wfmMgmtDataSrv	351351
wfmMgmtFut1	351352
wfmMgmtFut1	351353
wfmAPM		351354
wfmIAMgr	351355
wfmECMgr	351356
wfmLookOut	351357
wfmAgentFut1	351358
wfmAgentFut2	351359
sched10d	351360
sched11d	351361
sched12d	351362
sched13d	351363
sched14d	351364
sched15d	351365
sched16d	351366
sched17d	351367
sched18d	351368
sched19d	351369
sched20d	351370
sched21d	351371
sched22d	351372
sched23d	351373
sched24d	351374
sched25d	351375
sched26d	351376
sched27d	351377
sched28d	351378
sched29d	351379
sched30d	351380
sched31d	351381
sched32d	351382
sched33d	351383
sched34d	351384
sched35d	351385
sched36d	351386
sched37d	351387
sched38d	351388
sched39d	351389
consoleserver	351390
scheduleserver	351391
RDELIVER	351392
REVENTPROG	351393
RSENDEVENTPROG	351394
snapp		351395
snapad		351396
sdsoodb		351397
sdsmain		351398
sdssrv		351399
sdsclnt		351400
sdsreg		351401
fsbatch		351402
fsmonitor	351403
fsdisp		351404
fssession	351405
fslog		351406
csed		351407	svdpappserv	# Sterling Software ITD
svdpappserv	351407
gns		351408
axi		351412
rpcxfr		351413
slm		351414
smbpasswdd	351415
tbdbserv	351416
tbprojserv	351417
genericserver	351418
dynarc_ds	351419
dnscmdr		351420
ipcmdr		351421
faild		351422
failmon		351423
faildebug	351424
siemens_srs	351427
bsproxy		351428
ifsrpc		351429
CesPvcSm	351430
FrPvcSm		351431
AtmPvcSm	351432
radius		351433
auditor		351434
sft		351435
voicemail	351436
kis		351437
SOFTSERV_NOTIFY	351438
dynarpc		351439
hc		351440
iopas		351441
iopcs		351442
iopss		351443
spcnfs		351444
spcvss		351445
matilda_sms	351446
matilda_brs	351447
matilda_dbs	351448
matilda_sps	351449
matilda_svs	351450
matilda_sds	351451
matilda_vvs	351452
matilda_stats	351453
xtrade		351454
mapsvc		351455	mapsvr
hp_graphicsd	351456
berkeleydb	351457	berkeley_db	# Sleepycat Software: Berkeley DB

io_server	351458
rpc.niod	351459
rpc.kill	351460
hmdisproxy	351461
smdisproxy	351462
avatard		351463
namu		351464
BMCSess		351465
FENS_Sport	351466
EM_CONFIG	351467
EM_CONFIG_RESP	351468
lodge_proof	351469
ARCserveIT-Queue	351470
ARCserveIT-Device	351471
ARCserveIT-Discover	351472
caasalert	351473	ARCserveIT-Alert
ARCserveIT-Database	351474
scand1		351475
scand2		351476
scand3		351477
scand4		351478
scand5		351479
dscv		351480
cb_svc		351481
iprobe		351483
omniconf	351484
isan		351485
mond		351501
iqlremote	351502
iqlalarm	351503
asautostart	352233
asmediad1	352234
asmediad2	352235
asmediad3	352236
asmediad4	352237
asmediad5	352238
asmediad6	352239
asmediad7	352240
asmediad8	352241
asmediad9	352242
asmediad10	352243
asmediad11	352244
asmediad12	352245
asmediad13	352246
asmediad14	352247
asmediad15	352248
asmediad16	352249
waruser		352250
warlogd		352251
warsvrmgr	352252
warvfsysd	352253
warftpd		352254
warnfsd		352255
bofproxyc0	352256
bofproxys0	352257
bofproxyc1	352258
bofproxys1	352259
bofproxyc2	352260
bofproxys2	352261
bofproxyc3	352262
bofproxys3	352263
bofproxyc4	352264
bofproxys4	352265
bofproxyc5	352266
bofproxys5	352267
bofproxyc6	352268
bofproxys6	352269
bofproxyc7	352270
bofproxys7	352271
bofproxyc8	352272
bofproxys8	352273
bofproxyc9	352274
bofproxys9	352275
bofproxyca	352276
bofproxysa	352277
bofproxycb	352278
bofproxysb	352279
bofproxycc	352280
bofproxysc	352281
bofproxycd	352282
bofproxysd	352283
bofproxyce	352284
bofproxyse	352285
bofproxycf	352286
bofproxysf	352287
bofproxypo0	352288
bofproxypo1	352289
bofproxypo2	352290
bofproxypo3	352291
bofproxypo4	352292
opensna		380000
probenet	380001
license		380003
na.3com-remote	380004
na.ntp		380005
probeutil	380006
na.vlb		380007
cds_mhs_agent	380008
cds_x500_agent	380009
cds_mailhub_agent	380010
codex_6500_proxy	380011
codex_6500_trapd	380012
na.nm212	380013
cds_mta_metrics_agent	380014
na.caple	380016
codexcapletrap	380017
ncstat		380029
ncnfsstat	380030
ftams		380031
na.isotp	380032
na.rfc1006	380033

prestoctl_svc	390100	presto	# Prestoserve control daemon
#
# Legato NetWorker
#
rap		390101	rapla
rapserv		390102	raprd
nsrd		390103	nsr	# NetWorker service
nsrmmd		390104	nsrmm	# NetWorker media mupltiplexor daemon
nsrindexd	390105	nsrindex	# NetWorker file index daemon
nsrmmdbd	390107	nsrmmdb	# NetWorker media management database daemon
nsrstat		390109
nsrjb		390110	nsrjbd	# NetWorker jukebox-control service
nsrexec		390113	nsrexecd	# NetWorker client execution service
lgtolmd		390115	# Legato license daemon
cdsmonitor	390116
cdslock		390117
cdslicense	390118
shm		390119
rws		390120
cdc		390121
nsrnotd		390400	# NetWorker notary service
#
# Remedy AR System daemons
#
arserverd	390600	arserverd
ntserverd	390601	ntserverd	# Remedy Notifier and AR Server 5.0
ntclientd	390602	ntclientd
aresclsrv	390603	aresclsrv
arservtcd	390604	arservtcd
# Remedy Flashboards daemons
flashservd	390610	flashservd
arflashbd	390619	arflashbd
#
arfastsrv	390620	arfastsrv
arfastsrv	390621	arfastsrv
arfastsrv	390622	arfastsrv
arfastsrv	390623	arfastsrv
arfastsrv	390624	arfastsrv
arfastsrv	390625	arfastsrv
arfastsrv	390626	arfastsrv
arfastsrv	390627	arfastsrv
arfastsrv	390628	arfastsrv
arfastsrv	390629	arfastsrv
arfastsrv	390630	arfastsrv
arfastsrv	390631	arfastsrv
arfastsrv	390632	arfastsrv
arfastsrv	390633	arfastsrv
arfastsrv	390634	arfastsrv
#
arlistsrv	390635	arlistsrv
arlistsrv	390636	arlistsrv
arlistsrv	390637	arlistsrv
arlistsrv	390638	arlistsrv
arlistsrv	390639	arlistsrv
arlistsrv	390640	arlistsrv
arlistsrv	390641	arlistsrv
arlistsrv	390642	arlistsrv
arlistsrv	390643	arlistsrv
arlistsrv	390644	arlistsrv
arlistsrv	390645	arlistsrv
arlistsrv	390646	arlistsrv
arlistsrv	390647	arlistsrv
arlistsrv	390648	arlistsrv
arlistsrv	390649	arlistsrv
#
# SGI
#
sgi_snoopd	391000	snoopd snoop
sgi_toolkitbus	391001
sgi_fam		391002
sgi_notepad	391003	notepad
sgi_mountd	391004	mount showmount
sgi_smtd	391005	smtd
sgi_pcsd	391006	pcsd
sgi_nfs		391007
sgi_rfind	391008	rfind
sgi_pod		391009	pod
sgi_iphone	391010
sgi_videod	391011
sgi_testcd	391012	testcd
sgi.ha_hbeat	391013	ha_hbeat ha_heartbeat sgi_ha_hb
sgi.ha_nc	391014	ha_nc sgi.ha_nc
sgi.ha_appmon	391015	ha_appmon
sgi_xfsmd	391016
sgi_mediad	391017	mediad
sgi.ha_orcl	391018	ha_orcl
sgi.ha_ifmx	391019	ha_ifmx
sgi.ha_sybs	391020	ha_sybs
sgi.ha_ifa	391021	ha_ifa
sgi_reserved	391022
sgi_reserved	391023
sgi_reserved	391024
sgi_reserved	391025
sgi_reserved	391026
sgi_reserved	391027
sgi_reserved	391028
sgi_espd	391029	espd
sgi_reserved	391030
sgi_reserved	391031
sgi_reserved	391032
sgi_reserved	391033
sgi_reserved	391034
sgi_reserved	391035
sgi_reserved	391036
sgi_reserved	391037
sgi_reserved	391038
sgi_reserved	391039
sgi_reserved	391040
sgi_reserved	391041
sgi_reserved	391042
sgi_reserved	391043
sgi_reserved	391044
sgi_reserved	391045
sgi_reserved	391046
sgi_reserved	391047
sgi_reserved	391048
sgi_reserved	391049
sgi_reserved	391050
sgi_reserved	391051
sgi_reserved	391052
sgi_reserved	391053
sgi_reserved	391054
sgi_reserved	391055
sgi_reserved	391056
sgi_reserved	391057
sgi_reserved	391058
sgi_reserved	391059
sgi_reserved	391060
sgi_reserved	391061
sgi_reserved	391062
sgi_reserved	391063
#
# AEDIS
#
afsd		391200
dhc		391201
cmsd		391202
xxx2trif	391203
trif2xxx	391204
dx		391205
licd		391206
#
ingsqld		391434	# SCO JDBC
naas-spare	391756
naas-admin	391757
isps		391758
isps-admin	391759
mars		391760
mars-admin	391761
attcis_spare0	391762
attcis_spare1	391763
mail-server	391764
mail-server-spare	391765
attcis_spare2	391766
attcis_spare3	391767
attcis_spare4	391768
attcis_spare5	391769
attcis_spare6	391770
attcis_spare7	391771
qhrdata		391850
qhrbackup	391851
minutedata	391852
prefecture	391853
supc		391854
suadmincrw	391855
suadminotas	391856
sumessage	391857
sublock		391858
sumotd		391859
namesrvr	391880
disksrvr	391881
tapesrvr	391882
migsrvr		391883
pdmsrvr		391884
pvrsrvr		391885
repacksrvr	391886
lookoutsrv	391952
lookoutagnt	391953
lookoutprxy	391954
lookoutsnmp	391955
lookoutrmon	391956
lookoutfut1	391957
lookoutfut2	391958
sra_legato	391968
sra_legato_imgsvr	391969
sra_legato_0	391970
sra_legato_1	391971
sra_legato_2	391972
sra_legato_3	391973
sra_legato_4	391974
sra_legato_5	391975
sra_legato_6	391976
sra_legato_7	391977
sra_legato_8	391978
sra_legato_9	391979
odbc_sqlretriever	395024
ife-es		395165
ife-resmgr	395166
ife-aes		395167
ife-bite	395168
ife-loader	395169
ife-satcom	395170
ife-seat	395171
ife-dbmgr	395172
ife-testmgr	395173
atrium_server	395174
#
# Compaq TruCluster - Available Server Environment
#
asedirector	395175	asedirector ase_director	# ASE Director Daemon
aseagent	395176	aseagent ase_agent	# ASE Agent Daemon
asehsm		395177	asehsm ase_hsm	# Host Status Monitor Daemon
ase_mgr		395178
aselogger	395179	aselogger ase_sim	# Logger Daemon
#
pnictl		395250
#
# Computer Associates
#
caservd		395644	as6_arcserve
calqserver	395645	as6_queue LQServer
camediadsvr	395646	as6_tapesvr MediaSvr
caldbserver	395647	as6_dbserver LDbserver
caauthd		395648	as6_auth
cadiscovd	395649	as6_discovery
caloggerd	395650	as6_logger
mcm		400000	# Sun Microsystems fabric management
mcm		400001	# Sun Microsystems fabric management
mcm		400002	# Sun Microsystems fabric management
mcm		400003	# Sun Microsystems fabric management
mcm		400004	# Sun Microsystems fabric management
mcm		400005	# Sun Microsystems fabric management
mcm		400006	# Sun Microsystems fabric management
mcm		400007	# Sun Microsystems fabric management
mcm		400008	# Sun Microsystems fabric management
NetAppPartnerSvc	400010	# Partner Service/NetApp
Oropo		400011	# Oropo
Oropo		400012	# Oropo
Oropo		400013	# Oropo
Oropo		400014	# Oropo
Oropo		400015	# Oropo
Oropo		400016	# Oropo
Oropo		400017	# Oropo
Oropo		400018	# Oropo
Oropo		400019	# Oropo
Oropo		400020	# Oropo
Oropo		400021	# Oropo
Oropo		400022	# Oropo
Oropo		400023	# Oropo
Oropo		400024	# Oropo
Oropo		400025	# Oropo
Oropo		400026	# Oropo
Oropo		400027	# Oropo
Oropo		400028	# Oropo
Oropo		400029	# Oropo
Oropo		400030	# Oropo
Oropo		400031	# Oropo
Oropo		400032	# Oropo
Oropo		400033	# Oropo
Oropo		400034	# Oropo
Oropo		400035	# Oropo
Oropo		400036	# Oropo
Oropo		400037	# Oropo
Oropo		400038	# Oropo
Oropo		400039	# Oropo
Oropo		400040	# Oropo
Oropo		400041	# Oropo
Oropo		400042	# Oropo
Oropo		400043	# Oropo
Oropo		400044	# Oropo
Oropo		400045	# Oropo
Oropo		400046	# Oropo
Oropo		400047	# Oropo
Oropo		400048	# Oropo
Oropo		400049	# Oropo
Oropo		400050	# Oropo
Oropo		400051	# Oropo
Oropo		400052	# Oropo
Oropo		400053	# Oropo
Oropo		400054	# Oropo
Oropo		400055	# Oropo
Oropo		400056	# Oropo
Oropo		400057	# Oropo
Oropo		400058	# Oropo
Oropo		400059	# Oropo
Oropo		400060	# Oropo
Oropo		400061	# Oropo
Oropo		400062	# Oropo
Oropo		400063	# Oropo
Oropo		400064	# Oropo
Oropo		400065	# Oropo
Oropo		400066	# Oropo
Oropo		400067	# Oropo
Oropo		400068	# Oropo
Oropo		400069	# Oropo
Oropo		400070	# Oropo
Oropo		400071	# Oropo
Oropo		400072	# Oropo
Oropo		400073	# Oropo
Oropo		400074	# Oropo
Oropo		400075	# Oropo
Oropo		400076	# Oropo
Oropo		400077	# Oropo
Oropo		400078	# Oropo
Oropo		400079	# Oropo
Oropo		400080	# Oropo
Oropo		400081	# Oropo
Oropo		400082	# Oropo
Oropo		400083	# Oropo
Oropo		400084	# Oropo
Oropo		400085	# Oropo
Oropo		400086	# Oropo
Oropo		400087	# Oropo
Oropo		400088	# Oropo
Oropo		400089	# Oropo
Oropo		400090	# Oropo
Oropo		400091	# Oropo
Oropo		400092	# Oropo
Oropo		400093	# Oropo
Oropo		400094	# Oropo
Oropo		400095	# Oropo
Oropo		400096	# Oropo
Oropo		400097	# Oropo
Oropo		400098	# Oropo
Oropo		400099	# Oropo
Oropo		400100	# Oropo
Oropo		400101	# Oropo
Oropo		400102	# Oropo
Oropo		400103	# Oropo
Oropo		400104	# Oropo
Oropo		400105	# Oropo
Oropo		400106	# Oropo
Oropo		400107	# Oropo
Oropo		400108	# Oropo
Oropo		400109	# Oropo
TintriServices	400111	# Tintri, Inc.
gss-proxy	400112	# gss-proxy
inasx		400113	# Extended NFS services
CohoDataServices	400114	# Coho Data
CohoDataServices	400115	# Coho Data
CohoDataServices	400116	# Coho Data
CohoDataServices	400117	# Coho Data
CohoDataServices	400118	# Coho Data
CohoDataServices	400119	# Coho Data
CohoDataServices	400120	# Coho Data
# BMC
EnsignAgent	450000	# Ensign Agent
#
drac		900101	# Dynamic Relay Authorization Control
#
AdoIfServer	1000002	# RHIC AdoIf Server (Accelerator Device Object)
notifServer	2000004	# RHIC notifServer
#
retherif	20000000	na.retherif
genagnt		20000001	na.genagnt
#
# ACeDB database server
#
acedb		20000114	rpc.acedbd
aboutdb		20000115	rpc.acedbd
aatdb		20000116	rpc.acedbd
#
seagent		20000777	# Memco/Platinum/CA SeOS security product
dbsrvr		21000023	# TACO
#
# MIDAS - Software for Nuclear Physics data aqcuisition and analysis
#
egts		28000205	# Eurogam Tape Server       (10205/udp)
ers		28000220	# Eurogam Register Server   (10220/udp)
sas		28000230	# Spectrum Access Server    (10230/udp)
#
# The range 200100000-200199999 is reserved for NeXT services ???
#
netinfobind	200100001	nibindd	# NeXT NetInfo
renderd		200100002	# NeXT renderd
#
SLSd_daemon	536870913	# HP Distributed Single Logical Screen
uidd		536870915
#
vtsk		536870916	# SunVTS diagnostic kernel
bondd		536870917
staticd		536870918
curved		536870919
msglogd		536870920
aliasd		536870921
ticketd		536870922
glossd		536870923
futured		536870924
priced		536870928
ladderd		536870929
optiond		536870937	# FIRM option server
#
# IBM Network Database (DB2)
# NDB Program numbers added for more useful rpcinfo output
# Values are in decimal. Corresponding hexadecimal values
# for the NDB port manager is X'20000020' and for the NDB
# servers are from X'20000021' to X'20000084'.
#
ndbportmgr	536870944
ndbserver1	536870945
ndbserver2	536870946
ndbserver3	536870947
ndbserver4	536870948
ndbserver5	536870949
ndbserver6	536870950
ndbserver7	536870951
ndbserver8	536870952
ndbserver9	536870953
ndbserver10	536870954
ndbserver11	536870955
ndbserver12	536870956
ndbserver13	536870957
ndbserver14	536870958
ndbserver15	536870959
ndbserver16	536870960
ndbserver17	536870961
ndbserver18	536870962
ndbserver19	536870963
ndbserver20	536870964
ndbserver21	536870965
ndbserver22	536870966
ndbserver23	536870967
ndbserver24	536870968
ndbserver25	536870969
ndbserver26	536870970
ndbserver27	536870971
ndbserver28	536870972
ndbserver29	536870973
ndbserver30	536870974
ndbserver31	536870975
ndbserver32	536870976
ndbserver33	536870977
ndbserver34	536870978
ndbserver35	536870979
ndbserver36	536870980
ndbserver37	536870981
ndbserver38	536870982
ndbserver39	536870983
ndbserver40	536870984
ndbserver41	536870985
ndbserver42	536870986
ndbserver43	536870987
ndbserver44	536870988
ndbserver45	536870989
ndbserver46	536870990
ndbserver47	536870991
ndbserver48	536870992
ndbserver49	536870993
ndbserver50	536870994
ndbserver51	536870995
ndbserver52	536870996
ndbserver53	536870997
ndbserver54	536870998
ndbserver55	536870999
ndbserver56	536871000
ndbserver57	536871001
ndbserver58	536871002
ndbserver59	536871003
ndbserver60	536871004
ndbserver61	536871005
ndbserver62	536871006
ndbserver63	536871007
ndbserver64	536871008
ndbserver65	536871009
ndbserver66	536871010
ndbserver67	536871011
ndbserver68	536871012
ndbserver69	536871013
ndbserver70	536871014
ndbserver71	536871015
ndbserver72	536871016
ndbserver73	536871017
ndbserver74	536871018
ndbserver75	536871019
ndbserver76	536871020
ndbserver77	536871021
ndbserver78	536871022
ndbserver79	536871023
ndbserver80	536871024
ndbserver81	536871025
ndbserver82	536871026
ndbserver83	536871027
ndbserver84	536871028
ndbserver85	536871029
ndbserver86	536871030
ndbserver87	536871031
ndbserver88	536871032
ndbserver89	536871033
ndbserver90	536871034
ndbserver91	536871035
ndbserver92	536871036
ndbserver93	536871037
ndbserver94	536871038
ndbserver95	536871039
ndbserver96	536871040
ndbserver97	536871041
ndbserver98	536871042
ndbserver99	536871043
ndbserver100	536871044
#
gnbk		536871680	# ACEDB genome database package
#
# Katie - Revision Control System
#
katie_mount	537208899
katie_nfs	537208900	katie
#
fcagent		541414217	# SGI FibreVault Status/Configuration daemon
#
ugidd		545580417	rpc.ugidd
#
# Inetray - Raytrace
#
inetray.start	555555554
inetray		555555555
inetray		555555556
inetray		555555557
inetray		555555558
inetray		555555559
inetray		555555560
#
pnmd		591751041	# SunCluster - Public Network Management (PNM)
#
# Keck Long Wavelength Spectrometer (LWS) related rpc daemons
#
collectd	600000001	collect	# IRE Computer
xycomd		600000002	xycom	# IRE Computer
motord		600000003	motor	# IRE Computer
fitsd		600000004	fits writer	# Control Room computer
#
des_crypt	600100029	freebsd-crypt	# FreeBSD
fypxfrd		600100069	freebsd-ypxfrd	# FreeBSD
rdbx		611319808
bminrd		630474513	# MacroModel - BatchMin Network Server
bwnfsd		788585389	# (PC)NFS server by Beame & Whiteside, Inc.
dmispd		805306368	# Sun Solstice Enterprise DMI Service Provider
sql_disp	805310465	# GNU SQL Server
rdict		805898569	# "Internetworking with TCP/IP Vol 3"
piktc_svc	806422610	# PIKT: Problem Informant/Killer Tool
ilu		822084608	# OLD - Inter-Language Unification (ILU)
#
# LIGO Global Diagnostics System (GDS) - Diagnostics Test Tool (DTT)
#
testpoint	822087681	# Test point server
awg		822087682	# Arbitrary waveform generator
cgdsrtdd	822087683	# Real-time data server
gdsd		822087684	# Diagnostics message server
chnconfd	822087685	# Channel database daemon for gds
leapconfd	822087686	# Leap second information daemon
# LIGO Global Diagnostics System (GDS) - Diagnostics Test Tool (DTT)
rlaunchd	822087687	# Remote program launcher
#
cfsd		824395111
cns		912680550	# Controls Name Server
fmproduct	1073741824	_Frame_RPC	# FrameMaker
gsql_trn	1073741840	# GNU SQL Server
cfsd		1092830567
rdb		1145324612	# Wind River Systems' VxWorks debug stub
#
dtcm		1289637086
ttsession	1289637087	# Sun Solaris 7 (2.7) and up.
ttsession	1342177279	# Sun Solaris upto 2.6
wdb		1431655765	# Wind River Debugger (VxWorks)