content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
products = [
{'name': 'laptop', 'price': 800, 'quantity': 4},
{'name': 'mouse', 'price': 40, 'quantity': 10},
{'name': 'monitor', 'price': 400, 'quantity': 3}
] | products = [{'name': 'laptop', 'price': 800, 'quantity': 4}, {'name': 'mouse', 'price': 40, 'quantity': 10}, {'name': 'monitor', 'price': 400, 'quantity': 3}] |
expected_output = {
"my_state": "13 -ACTIVE",
"peer_state": "8 -STANDBY HOT",
"mode": "Duplex",
"unit": "Primary",
"unit_id": 48,
"redundancy_mode_operational": "sso",
"redundancy_mode_configured": "sso",
"redundancy_state": "sso",
"maintenance_mode": "Disabled",
"manual_swact": "enabled",
"communications": "Up",
"client_count": 76,
"client_notification_tmr_msec": 30000,
"rf_debug_mask": "0x0",
}
| expected_output = {'my_state': '13 -ACTIVE', 'peer_state': '8 -STANDBY HOT', 'mode': 'Duplex', 'unit': 'Primary', 'unit_id': 48, 'redundancy_mode_operational': 'sso', 'redundancy_mode_configured': 'sso', 'redundancy_state': 'sso', 'maintenance_mode': 'Disabled', 'manual_swact': 'enabled', 'communications': 'Up', 'client_count': 76, 'client_notification_tmr_msec': 30000, 'rf_debug_mask': '0x0'} |
class Checkout:
class Discount:
def __init__(self, nItems, price):
self.nItems = nItems
self.price = price
def __init__(self):
self.prices = {}
self.discounts = {}
self.items = {}
def addItemPrice(self, item, price):
self.prices[item] = price
def addItem(self, item):
if item not in self.prices:
raise Exception("Bad Item")
if item in self.items:
self.items[item] += 1
else:
self.items[item] = 1
def addDiscount(self, item, quantity, price):
discount = self.Discount(quantity, price)
self.discounts[item] = discount
def calculateTotal(self):
total = 0
for item, count in self.items.items():
total += self.calculateItemTotal(item, count)
return total
def calculateItemTotal(self, item, count):
total = 0
if item in self.discounts:
discount = self.discounts[item]
if count >= discount.nItems:
total += self.caclulateItemDiscountedTotal(item, count, discount)
else:
total += (self.prices[item] * count)
else:
total += (self.prices[item] * count)
return total
def caclulateItemDiscountedTotal(self, item, count, discount):
total = 0
nDiscounts = count/discount.nItems
total += nDiscounts * discount.price
remaining = count % discount.nItems
total += remaining * self.prices[item]
return total
| class Checkout:
class Discount:
def __init__(self, nItems, price):
self.nItems = nItems
self.price = price
def __init__(self):
self.prices = {}
self.discounts = {}
self.items = {}
def add_item_price(self, item, price):
self.prices[item] = price
def add_item(self, item):
if item not in self.prices:
raise exception('Bad Item')
if item in self.items:
self.items[item] += 1
else:
self.items[item] = 1
def add_discount(self, item, quantity, price):
discount = self.Discount(quantity, price)
self.discounts[item] = discount
def calculate_total(self):
total = 0
for (item, count) in self.items.items():
total += self.calculateItemTotal(item, count)
return total
def calculate_item_total(self, item, count):
total = 0
if item in self.discounts:
discount = self.discounts[item]
if count >= discount.nItems:
total += self.caclulateItemDiscountedTotal(item, count, discount)
else:
total += self.prices[item] * count
else:
total += self.prices[item] * count
return total
def caclulate_item_discounted_total(self, item, count, discount):
total = 0
n_discounts = count / discount.nItems
total += nDiscounts * discount.price
remaining = count % discount.nItems
total += remaining * self.prices[item]
return total |
patches = [
{
"op": "move",
"from": "/PropertyTypes/AWS::IoTWireless::FuotaTask.LoRaWAN",
"path": "/PropertyTypes/AWS::IoTWireless::FuotaTask.FuotaTaskLoRaWAN",
},
{
"op": "replace",
"path": "/ResourceTypes/AWS::IoTWireless::FuotaTask/Properties/LoRaWAN/Type",
"value": "FuotaTaskLoRaWAN",
},
]
| patches = [{'op': 'move', 'from': '/PropertyTypes/AWS::IoTWireless::FuotaTask.LoRaWAN', 'path': '/PropertyTypes/AWS::IoTWireless::FuotaTask.FuotaTaskLoRaWAN'}, {'op': 'replace', 'path': '/ResourceTypes/AWS::IoTWireless::FuotaTask/Properties/LoRaWAN/Type', 'value': 'FuotaTaskLoRaWAN'}] |
class Page():
def __init__(self):
self.url = ''
self.title = ''
self.message = ''
| class Page:
def __init__(self):
self.url = ''
self.title = ''
self.message = '' |
# from django.conf import settings
# from django.db import models
# from django.utils import timezone
class User(models.Model):
author = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
title = models.CharField(max_length=100)
firstName = models.TextField()
lastName = models.TextField()
contactNumber = models.TextField()
created_date = models.DateTimeField(default=timezone.now)
published_date = models.DateTimeField(blank=True, null=True)
def publish(self):
self.published_date = timezone.now()
self.save()
def __str__(self):
return self.title | class User(models.Model):
author = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
title = models.CharField(max_length=100)
first_name = models.TextField()
last_name = models.TextField()
contact_number = models.TextField()
created_date = models.DateTimeField(default=timezone.now)
published_date = models.DateTimeField(blank=True, null=True)
def publish(self):
self.published_date = timezone.now()
self.save()
def __str__(self):
return self.title |
# This is a copy of IANA DNS SRV registry at:
# http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml
# source xml file updated on 2012-09-11
UDP_SERVICES = {
"tcpmux":'''TCP Port Service Multiplexer''',
"compressnet":'''Management Utility''',
"compressnet":'''Compression Process''',
"rje":'''Remote Job Entry''',
"echo":'''Echo''',
"discard":'''Discard''',
"systat":'''Active Users''',
"daytime":'''Daytime''',
"qotd":'''Quote of the Day''',
"msp":'''Message Send Protocol (historic)''',
"chargen":'''Character Generator''',
"ftp-data":'''File Transfer [Default Data]''',
"ftp":'''File Transfer [Control]''',
"ssh":'''The Secure Shell (SSH) Protocol''',
"telnet":'''Telnet''',
"smtp":'''Simple Mail Transfer''',
"nsw-fe":'''NSW User System FE''',
"msg-icp":'''MSG ICP''',
"msg-auth":'''MSG Authentication''',
"dsp":'''Display Support Protocol''',
"time":'''Time''',
"rap":'''Route Access Protocol''',
"rlp":'''Resource Location Protocol''',
"graphics":'''Graphics''',
"name":'''Host Name Server''',
"nameserver":'''Host Name Server''',
"nicname":'''Who Is''',
"mpm-flags":'''MPM FLAGS Protocol''',
"mpm":'''Message Processing Module [recv]''',
"mpm-snd":'''MPM [default send]''',
"ni-ftp":'''NI FTP''',
"auditd":'''Digital Audit Daemon''',
"tacacs":'''Login Host Protocol (TACACS)''',
"re-mail-ck":'''Remote Mail Checking Protocol''',
"la-maint":'''IMP Logical Address Maintenance''',
"xns-time":'''XNS Time Protocol''',
"domain":'''Domain Name Server''',
"xns-ch":'''XNS Clearinghouse''',
"isi-gl":'''ISI Graphics Language''',
"xns-auth":'''XNS Authentication''',
"xns-mail":'''XNS Mail''',
"ni-mail":'''NI MAIL''',
"acas":'''ACA Services''',
"whoispp":'''whois++
IANA assigned this well-formed service name as a replacement for "whois++".''',
"whois++":'''whois++''',
"covia":'''Communications Integrator (CI)''',
"tacacs-ds":'''TACACS-Database Service''',
"sql-net":'''Oracle SQL*NET
IANA assigned this well-formed service name as a replacement for "sql*net".''',
"sql*net":'''Oracle SQL*NET''',
"bootps":'''Bootstrap Protocol Server''',
"bootpc":'''Bootstrap Protocol Client''',
"tftp":'''Trivial File Transfer''',
"gopher":'''Gopher''',
"netrjs-1":'''Remote Job Service''',
"netrjs-2":'''Remote Job Service''',
"netrjs-3":'''Remote Job Service''',
"netrjs-4":'''Remote Job Service''',
"deos":'''Distributed External Object Store''',
"vettcp":'''vettcp''',
"finger":'''Finger''',
"http":'''World Wide Web HTTP''',
"www":'''World Wide Web HTTP''',
"www-http":'''World Wide Web HTTP''',
"xfer":'''XFER Utility''',
"mit-ml-dev":'''MIT ML Device''',
"ctf":'''Common Trace Facility''',
"mit-ml-dev":'''MIT ML Device''',
"mfcobol":'''Micro Focus Cobol''',
"kerberos":'''Kerberos''',
"su-mit-tg":'''SU/MIT Telnet Gateway''',
"dnsix":'''DNSIX Securit Attribute Token Map''',
"mit-dov":'''MIT Dover Spooler''',
"npp":'''Network Printing Protocol''',
"dcp":'''Device Control Protocol''',
"objcall":'''Tivoli Object Dispatcher''',
"supdup":'''SUPDUP''',
"dixie":'''DIXIE Protocol Specification''',
"swift-rvf":'''Swift Remote Virtural File Protocol''',
"tacnews":'''TAC News''',
"metagram":'''Metagram Relay''',
"hostname":'''NIC Host Name Server''',
"iso-tsap":'''ISO-TSAP Class 0''',
"gppitnp":'''Genesis Point-to-Point Trans Net''',
"acr-nema":'''ACR-NEMA Digital Imag. & Comm. 300''',
"cso":'''CCSO name server protocol''',
"csnet-ns":'''Mailbox Name Nameserver''',
"3com-tsmux":'''3COM-TSMUX''',
"rtelnet":'''Remote Telnet Service''',
"snagas":'''SNA Gateway Access Server''',
"pop2":'''Post Office Protocol - Version 2''',
"pop3":'''Post Office Protocol - Version 3''',
"sunrpc":'''SUN Remote Procedure Call''',
"mcidas":'''McIDAS Data Transmission Protocol''',
"auth":'''Authentication Service''',
"sftp":'''Simple File Transfer Protocol''',
"ansanotify":'''ANSA REX Notify''',
"uucp-path":'''UUCP Path Service''',
"sqlserv":'''SQL Services''',
"nntp":'''Network News Transfer Protocol''',
"cfdptkt":'''CFDPTKT''',
"erpc":'''Encore Expedited Remote Pro.Call''',
"smakynet":'''SMAKYNET''',
"ntp":'''Network Time Protocol''',
"ansatrader":'''ANSA REX Trader''',
"locus-map":'''Locus PC-Interface Net Map Ser''',
"nxedit":'''NXEdit''',
"locus-con":'''Locus PC-Interface Conn Server''',
"gss-xlicen":'''GSS X License Verification''',
"pwdgen":'''Password Generator Protocol''',
"cisco-fna":'''cisco FNATIVE''',
"cisco-tna":'''cisco TNATIVE''',
"cisco-sys":'''cisco SYSMAINT''',
"statsrv":'''Statistics Service''',
"ingres-net":'''INGRES-NET Service''',
"epmap":'''DCE endpoint resolution''',
"profile":'''PROFILE Naming System''',
"netbios-ns":'''NETBIOS Name Service''',
"netbios-dgm":'''NETBIOS Datagram Service''',
"netbios-ssn":'''NETBIOS Session Service''',
"emfis-data":'''EMFIS Data Service''',
"emfis-cntl":'''EMFIS Control Service''',
"bl-idm":'''Britton-Lee IDM''',
"imap":'''Internet Message Access Protocol''',
"uma":'''Universal Management Architecture''',
"uaac":'''UAAC Protocol''',
"iso-tp0":'''ISO-IP0''',
"iso-ip":'''ISO-IP''',
"jargon":'''Jargon''',
"aed-512":'''AED 512 Emulation Service''',
"sql-net":'''SQL-NET''',
"hems":'''HEMS''',
"bftp":'''Background File Transfer Program''',
"sgmp":'''SGMP''',
"netsc-prod":'''NETSC''',
"netsc-dev":'''NETSC''',
"sqlsrv":'''SQL Service''',
"knet-cmp":'''KNET/VM Command/Message Protocol''',
"pcmail-srv":'''PCMail Server''',
"nss-routing":'''NSS-Routing''',
"sgmp-traps":'''SGMP-TRAPS''',
"snmp":'''SNMP''',
"snmptrap":'''SNMPTRAP''',
"cmip-man":'''CMIP/TCP Manager''',
"cmip-agent":'''CMIP/TCP Agent''',
"xns-courier":'''Xerox''',
"s-net":'''Sirius Systems''',
"namp":'''NAMP''',
"rsvd":'''RSVD''',
"send":'''SEND''',
"print-srv":'''Network PostScript''',
"multiplex":'''Network Innovations Multiplex''',
"cl-1":'''Network Innovations CL/1
IANA assigned this well-formed service name as a replacement for "cl/1".''',
"cl/1":'''Network Innovations CL/1''',
"xyplex-mux":'''Xyplex''',
"mailq":'''MAILQ''',
"vmnet":'''VMNET''',
"genrad-mux":'''GENRAD-MUX''',
"xdmcp":'''X Display Manager Control Protocol''',
"nextstep":'''NextStep Window Server''',
"bgp":'''Border Gateway Protocol''',
"ris":'''Intergraph''',
"unify":'''Unify''',
"audit":'''Unisys Audit SITP''',
"ocbinder":'''OCBinder''',
"ocserver":'''OCServer''',
"remote-kis":'''Remote-KIS''',
"kis":'''KIS Protocol''',
"aci":'''Application Communication Interface''',
"mumps":'''Plus Five's MUMPS''',
"qft":'''Queued File Transport''',
"gacp":'''Gateway Access Control Protocol''',
"prospero":'''Prospero Directory Service''',
"osu-nms":'''OSU Network Monitoring System''',
"srmp":'''Spider Remote Monitoring Protocol''',
"irc":'''Internet Relay Chat Protocol''',
"dn6-nlm-aud":'''DNSIX Network Level Module Audit''',
"dn6-smm-red":'''DNSIX Session Mgt Module Audit Redir''',
"dls":'''Directory Location Service''',
"dls-mon":'''Directory Location Service Monitor''',
"smux":'''SMUX''',
"src":'''IBM System Resource Controller''',
"at-rtmp":'''AppleTalk Routing Maintenance''',
"at-nbp":'''AppleTalk Name Binding''',
"at-3":'''AppleTalk Unused''',
"at-echo":'''AppleTalk Echo''',
"at-5":'''AppleTalk Unused''',
"at-zis":'''AppleTalk Zone Information''',
"at-7":'''AppleTalk Unused''',
"at-8":'''AppleTalk Unused''',
"qmtp":'''The Quick Mail Transfer Protocol''',
"z39-50":'''ANSI Z39.50
IANA assigned this well-formed service name as a replacement for "z39.50".''',
"z39.50":'''ANSI Z39.50''',
"914c-g":'''Texas Instruments 914C/G Terminal
IANA assigned this well-formed service name as a replacement for "914c/g".''',
"914c/g":'''Texas Instruments 914C/G Terminal''',
"anet":'''ATEXSSTR''',
"ipx":'''IPX''',
"vmpwscs":'''VM PWSCS''',
"softpc":'''Insignia Solutions''',
"CAIlic":'''Computer Associates Int'l License Server''',
"dbase":'''dBASE Unix''',
"mpp":'''Netix Message Posting Protocol''',
"uarps":'''Unisys ARPs''',
"imap3":'''Interactive Mail Access Protocol v3''',
"fln-spx":'''Berkeley rlogind with SPX auth''',
"rsh-spx":'''Berkeley rshd with SPX auth''',
"cdc":'''Certificate Distribution Center''',
"masqdialer":'''masqdialer''',
"direct":'''Direct''',
"sur-meas":'''Survey Measurement''',
"inbusiness":'''inbusiness''',
"link":'''LINK''',
"dsp3270":'''Display Systems Protocol''',
"subntbcst-tftp":'''SUBNTBCST_TFTP
IANA assigned this well-formed service name as a replacement for "subntbcst_tftp".''',
"subntbcst_tftp":'''SUBNTBCST_TFTP''',
"bhfhs":'''bhfhs''',
"rap":'''RAP''',
"set":'''Secure Electronic Transaction''',
"esro-gen":'''Efficient Short Remote Operations''',
"openport":'''Openport''',
"nsiiops":'''IIOP Name Service over TLS/SSL''',
"arcisdms":'''Arcisdms''',
"hdap":'''HDAP''',
"bgmp":'''BGMP''',
"x-bone-ctl":'''X-Bone CTL''',
"sst":'''SCSI on ST''',
"td-service":'''Tobit David Service Layer''',
"td-replica":'''Tobit David Replica''',
"manet":'''MANET Protocols''',
"gist":'''Q-mode encapsulation for GIST messages''',
"http-mgmt":'''http-mgmt''',
"personal-link":'''Personal Link''',
"cableport-ax":'''Cable Port A/X''',
"rescap":'''rescap''',
"corerjd":'''corerjd''',
"fxp":'''FXP Communication''',
"k-block":'''K-BLOCK''',
"novastorbakcup":'''Novastor Backup''',
"entrusttime":'''EntrustTime''',
"bhmds":'''bhmds''',
"asip-webadmin":'''AppleShare IP WebAdmin''',
"vslmp":'''VSLMP''',
"magenta-logic":'''Magenta Logic''',
"opalis-robot":'''Opalis Robot''',
"dpsi":'''DPSI''',
"decauth":'''decAuth''',
"zannet":'''Zannet''',
"pkix-timestamp":'''PKIX TimeStamp''',
"ptp-event":'''PTP Event''',
"ptp-general":'''PTP General''',
"pip":'''PIP''',
"rtsps":'''RTSPS''',
"texar":'''Texar Security Port''',
"pdap":'''Prospero Data Access Protocol''',
"pawserv":'''Perf Analysis Workbench''',
"zserv":'''Zebra server''',
"fatserv":'''Fatmen Server''',
"csi-sgwp":'''Cabletron Management Protocol''',
"mftp":'''mftp''',
"matip-type-a":'''MATIP Type A''',
"matip-type-b":'''MATIP Type B''',
"bhoetty":'''bhoetty''',
"dtag-ste-sb":'''DTAG''',
"bhoedap4":'''bhoedap4''',
"ndsauth":'''NDSAUTH''',
"bh611":'''bh611''',
"datex-asn":'''DATEX-ASN''',
"cloanto-net-1":'''Cloanto Net 1''',
"bhevent":'''bhevent''',
"shrinkwrap":'''Shrinkwrap''',
"nsrmp":'''Network Security Risk Management Protocol''',
"scoi2odialog":'''scoi2odialog''',
"semantix":'''Semantix''',
"srssend":'''SRS Send''',
"rsvp-tunnel":'''RSVP Tunnel
IANA assigned this well-formed service name as a replacement for "rsvp_tunnel".''',
"rsvp_tunnel":'''RSVP Tunnel''',
"aurora-cmgr":'''Aurora CMGR''',
"dtk":'''DTK''',
"odmr":'''ODMR''',
"mortgageware":'''MortgageWare''',
"qbikgdp":'''QbikGDP''',
"rpc2portmap":'''rpc2portmap''',
"codaauth2":'''codaauth2''',
"clearcase":'''Clearcase''',
"ulistproc":'''ListProcessor''',
"legent-1":'''Legent Corporation''',
"legent-2":'''Legent Corporation''',
"hassle":'''Hassle''',
"nip":'''Amiga Envoy Network Inquiry Proto''',
"tnETOS":'''NEC Corporation''',
"dsETOS":'''NEC Corporation''',
"is99c":'''TIA/EIA/IS-99 modem client''',
"is99s":'''TIA/EIA/IS-99 modem server''',
"hp-collector":'''hp performance data collector''',
"hp-managed-node":'''hp performance data managed node''',
"hp-alarm-mgr":'''hp performance data alarm manager''',
"arns":'''A Remote Network Server System''',
"ibm-app":'''IBM Application''',
"asa":'''ASA Message Router Object Def.''',
"aurp":'''Appletalk Update-Based Routing Pro.''',
"unidata-ldm":'''Unidata LDM''',
"ldap":'''Lightweight Directory Access Protocol''',
"uis":'''UIS''',
"synotics-relay":'''SynOptics SNMP Relay Port''',
"synotics-broker":'''SynOptics Port Broker Port''',
"meta5":'''Meta5''',
"embl-ndt":'''EMBL Nucleic Data Transfer''',
"netcp":'''NetScout Control Protocol''',
"netware-ip":'''Novell Netware over IP''',
"mptn":'''Multi Protocol Trans. Net.''',
"kryptolan":'''Kryptolan''',
"iso-tsap-c2":'''ISO Transport Class 2 Non-Control over UDP''',
"osb-sd":'''Oracle Secure Backup''',
"ups":'''Uninterruptible Power Supply''',
"genie":'''Genie Protocol''',
"decap":'''decap''',
"nced":'''nced''',
"ncld":'''ncld''',
"imsp":'''Interactive Mail Support Protocol''',
"timbuktu":'''Timbuktu''',
"prm-sm":'''Prospero Resource Manager Sys. Man.''',
"prm-nm":'''Prospero Resource Manager Node Man.''',
"decladebug":'''DECLadebug Remote Debug Protocol''',
"rmt":'''Remote MT Protocol''',
"synoptics-trap":'''Trap Convention Port''',
"smsp":'''Storage Management Services Protocol''',
"infoseek":'''InfoSeek''',
"bnet":'''BNet''',
"silverplatter":'''Silverplatter''',
"onmux":'''Onmux''',
"hyper-g":'''Hyper-G''',
"ariel1":'''Ariel 1''',
"smpte":'''SMPTE''',
"ariel2":'''Ariel 2''',
"ariel3":'''Ariel 3''',
"opc-job-start":'''IBM Operations Planning and Control Start''',
"opc-job-track":'''IBM Operations Planning and Control Track''',
"icad-el":'''ICAD''',
"smartsdp":'''smartsdp''',
"svrloc":'''Server Location''',
"ocs-cmu":'''OCS_CMU
IANA assigned this well-formed service name as a replacement for "ocs_cmu".''',
"ocs_cmu":'''OCS_CMU''',
"ocs-amu":'''OCS_AMU
IANA assigned this well-formed service name as a replacement for "ocs_amu".''',
"ocs_amu":'''OCS_AMU''',
"utmpsd":'''UTMPSD''',
"utmpcd":'''UTMPCD''',
"iasd":'''IASD''',
"nnsp":'''NNSP''',
"mobileip-agent":'''MobileIP-Agent''',
"mobilip-mn":'''MobilIP-MN''',
"dna-cml":'''DNA-CML''',
"comscm":'''comscm''',
"dsfgw":'''dsfgw''',
"dasp":'''dasp''',
"sgcp":'''sgcp''',
"decvms-sysmgt":'''decvms-sysmgt''',
"cvc-hostd":'''cvc_hostd
IANA assigned this well-formed service name as a replacement for "cvc_hostd".''',
"cvc_hostd":'''cvc_hostd''',
"https":'''http protocol over TLS/SSL''',
"snpp":'''Simple Network Paging Protocol''',
"microsoft-ds":'''Microsoft-DS''',
"ddm-rdb":'''DDM-Remote Relational Database Access''',
"ddm-dfm":'''DDM-Distributed File Management''',
"ddm-ssl":'''DDM-Remote DB Access Using Secure Sockets''',
"as-servermap":'''AS Server Mapper''',
"tserver":'''Computer Supported Telecomunication Applications''',
"sfs-smp-net":'''Cray Network Semaphore server''',
"sfs-config":'''Cray SFS config server''',
"creativeserver":'''CreativeServer''',
"contentserver":'''ContentServer''',
"creativepartnr":'''CreativePartnr''',
"macon-udp":'''macon-udp''',
"scohelp":'''scohelp''',
"appleqtc":'''apple quick time''',
"ampr-rcmd":'''ampr-rcmd''',
"skronk":'''skronk''',
"datasurfsrv":'''DataRampSrv''',
"datasurfsrvsec":'''DataRampSrvSec''',
"alpes":'''alpes''',
"kpasswd":'''kpasswd''',
"igmpv3lite":'''IGMP over UDP for SSM''',
"digital-vrc":'''digital-vrc''',
"mylex-mapd":'''mylex-mapd''',
"photuris":'''proturis''',
"rcp":'''Radio Control Protocol''',
"scx-proxy":'''scx-proxy''',
"mondex":'''Mondex''',
"ljk-login":'''ljk-login''',
"hybrid-pop":'''hybrid-pop''',
"tn-tl-w2":'''tn-tl-w2''',
"tcpnethaspsrv":'''tcpnethaspsrv''',
"tn-tl-fd1":'''tn-tl-fd1''',
"ss7ns":'''ss7ns''',
"spsc":'''spsc''',
"iafserver":'''iafserver''',
"iafdbase":'''iafdbase''',
"ph":'''Ph service''',
"bgs-nsi":'''bgs-nsi''',
"ulpnet":'''ulpnet''',
"integra-sme":'''Integra Software Management Environment''',
"powerburst":'''Air Soft Power Burst''',
"avian":'''avian''',
"saft":'''saft Simple Asynchronous File Transfer''',
"gss-http":'''gss-http''',
"nest-protocol":'''nest-protocol''',
"micom-pfs":'''micom-pfs''',
"go-login":'''go-login''',
"ticf-1":'''Transport Independent Convergence for FNA''',
"ticf-2":'''Transport Independent Convergence for FNA''',
"pov-ray":'''POV-Ray''',
"intecourier":'''intecourier''',
"pim-rp-disc":'''PIM-RP-DISC''',
"retrospect":'''Retrospect backup and restore service''',
"siam":'''siam''',
"iso-ill":'''ISO ILL Protocol''',
"isakmp":'''isakmp''',
"stmf":'''STMF''',
"asa-appl-proto":'''asa-appl-proto''',
"intrinsa":'''Intrinsa''',
"citadel":'''citadel''',
"mailbox-lm":'''mailbox-lm''',
"ohimsrv":'''ohimsrv''',
"crs":'''crs''',
"xvttp":'''xvttp''',
"snare":'''snare''',
"fcp":'''FirstClass Protocol''',
"passgo":'''PassGo''',
"comsat":'''''',
"biff":'''used by mail system to notify users of new mail received; currently receives messages only from processes on the same machine''',
"who":'''maintains data bases showing who's logged in to machines on a local net and the load average of the machine''',
"syslog":'''''',
"printer":'''spooler''',
"videotex":'''videotex''',
"talk":'''like tenex link, but across machine - unfortunately, doesn't use link protocol (this is actually just a rendezvous port from which a tcp connection is established)''',
"ntalk":'''''',
"utime":'''unixtime''',
"router":'''local routing process (on site); uses variant of Xerox NS routing information protocol - RIP''',
"ripng":'''ripng''',
"ulp":'''ULP''',
"ibm-db2":'''IBM-DB2''',
"ncp":'''NCP''',
"timed":'''timeserver''',
"tempo":'''newdate''',
"stx":'''Stock IXChange''',
"custix":'''Customer IXChange''',
"irc-serv":'''IRC-SERV''',
"courier":'''rpc''',
"conference":'''chat''',
"netnews":'''readnews''',
"netwall":'''for emergency broadcasts''',
"windream":'''windream Admin''',
"iiop":'''iiop''',
"opalis-rdv":'''opalis-rdv''',
"nmsp":'''Networked Media Streaming Protocol''',
"gdomap":'''gdomap''',
"apertus-ldp":'''Apertus Technologies Load Determination''',
"uucp":'''uucpd''',
"uucp-rlogin":'''uucp-rlogin''',
"commerce":'''commerce''',
"klogin":'''''',
"kshell":'''krcmd''',
"appleqtcsrvr":'''appleqtcsrvr''',
"dhcpv6-client":'''DHCPv6 Client''',
"dhcpv6-server":'''DHCPv6 Server''',
"afpovertcp":'''AFP over TCP''',
"idfp":'''IDFP''',
"new-rwho":'''new-who''',
"cybercash":'''cybercash''',
"devshr-nts":'''DeviceShare''',
"pirp":'''pirp''',
"rtsp":'''Real Time Streaming Protocol (RTSP)''',
"dsf":'''''',
"remotefs":'''rfs server''',
"openvms-sysipc":'''openvms-sysipc''',
"sdnskmp":'''SDNSKMP''',
"teedtap":'''TEEDTAP''',
"rmonitor":'''rmonitord''',
"monitor":'''''',
"chshell":'''chcmd''',
"nntps":'''nntp protocol over TLS/SSL (was snntp)''',
"9pfs":'''plan 9 file service''',
"whoami":'''whoami''',
"streettalk":'''streettalk''',
"banyan-rpc":'''banyan-rpc''',
"ms-shuttle":'''microsoft shuttle''',
"ms-rome":'''microsoft rome''',
"meter":'''demon''',
"meter":'''udemon''',
"sonar":'''sonar''',
"banyan-vip":'''banyan-vip''',
"ftp-agent":'''FTP Software Agent System''',
"vemmi":'''VEMMI''',
"ipcd":'''ipcd''',
"vnas":'''vnas''',
"ipdd":'''ipdd''',
"decbsrv":'''decbsrv''',
"sntp-heartbeat":'''SNTP HEARTBEAT''',
"bdp":'''Bundle Discovery Protocol''',
"scc-security":'''SCC Security''',
"philips-vc":'''Philips Video-Conferencing''',
"keyserver":'''Key Server''',
"password-chg":'''Password Change''',
"submission":'''Message Submission''',
"cal":'''CAL''',
"eyelink":'''EyeLink''',
"tns-cml":'''TNS CML''',
"http-alt":'''FileMaker, Inc. - HTTP Alternate (see Port 80)''',
"eudora-set":'''Eudora Set''',
"http-rpc-epmap":'''HTTP RPC Ep Map''',
"tpip":'''TPIP''',
"cab-protocol":'''CAB Protocol''',
"smsd":'''SMSD''',
"ptcnameservice":'''PTC Name Service''',
"sco-websrvrmg3":'''SCO Web Server Manager 3''',
"acp":'''Aeolon Core Protocol''',
"ipcserver":'''Sun IPC server''',
"syslog-conn":'''Reliable Syslog Service''',
"xmlrpc-beep":'''XML-RPC over BEEP''',
"idxp":'''IDXP''',
"tunnel":'''TUNNEL''',
"soap-beep":'''SOAP over BEEP''',
"urm":'''Cray Unified Resource Manager''',
"nqs":'''nqs''',
"sift-uft":'''Sender-Initiated/Unsolicited File Transfer''',
"npmp-trap":'''npmp-trap''',
"npmp-local":'''npmp-local''',
"npmp-gui":'''npmp-gui''',
"hmmp-ind":'''HMMP Indication''',
"hmmp-op":'''HMMP Operation''',
"sshell":'''SSLshell''',
"sco-inetmgr":'''Internet Configuration Manager''',
"sco-sysmgr":'''SCO System Administration Server''',
"sco-dtmgr":'''SCO Desktop Administration Server''',
"dei-icda":'''DEI-ICDA''',
"compaq-evm":'''Compaq EVM''',
"sco-websrvrmgr":'''SCO WebServer Manager''',
"escp-ip":'''ESCP''',
"collaborator":'''Collaborator''',
"asf-rmcp":'''ASF Remote Management and Control Protocol''',
"cryptoadmin":'''Crypto Admin''',
"dec-dlm":'''DEC DLM
IANA assigned this well-formed service name as a replacement for "dec_dlm".''',
"dec_dlm":'''DEC DLM''',
"asia":'''ASIA''',
"passgo-tivoli":'''PassGo Tivoli''',
"qmqp":'''QMQP''',
"3com-amp3":'''3Com AMP3''',
"rda":'''RDA''',
"ipp":'''IPP (Internet Printing Protocol)''',
"bmpp":'''bmpp''',
"servstat":'''Service Status update (Sterling Software)''',
"ginad":'''ginad''',
"rlzdbase":'''RLZ DBase''',
"ldaps":'''ldap protocol over TLS/SSL (was sldap)''',
"lanserver":'''lanserver''',
"mcns-sec":'''mcns-sec''',
"msdp":'''MSDP''',
"entrust-sps":'''entrust-sps''',
"repcmd":'''repcmd''',
"esro-emsdp":'''ESRO-EMSDP V1.3''',
"sanity":'''SANity''',
"dwr":'''dwr''',
"pssc":'''PSSC''',
"ldp":'''LDP''',
"dhcp-failover":'''DHCP Failover''',
"rrp":'''Registry Registrar Protocol (RRP)''',
"cadview-3d":'''Cadview-3d - streaming 3d models over the internet''',
"obex":'''OBEX''',
"ieee-mms":'''IEEE MMS''',
"hello-port":'''HELLO_PORT''',
"repscmd":'''RepCmd''',
"aodv":'''AODV''',
"tinc":'''TINC''',
"spmp":'''SPMP''',
"rmc":'''RMC''',
"tenfold":'''TenFold''',
"mac-srvr-admin":'''MacOS Server Admin''',
"hap":'''HAP''',
"pftp":'''PFTP''',
"purenoise":'''PureNoise''',
"asf-secure-rmcp":'''ASF Secure Remote Management and Control Protocol''',
"sun-dr":'''Sun DR''',
"mdqs":'''''',
"doom":'''doom Id Software''',
"disclose":'''campaign contribution disclosures - SDR Technologies''',
"mecomm":'''MeComm''',
"meregister":'''MeRegister''',
"vacdsm-sws":'''VACDSM-SWS''',
"vacdsm-app":'''VACDSM-APP''',
"vpps-qua":'''VPPS-QUA''',
"cimplex":'''CIMPLEX''',
"acap":'''ACAP''',
"dctp":'''DCTP''',
"vpps-via":'''VPPS Via''',
"vpp":'''Virtual Presence Protocol''',
"ggf-ncp":'''GNU Generation Foundation NCP''',
"mrm":'''MRM''',
"entrust-aaas":'''entrust-aaas''',
"entrust-aams":'''entrust-aams''',
"xfr":'''XFR''',
"corba-iiop":'''CORBA IIOP''',
"corba-iiop-ssl":'''CORBA IIOP SSL''',
"mdc-portmapper":'''MDC Port Mapper''',
"hcp-wismar":'''Hardware Control Protocol Wismar''',
"asipregistry":'''asipregistry''',
"realm-rusd":'''ApplianceWare managment protocol''',
"nmap":'''NMAP''',
"vatp":'''Velazquez Application Transfer Protocol''',
"msexch-routing":'''MS Exchange Routing''',
"hyperwave-isp":'''Hyperwave-ISP''',
"connendp":'''almanid Connection Endpoint''',
"ha-cluster":'''ha-cluster''',
"ieee-mms-ssl":'''IEEE-MMS-SSL''',
"rushd":'''RUSHD''',
"uuidgen":'''UUIDGEN''',
"olsr":'''OLSR''',
"accessnetwork":'''Access Network''',
"epp":'''Extensible Provisioning Protocol''',
"lmp":'''Link Management Protocol (LMP)''',
"iris-beep":'''IRIS over BEEP''',
"elcsd":'''errlog copy/server daemon''',
"agentx":'''AgentX''',
"silc":'''SILC''',
"borland-dsj":'''Borland DSJ''',
"entrust-kmsh":'''Entrust Key Management Service Handler''',
"entrust-ash":'''Entrust Administration Service Handler''',
"cisco-tdp":'''Cisco TDP''',
"tbrpf":'''TBRPF''',
"iris-xpc":'''IRIS over XPC''',
"iris-xpcs":'''IRIS over XPCS''',
"iris-lwz":'''IRIS-LWZ''',
"pana":'''PANA Messages''',
"netviewdm1":'''IBM NetView DM/6000 Server/Client''',
"netviewdm2":'''IBM NetView DM/6000 send/tcp''',
"netviewdm3":'''IBM NetView DM/6000 receive/tcp''',
"netgw":'''netGW''',
"netrcs":'''Network based Rev. Cont. Sys.''',
"flexlm":'''Flexible License Manager''',
"fujitsu-dev":'''Fujitsu Device Control''',
"ris-cm":'''Russell Info Sci Calendar Manager''',
"kerberos-adm":'''kerberos administration''',
"loadav":'''''',
"kerberos-iv":'''kerberos version iv''',
"pump":'''''',
"qrh":'''''',
"rrh":'''''',
"tell":'''send''',
"nlogin":'''''',
"con":'''''',
"ns":'''''',
"rxe":'''''',
"quotad":'''''',
"cycleserv":'''''',
"omserv":'''''',
"webster":'''''',
"phonebook":'''phone''',
"vid":'''''',
"cadlock":'''''',
"rtip":'''''',
"cycleserv2":'''''',
"notify":'''''',
"acmaint-dbd":'''
IANA assigned this well-formed service name as a replacement for "acmaint_dbd".''',
"acmaint_dbd":'''''',
"acmaint-transd":'''
IANA assigned this well-formed service name as a replacement for "acmaint_transd".''',
"acmaint_transd":'''''',
"wpages":'''''',
"multiling-http":'''Multiling HTTP''',
"wpgs":'''''',
"mdbs-daemon":'''
IANA assigned this well-formed service name as a replacement for "mdbs_daemon".''',
"mdbs_daemon":'''''',
"device":'''''',
"fcp-udp":'''FCP Datagram''',
"itm-mcell-s":'''itm-mcell-s''',
"pkix-3-ca-ra":'''PKIX-3 CA/RA''',
"netconf-ssh":'''NETCONF over SSH''',
"netconf-beep":'''NETCONF over BEEP''',
"netconfsoaphttp":'''NETCONF for SOAP over HTTPS''',
"netconfsoapbeep":'''NETCONF for SOAP over BEEP''',
"dhcp-failover2":'''dhcp-failover 2''',
"gdoi":'''GDOI''',
"iscsi":'''iSCSI''',
"owamp-control":'''OWAMP-Control''',
"twamp-control":'''Two-way Active Measurement Protocol (TWAMP) Control''',
"rsync":'''rsync''',
"iclcnet-locate":'''ICL coNETion locate server''',
"iclcnet-svinfo":'''ICL coNETion server info
IANA assigned this well-formed service name as a replacement for "iclcnet_svinfo".''',
"iclcnet_svinfo":'''ICL coNETion server info''',
"accessbuilder":'''AccessBuilder''',
"omginitialrefs":'''OMG Initial Refs''',
"smpnameres":'''SMPNAMERES''',
"ideafarm-door":'''self documenting Door: send 0x00 for info''',
"ideafarm-panic":'''self documenting Panic Door: send 0x00 for info''',
"kink":'''Kerberized Internet Negotiation of Keys (KINK)''',
"xact-backup":'''xact-backup''',
"apex-mesh":'''APEX relay-relay service''',
"apex-edge":'''APEX endpoint-relay service''',
"ftps-data":'''ftp protocol, data, over TLS/SSL''',
"ftps":'''ftp protocol, control, over TLS/SSL''',
"nas":'''Netnews Administration System''',
"telnets":'''telnet protocol over TLS/SSL''',
"imaps":'''imap4 protocol over TLS/SSL''',
"pop3s":'''pop3 protocol over TLS/SSL (was spop3)''',
"vsinet":'''vsinet''',
"maitrd":'''''',
"puparp":'''''',
"applix":'''Applix ac''',
"puprouter":'''''',
"cadlock2":'''''',
"surf":'''surf''',
"exp1":'''RFC3692-style Experiment 1''',
"exp2":'''RFC3692-style Experiment 2''',
"blackjack":'''network blackjack''',
"cap":'''Calendar Access Protocol''',
"6a44":'''IPv6 Behind NAT44 CPEs''',
"solid-mux":'''Solid Mux Server''',
"iad1":'''BBN IAD''',
"iad2":'''BBN IAD''',
"iad3":'''BBN IAD''',
"netinfo-local":'''local netinfo port''',
"activesync":'''ActiveSync Notifications''',
"mxxrlogin":'''MX-XR RPC''',
"nsstp":'''Nebula Secure Segment Transfer Protocol''',
"ams":'''AMS''',
"mtqp":'''Message Tracking Query Protocol''',
"sbl":'''Streamlined Blackhole''',
"netarx":'''Netarx Netcare''',
"danf-ak2":'''AK2 Product''',
"afrog":'''Subnet Roaming''',
"boinc-client":'''BOINC Client Control''',
"dcutility":'''Dev Consortium Utility''',
"fpitp":'''Fingerprint Image Transfer Protocol''',
"wfremotertm":'''WebFilter Remote Monitor''',
"neod1":'''Sun's NEO Object Request Broker''',
"neod2":'''Sun's NEO Object Request Broker''',
"td-postman":'''Tobit David Postman VPMN''',
"cma":'''CORBA Management Agent''',
"optima-vnet":'''Optima VNET''',
"ddt":'''Dynamic DNS Tools''',
"remote-as":'''Remote Assistant (RA)''',
"brvread":'''BRVREAD''',
"ansyslmd":'''ANSYS - License Manager''',
"vfo":'''VFO''',
"startron":'''STARTRON''',
"nim":'''nim''',
"nimreg":'''nimreg''',
"polestar":'''POLESTAR''',
"kiosk":'''KIOSK''',
"veracity":'''Veracity''',
"kyoceranetdev":'''KyoceraNetDev''',
"jstel":'''JSTEL''',
"syscomlan":'''SYSCOMLAN''',
"fpo-fns":'''FPO-FNS''',
"instl-boots":'''Installation Bootstrap Proto. Serv.
IANA assigned this well-formed service name as a replacement for "instl_boots".''',
"instl_boots":'''Installation Bootstrap Proto. Serv.''',
"instl-bootc":'''Installation Bootstrap Proto. Cli.
IANA assigned this well-formed service name as a replacement for "instl_bootc".''',
"instl_bootc":'''Installation Bootstrap Proto. Cli.''',
"cognex-insight":'''COGNEX-INSIGHT''',
"gmrupdateserv":'''GMRUpdateSERV''',
"bsquare-voip":'''BSQUARE-VOIP''',
"cardax":'''CARDAX''',
"bridgecontrol":'''Bridge Control''',
"warmspotMgmt":'''Warmspot Management Protocol''',
"rdrmshc":'''RDRMSHC''',
"dab-sti-c":'''DAB STI-C''',
"imgames":'''IMGames''',
"avocent-proxy":'''Avocent Proxy Protocol''',
"asprovatalk":'''ASPROVATalk''',
"socks":'''Socks''',
"pvuniwien":'''PVUNIWIEN''',
"amt-esd-prot":'''AMT-ESD-PROT''',
"ansoft-lm-1":'''Anasoft License Manager''',
"ansoft-lm-2":'''Anasoft License Manager''',
"webobjects":'''Web Objects''',
"cplscrambler-lg":'''CPL Scrambler Logging''',
"cplscrambler-in":'''CPL Scrambler Internal''',
"cplscrambler-al":'''CPL Scrambler Alarm Log''',
"ff-annunc":'''FF Annunciation''',
"ff-fms":'''FF Fieldbus Message Specification''',
"ff-sm":'''FF System Management''',
"obrpd":'''Open Business Reporting Protocol''',
"proofd":'''PROOFD''',
"rootd":'''ROOTD''',
"nicelink":'''NICELink''',
"cnrprotocol":'''Common Name Resolution Protocol''',
"sunclustermgr":'''Sun Cluster Manager''',
"rmiactivation":'''RMI Activation''',
"rmiregistry":'''RMI Registry''',
"mctp":'''MCTP''',
"pt2-discover":'''PT2-DISCOVER''',
"adobeserver-1":'''ADOBE SERVER 1''',
"adobeserver-2":'''ADOBE SERVER 2''',
"xrl":'''XRL''',
"ftranhc":'''FTRANHC''',
"isoipsigport-1":'''ISOIPSIGPORT-1''',
"isoipsigport-2":'''ISOIPSIGPORT-2''',
"ratio-adp":'''ratio-adp''',
"nfsd-keepalive":'''Client status info''',
"lmsocialserver":'''LM Social Server''',
"icp":'''Intelligent Communication Protocol''',
"ltp-deepspace":'''Licklider Transmission Protocol''',
"mini-sql":'''Mini SQL''',
"ardus-trns":'''ARDUS Transfer''',
"ardus-cntl":'''ARDUS Control''',
"ardus-mtrns":'''ARDUS Multicast Transfer''',
"sacred":'''SACRED''',
"bnetgame":'''Battle.net Chat/Game Protocol''',
"bnetfile":'''Battle.net File Transfer Protocol''',
"rmpp":'''Datalode RMPP''',
"availant-mgr":'''availant-mgr''',
"murray":'''Murray''',
"hpvmmcontrol":'''HP VMM Control''',
"hpvmmagent":'''HP VMM Agent''',
"hpvmmdata":'''HP VMM Agent''',
"kwdb-commn":'''KWDB Remote Communication''',
"saphostctrl":'''SAPHostControl over SOAP/HTTP''',
"saphostctrls":'''SAPHostControl over SOAP/HTTPS''',
"casp":'''CAC App Service Protocol''',
"caspssl":'''CAC App Service Protocol Encripted''',
"kvm-via-ip":'''KVM-via-IP Management Service''',
"dfn":'''Data Flow Network''',
"aplx":'''MicroAPL APLX''',
"omnivision":'''OmniVision Communication Service''',
"hhb-gateway":'''HHB Gateway Control''',
"trim":'''TRIM Workgroup Service''',
"encrypted-admin":'''encrypted admin requests
IANA assigned this well-formed service name as a replacement for "encrypted_admin".''',
"encrypted_admin":'''encrypted admin requests''',
"evm":'''Enterprise Virtual Manager''',
"autonoc":'''AutoNOC Network Operations Protocol''',
"mxomss":'''User Message Service''',
"edtools":'''User Discovery Service''',
"imyx":'''Infomatryx Exchange''',
"fuscript":'''Fusion Script''',
"x9-icue":'''X9 iCue Show Control''',
"audit-transfer":'''audit transfer''',
"capioverlan":'''CAPIoverLAN''',
"elfiq-repl":'''Elfiq Replication Service''',
"bvtsonar":'''BVT Sonar Service''',
"blaze":'''Blaze File Server''',
"unizensus":'''Unizensus Login Server''',
"winpoplanmess":'''Winpopup LAN Messenger''',
"c1222-acse":'''ANSI C12.22 Port''',
"resacommunity":'''Community Service''',
"nfa":'''Network File Access''',
"iascontrol-oms":'''iasControl OMS''',
"iascontrol":'''Oracle iASControl''',
"dbcontrol-oms":'''dbControl OMS''',
"oracle-oms":'''Oracle OMS''',
"olsv":'''DB Lite Mult-User Server''',
"health-polling":'''Health Polling''',
"health-trap":'''Health Trap''',
"sddp":'''SmartDialer Data Protocol''',
"qsm-proxy":'''QSM Proxy Service''',
"qsm-gui":'''QSM GUI Service''',
"qsm-remote":'''QSM RemoteExec''',
"cisco-ipsla":'''Cisco IP SLAs Control Protocol''',
"vchat":'''VChat Conference Service''',
"tripwire":'''TRIPWIRE''',
"atc-lm":'''AT+C License Manager''',
"atc-appserver":'''AT+C FmiApplicationServer''',
"dnap":'''DNA Protocol''',
"d-cinema-rrp":'''D-Cinema Request-Response''',
"fnet-remote-ui":'''FlashNet Remote Admin''',
"dossier":'''Dossier Server''',
"indigo-server":'''Indigo Home Server''',
"dkmessenger":'''DKMessenger Protocol''',
"sgi-storman":'''SGI Storage Manager''',
"b2n":'''Backup To Neighbor''',
"mc-client":'''Millicent Client Proxy''',
"3comnetman":'''3Com Net Management''',
"accelenet-data":'''AcceleNet Data''',
"llsurfup-http":'''LL Surfup HTTP''',
"llsurfup-https":'''LL Surfup HTTPS''',
"catchpole":'''Catchpole port''',
"mysql-cluster":'''MySQL Cluster Manager''',
"alias":'''Alias Service''',
"hp-webadmin":'''HP Web Admin''',
"unet":'''Unet Connection''',
"commlinx-avl":'''CommLinx GPS / AVL System''',
"gpfs":'''General Parallel File System''',
"caids-sensor":'''caids sensors channel''',
"fiveacross":'''Five Across Server''',
"openvpn":'''OpenVPN''',
"rsf-1":'''RSF-1 clustering''',
"netmagic":'''Network Magic''',
"carrius-rshell":'''Carrius Remote Access''',
"cajo-discovery":'''cajo reference discovery''',
"dmidi":'''DMIDI''',
"scol":'''SCOL''',
"nucleus-sand":'''Nucleus Sand Database Server''',
"caiccipc":'''caiccipc''',
"ssslic-mgr":'''License Validation''',
"ssslog-mgr":'''Log Request Listener''',
"accord-mgc":'''Accord-MGC''',
"anthony-data":'''Anthony Data''',
"metasage":'''MetaSage''',
"seagull-ais":'''SEAGULL AIS''',
"ipcd3":'''IPCD3''',
"eoss":'''EOSS''',
"groove-dpp":'''Groove DPP''',
"lupa":'''lupa''',
"mpc-lifenet":'''MPC LIFENET''',
"kazaa":'''KAZAA''',
"scanstat-1":'''scanSTAT 1.0''',
"etebac5":'''ETEBAC 5''',
"hpss-ndapi":'''HPSS NonDCE Gateway''',
"aeroflight-ads":'''AeroFlight-ADs''',
"aeroflight-ret":'''AeroFlight-Ret''',
"qt-serveradmin":'''QT SERVER ADMIN''',
"sweetware-apps":'''SweetWARE Apps''',
"nerv":'''SNI R&D network''',
"tgp":'''TrulyGlobal Protocol''',
"vpnz":'''VPNz''',
"slinkysearch":'''SLINKYSEARCH''',
"stgxfws":'''STGXFWS''',
"dns2go":'''DNS2Go''',
"florence":'''FLORENCE''',
"zented":'''ZENworks Tiered Electronic Distribution''',
"periscope":'''Periscope''',
"menandmice-lpm":'''menandmice-lpm''',
"univ-appserver":'''Universal App Server''',
"search-agent":'''Infoseek Search Agent''',
"mosaicsyssvc1":'''mosaicsyssvc1''',
"bvcontrol":'''bvcontrol''',
"tsdos390":'''tsdos390''',
"hacl-qs":'''hacl-qs''',
"nmsd":'''NMSD''',
"instantia":'''Instantia''',
"nessus":'''nessus''',
"nmasoverip":'''NMAS over IP''',
"serialgateway":'''SerialGateway''',
"isbconference1":'''isbconference1''',
"isbconference2":'''isbconference2''',
"payrouter":'''payrouter''',
"visionpyramid":'''VisionPyramid''',
"hermes":'''hermes''',
"mesavistaco":'''Mesa Vista Co''',
"swldy-sias":'''swldy-sias''',
"servergraph":'''servergraph''',
"bspne-pcc":'''bspne-pcc''',
"q55-pcc":'''q55-pcc''',
"de-noc":'''de-noc''',
"de-cache-query":'''de-cache-query''',
"de-server":'''de-server''',
"shockwave2":'''Shockwave 2''',
"opennl":'''Open Network Library''',
"opennl-voice":'''Open Network Library Voice''',
"ibm-ssd":'''ibm-ssd''',
"mpshrsv":'''mpshrsv''',
"qnts-orb":'''QNTS-ORB''',
"dka":'''dka''',
"prat":'''PRAT''',
"dssiapi":'''DSSIAPI''',
"dellpwrappks":'''DELLPWRAPPKS''',
"epc":'''eTrust Policy Compliance''',
"propel-msgsys":'''PROPEL-MSGSYS''',
"watilapp":'''WATiLaPP''',
"opsmgr":'''Microsoft Operations Manager''',
"excw":'''eXcW''',
"cspmlockmgr":'''CSPMLockMgr''',
"emc-gateway":'''EMC-Gateway''',
"t1distproc":'''t1distproc''',
"ivcollector":'''ivcollector''',
"ivmanager":'''ivmanager''',
"miva-mqs":'''mqs''',
"dellwebadmin-1":'''Dell Web Admin 1''',
"dellwebadmin-2":'''Dell Web Admin 2''',
"pictrography":'''Pictrography''',
"healthd":'''healthd''',
"emperion":'''Emperion''',
"productinfo":'''Product Information''',
"iee-qfx":'''IEE-QFX''',
"neoiface":'''neoiface''',
"netuitive":'''netuitive''',
"routematch":'''RouteMatch Com''',
"navbuddy":'''NavBuddy''',
"jwalkserver":'''JWalkServer''',
"winjaserver":'''WinJaServer''',
"seagulllms":'''SEAGULLLMS''',
"dsdn":'''dsdn''',
"pkt-krb-ipsec":'''PKT-KRB-IPSec''',
"cmmdriver":'''CMMdriver''',
"ehtp":'''End-by-Hop Transmission Protocol''',
"dproxy":'''dproxy''',
"sdproxy":'''sdproxy''',
"lpcp":'''lpcp''',
"hp-sci":'''hp-sci''',
"h323hostcallsc":'''H323 Host Call Secure''',
"ci3-software-1":'''CI3-Software-1''',
"ci3-software-2":'''CI3-Software-2''',
"sftsrv":'''sftsrv''',
"boomerang":'''Boomerang''',
"pe-mike":'''pe-mike''',
"re-conn-proto":'''RE-Conn-Proto''',
"pacmand":'''Pacmand''',
"odsi":'''Optical Domain Service Interconnect (ODSI)''',
"jtag-server":'''JTAG server''',
"husky":'''Husky''',
"rxmon":'''RxMon''',
"sti-envision":'''STI Envision''',
"bmc-patroldb":'''BMC_PATROLDB
IANA assigned this well-formed service name as a replacement for "bmc_patroldb".''',
"bmc_patroldb":'''BMC_PATROLDB''',
"pdps":'''Photoscript Distributed Printing System''',
"els":'''E.L.S., Event Listener Service''',
"exbit-escp":'''Exbit-ESCP''',
"vrts-ipcserver":'''vrts-ipcserver''',
"krb5gatekeeper":'''krb5gatekeeper''',
"amx-icsp":'''AMX-ICSP''',
"amx-axbnet":'''AMX-AXBNET''',
"pip":'''PIP''',
"novation":'''Novation''',
"brcd":'''brcd''',
"delta-mcp":'''delta-mcp''',
"dx-instrument":'''DX-Instrument''',
"wimsic":'''WIMSIC''',
"ultrex":'''Ultrex''',
"ewall":'''EWALL''',
"netdb-export":'''netdb-export''',
"streetperfect":'''StreetPerfect''',
"intersan":'''intersan''',
"pcia-rxp-b":'''PCIA RXP-B''',
"passwrd-policy":'''Password Policy''',
"writesrv":'''writesrv''',
"digital-notary":'''Digital Notary Protocol''',
"ischat":'''Instant Service Chat''',
"menandmice-dns":'''menandmice DNS''',
"wmc-log-svc":'''WMC-log-svr''',
"kjtsiteserver":'''kjtsiteserver''',
"naap":'''NAAP''',
"qubes":'''QuBES''',
"esbroker":'''ESBroker''',
"re101":'''re101''',
"icap":'''ICAP''',
"vpjp":'''VPJP''',
"alta-ana-lm":'''Alta Analytics License Manager''',
"bbn-mmc":'''multi media conferencing''',
"bbn-mmx":'''multi media conferencing''',
"sbook":'''Registration Network Protocol''',
"editbench":'''Registration Network Protocol''',
"equationbuilder":'''Digital Tool Works (MIT)''',
"lotusnote":'''Lotus Note''',
"relief":'''Relief Consulting''',
"XSIP-network":'''Five Across XSIP Network''',
"intuitive-edge":'''Intuitive Edge''',
"cuillamartin":'''CuillaMartin Company''',
"pegboard":'''Electronic PegBoard''',
"connlcli":'''CONNLCLI''',
"ftsrv":'''FTSRV''',
"mimer":'''MIMER''',
"linx":'''LinX''',
"timeflies":'''TimeFlies''',
"ndm-requester":'''Network DataMover Requester''',
"ndm-server":'''Network DataMover Server''',
"adapt-sna":'''Network Software Associates''',
"netware-csp":'''Novell NetWare Comm Service Platform''',
"dcs":'''DCS''',
"screencast":'''ScreenCast''',
"gv-us":'''GlobalView to Unix Shell''',
"us-gv":'''Unix Shell to GlobalView''',
"fc-cli":'''Fujitsu Config Protocol''',
"fc-ser":'''Fujitsu Config Protocol''',
"chromagrafx":'''Chromagrafx''',
"molly":'''EPI Software Systems''',
"bytex":'''Bytex''',
"ibm-pps":'''IBM Person to Person Software''',
"cichlid":'''Cichlid License Manager''',
"elan":'''Elan License Manager''',
"dbreporter":'''Integrity Solutions''',
"telesis-licman":'''Telesis Network License Manager''',
"apple-licman":'''Apple Network License Manager''',
"udt-os":'''udt_os
IANA assigned this well-formed service name as a replacement for "udt_os".''',
"udt_os":'''udt_os''',
"gwha":'''GW Hannaway Network License Manager''',
"os-licman":'''Objective Solutions License Manager''',
"atex-elmd":'''Atex Publishing License Manager
IANA assigned this well-formed service name as a replacement for "atex_elmd".''',
"atex_elmd":'''Atex Publishing License Manager''',
"checksum":'''CheckSum License Manager''',
"cadsi-lm":'''Computer Aided Design Software Inc LM''',
"objective-dbc":'''Objective Solutions DataBase Cache''',
"iclpv-dm":'''Document Manager''',
"iclpv-sc":'''Storage Controller''',
"iclpv-sas":'''Storage Access Server''',
"iclpv-pm":'''Print Manager''',
"iclpv-nls":'''Network Log Server''',
"iclpv-nlc":'''Network Log Client''',
"iclpv-wsm":'''PC Workstation Manager software''',
"dvl-activemail":'''DVL Active Mail''',
"audio-activmail":'''Audio Active Mail''',
"video-activmail":'''Video Active Mail''',
"cadkey-licman":'''Cadkey License Manager''',
"cadkey-tablet":'''Cadkey Tablet Daemon''',
"goldleaf-licman":'''Goldleaf License Manager''',
"prm-sm-np":'''Prospero Resource Manager''',
"prm-nm-np":'''Prospero Resource Manager''',
"igi-lm":'''Infinite Graphics License Manager''',
"ibm-res":'''IBM Remote Execution Starter''',
"netlabs-lm":'''NetLabs License Manager''',
"dbsa-lm":'''DBSA License Manager''',
"sophia-lm":'''Sophia License Manager''',
"here-lm":'''Here License Manager''',
"hiq":'''HiQ License Manager''',
"af":'''AudioFile''',
"innosys":'''InnoSys''',
"innosys-acl":'''Innosys-ACL''',
"ibm-mqseries":'''IBM MQSeries''',
"dbstar":'''DBStar''',
"novell-lu6-2":'''Novell LU6.2
IANA assigned this well-formed service name as a replacement for "novell-lu6.2".''',
"novell-lu6.2":'''Novell LU6.2''',
"timbuktu-srv1":'''Timbuktu Service 1 Port''',
"timbuktu-srv2":'''Timbuktu Service 2 Port''',
"timbuktu-srv3":'''Timbuktu Service 3 Port''',
"timbuktu-srv4":'''Timbuktu Service 4 Port''',
"gandalf-lm":'''Gandalf License Manager''',
"autodesk-lm":'''Autodesk License Manager''',
"essbase":'''Essbase Arbor Software''',
"hybrid":'''Hybrid Encryption Protocol''',
"zion-lm":'''Zion Software License Manager''',
"sais":'''Satellite-data Acquisition System 1''',
"mloadd":'''mloadd monitoring tool''',
"informatik-lm":'''Informatik License Manager''',
"nms":'''Hypercom NMS''',
"tpdu":'''Hypercom TPDU''',
"rgtp":'''Reverse Gossip Transport''',
"blueberry-lm":'''Blueberry Software License Manager''',
"ms-sql-s":'''Microsoft-SQL-Server''',
"ms-sql-m":'''Microsoft-SQL-Monitor''',
"ibm-cics":'''IBM CICS''',
"saism":'''Satellite-data Acquisition System 2''',
"tabula":'''Tabula''',
"eicon-server":'''Eicon Security Agent/Server''',
"eicon-x25":'''Eicon X25/SNA Gateway''',
"eicon-slp":'''Eicon Service Location Protocol''',
"cadis-1":'''Cadis License Management''',
"cadis-2":'''Cadis License Management''',
"ies-lm":'''Integrated Engineering Software''',
"marcam-lm":'''Marcam License Management''',
"proxima-lm":'''Proxima License Manager''',
"ora-lm":'''Optical Research Associates License Manager''',
"apri-lm":'''Applied Parallel Research LM''',
"oc-lm":'''OpenConnect License Manager''',
"peport":'''PEport''',
"dwf":'''Tandem Distributed Workbench Facility''',
"infoman":'''IBM Information Management''',
"gtegsc-lm":'''GTE Government Systems License Man''',
"genie-lm":'''Genie License Manager''',
"interhdl-elmd":'''interHDL License Manager
IANA assigned this well-formed service name as a replacement for "interhdl_elmd".''',
"interhdl_elmd":'''interHDL License Manager''',
"esl-lm":'''ESL License Manager''',
"dca":'''DCA''',
"valisys-lm":'''Valisys License Manager''',
"nrcabq-lm":'''Nichols Research Corp.''',
"proshare1":'''Proshare Notebook Application''',
"proshare2":'''Proshare Notebook Application''',
"ibm-wrless-lan":'''IBM Wireless LAN
IANA assigned this well-formed service name as a replacement for "ibm_wrless_lan".''',
"ibm_wrless_lan":'''IBM Wireless LAN''',
"world-lm":'''World License Manager''',
"nucleus":'''Nucleus''',
"msl-lmd":'''MSL License Manager
IANA assigned this well-formed service name as a replacement for "msl_lmd".''',
"msl_lmd":'''MSL License Manager''',
"pipes":'''Pipes Platform''',
"oceansoft-lm":'''Ocean Software License Manager''',
"csdmbase":'''CSDMBASE''',
"csdm":'''CSDM''',
"aal-lm":'''Active Analysis Limited License Manager''',
"uaiact":'''Universal Analytics''',
"csdmbase":'''csdmbase''',
"csdm":'''csdm''',
"openmath":'''OpenMath''',
"telefinder":'''Telefinder''',
"taligent-lm":'''Taligent License Manager''',
"clvm-cfg":'''clvm-cfg''',
"ms-sna-server":'''ms-sna-server''',
"ms-sna-base":'''ms-sna-base''',
"dberegister":'''dberegister''',
"pacerforum":'''PacerForum''',
"airs":'''AIRS''',
"miteksys-lm":'''Miteksys License Manager''',
"afs":'''AFS License Manager''',
"confluent":'''Confluent License Manager''',
"lansource":'''LANSource''',
"nms-topo-serv":'''nms_topo_serv
IANA assigned this well-formed service name as a replacement for "nms_topo_serv".''',
"nms_topo_serv":'''nms_topo_serv''',
"localinfosrvr":'''LocalInfoSrvr''',
"docstor":'''DocStor''',
"dmdocbroker":'''dmdocbroker''',
"insitu-conf":'''insitu-conf''',
"stone-design-1":'''stone-design-1''',
"netmap-lm":'''netmap_lm
IANA assigned this well-formed service name as a replacement for "netmap_lm".''',
"netmap_lm":'''netmap_lm''',
"ica":'''ica''',
"cvc":'''cvc''',
"liberty-lm":'''liberty-lm''',
"rfx-lm":'''rfx-lm''',
"sybase-sqlany":'''Sybase SQL Any''',
"fhc":'''Federico Heinz Consultora''',
"vlsi-lm":'''VLSI License Manager''',
"saiscm":'''Satellite-data Acquisition System 3''',
"shivadiscovery":'''Shiva''',
"imtc-mcs":'''Databeam''',
"evb-elm":'''EVB Software Engineering License Manager''',
"funkproxy":'''Funk Software, Inc.''',
"utcd":'''Universal Time daemon (utcd)''',
"symplex":'''symplex''',
"diagmond":'''diagmond''',
"robcad-lm":'''Robcad, Ltd. License Manager''',
"mvx-lm":'''Midland Valley Exploration Ltd. Lic. Man.''',
"3l-l1":'''3l-l1''',
"wins":'''Microsoft's Windows Internet Name Service''',
"fujitsu-dtc":'''Fujitsu Systems Business of America, Inc''',
"fujitsu-dtcns":'''Fujitsu Systems Business of America, Inc''',
"ifor-protocol":'''ifor-protocol''',
"vpad":'''Virtual Places Audio data''',
"vpac":'''Virtual Places Audio control''',
"vpvd":'''Virtual Places Video data''',
"vpvc":'''Virtual Places Video control''',
"atm-zip-office":'''atm zip office''',
"ncube-lm":'''nCube License Manager''',
"ricardo-lm":'''Ricardo North America License Manager''',
"cichild-lm":'''cichild''',
"ingreslock":'''ingres''',
"orasrv":'''oracle''',
"prospero-np":'''Prospero Directory Service non-priv''',
"pdap-np":'''Prospero Data Access Prot non-priv''',
"tlisrv":'''oracle''',
"coauthor":'''oracle''',
"rap-service":'''rap-service''',
"rap-listen":'''rap-listen''',
"miroconnect":'''miroconnect''',
"virtual-places":'''Virtual Places Software''',
"micromuse-lm":'''micromuse-lm''',
"ampr-info":'''ampr-info''',
"ampr-inter":'''ampr-inter''',
"sdsc-lm":'''isi-lm''',
"3ds-lm":'''3ds-lm''',
"intellistor-lm":'''Intellistor License Manager''',
"rds":'''rds''',
"rds2":'''rds2''',
"gridgen-elmd":'''gridgen-elmd''',
"simba-cs":'''simba-cs''',
"aspeclmd":'''aspeclmd''',
"vistium-share":'''vistium-share''',
"abbaccuray":'''abbaccuray''',
"laplink":'''laplink''',
"axon-lm":'''Axon License Manager''',
"shivasound":'''Shiva Sound''',
"3m-image-lm":'''Image Storage license manager 3M Company''',
"hecmtl-db":'''HECMTL-DB''',
"pciarray":'''pciarray''',
"sna-cs":'''sna-cs''',
"caci-lm":'''CACI Products Company License Manager''',
"livelan":'''livelan''',
"veritas-pbx":'''VERITAS Private Branch Exchange
IANA assigned this well-formed service name as a replacement for "veritas_pbx".''',
"veritas_pbx":'''VERITAS Private Branch Exchange''',
"arbortext-lm":'''ArborText License Manager''',
"xingmpeg":'''xingmpeg''',
"web2host":'''web2host''',
"asci-val":'''ASCI-RemoteSHADOW''',
"facilityview":'''facilityview''',
"pconnectmgr":'''pconnectmgr''',
"cadabra-lm":'''Cadabra License Manager''',
"pay-per-view":'''Pay-Per-View''',
"winddlb":'''WinDD''',
"corelvideo":'''CORELVIDEO''',
"jlicelmd":'''jlicelmd''',
"tsspmap":'''tsspmap''',
"ets":'''ets''',
"orbixd":'''orbixd''',
"rdb-dbs-disp":'''Oracle Remote Data Base''',
"chip-lm":'''Chipcom License Manager''',
"itscomm-ns":'''itscomm-ns''',
"mvel-lm":'''mvel-lm''',
"oraclenames":'''oraclenames''',
"moldflow-lm":'''Moldflow License Manager''',
"hypercube-lm":'''hypercube-lm''',
"jacobus-lm":'''Jacobus License Manager''',
"ioc-sea-lm":'''ioc-sea-lm''',
"tn-tl-r2":'''tn-tl-r2''',
"mil-2045-47001":'''MIL-2045-47001''',
"msims":'''MSIMS''',
"simbaexpress":'''simbaexpress''',
"tn-tl-fd2":'''tn-tl-fd2''',
"intv":'''intv''',
"ibm-abtact":'''ibm-abtact''',
"pra-elmd":'''pra_elmd
IANA assigned this well-formed service name as a replacement for "pra_elmd".''',
"pra_elmd":'''pra_elmd''',
"triquest-lm":'''triquest-lm''',
"vqp":'''VQP''',
"gemini-lm":'''gemini-lm''',
"ncpm-pm":'''ncpm-pm''',
"commonspace":'''commonspace''',
"mainsoft-lm":'''mainsoft-lm''',
"sixtrak":'''sixtrak''',
"radio":'''radio''',
"radio-bc":'''radio-bc''',
"orbplus-iiop":'''orbplus-iiop''',
"picknfs":'''picknfs''',
"simbaservices":'''simbaservices''',
"issd":'''issd''',
"aas":'''aas''',
"inspect":'''inspect''',
"picodbc":'''pickodbc''',
"icabrowser":'''icabrowser''',
"slp":'''Salutation Manager (Salutation Protocol)''',
"slm-api":'''Salutation Manager (SLM-API)''',
"stt":'''stt''',
"smart-lm":'''Smart Corp. License Manager''',
"isysg-lm":'''isysg-lm''',
"taurus-wh":'''taurus-wh''',
"ill":'''Inter Library Loan''',
"netbill-trans":'''NetBill Transaction Server''',
"netbill-keyrep":'''NetBill Key Repository''',
"netbill-cred":'''NetBill Credential Server''',
"netbill-auth":'''NetBill Authorization Server''',
"netbill-prod":'''NetBill Product Server''',
"nimrod-agent":'''Nimrod Inter-Agent Communication''',
"skytelnet":'''skytelnet''',
"xs-openstorage":'''xs-openstorage''',
"faxportwinport":'''faxportwinport''',
"softdataphone":'''softdataphone''',
"ontime":'''ontime''',
"jaleosnd":'''jaleosnd''',
"udp-sr-port":'''udp-sr-port''',
"svs-omagent":'''svs-omagent''',
"shockwave":'''Shockwave''',
"t128-gateway":'''T.128 Gateway''',
"lontalk-norm":'''LonTalk normal''',
"lontalk-urgnt":'''LonTalk urgent''',
"oraclenet8cman":'''Oracle Net8 Cman''',
"visitview":'''Visit view''',
"pammratc":'''PAMMRATC''',
"pammrpc":'''PAMMRPC''',
"loaprobe":'''Log On America Probe''',
"edb-server1":'''EDB Server 1''',
"isdc":'''ISP shared public data control''',
"islc":'''ISP shared local data control''',
"ismc":'''ISP shared management control''',
"cert-initiator":'''cert-initiator''',
"cert-responder":'''cert-responder''',
"invision":'''InVision''',
"isis-am":'''isis-am''',
"isis-ambc":'''isis-ambc''',
"saiseh":'''Satellite-data Acquisition System 4''',
"sightline":'''SightLine''',
"sa-msg-port":'''sa-msg-port''',
"rsap":'''rsap''',
"concurrent-lm":'''concurrent-lm''',
"kermit":'''kermit''',
"nkd":'''nkd''',
"shiva-confsrvr":'''shiva_confsrvr
IANA assigned this well-formed service name as a replacement for "shiva_confsrvr".''',
"shiva_confsrvr":'''shiva_confsrvr''',
"xnmp":'''xnmp''',
"alphatech-lm":'''alphatech-lm''',
"stargatealerts":'''stargatealerts''',
"dec-mbadmin":'''dec-mbadmin''',
"dec-mbadmin-h":'''dec-mbadmin-h''',
"fujitsu-mmpdc":'''fujitsu-mmpdc''',
"sixnetudr":'''sixnetudr''',
"sg-lm":'''Silicon Grail License Manager''',
"skip-mc-gikreq":'''skip-mc-gikreq''',
"netview-aix-1":'''netview-aix-1''',
"netview-aix-2":'''netview-aix-2''',
"netview-aix-3":'''netview-aix-3''',
"netview-aix-4":'''netview-aix-4''',
"netview-aix-5":'''netview-aix-5''',
"netview-aix-6":'''netview-aix-6''',
"netview-aix-7":'''netview-aix-7''',
"netview-aix-8":'''netview-aix-8''',
"netview-aix-9":'''netview-aix-9''',
"netview-aix-10":'''netview-aix-10''',
"netview-aix-11":'''netview-aix-11''',
"netview-aix-12":'''netview-aix-12''',
"proshare-mc-1":'''Intel Proshare Multicast''',
"proshare-mc-2":'''Intel Proshare Multicast''',
"pdp":'''Pacific Data Products''',
"netcomm2":'''netcomm2''',
"groupwise":'''groupwise''',
"prolink":'''prolink''',
"darcorp-lm":'''darcorp-lm''',
"microcom-sbp":'''microcom-sbp''',
"sd-elmd":'''sd-elmd''',
"lanyon-lantern":'''lanyon-lantern''',
"ncpm-hip":'''ncpm-hip''',
"snaresecure":'''SnareSecure''',
"n2nremote":'''n2nremote''',
"cvmon":'''cvmon''',
"nsjtp-ctrl":'''nsjtp-ctrl''',
"nsjtp-data":'''nsjtp-data''',
"firefox":'''firefox''',
"ng-umds":'''ng-umds''',
"empire-empuma":'''empire-empuma''',
"sstsys-lm":'''sstsys-lm''',
"rrirtr":'''rrirtr''',
"rrimwm":'''rrimwm''',
"rrilwm":'''rrilwm''',
"rrifmm":'''rrifmm''',
"rrisat":'''rrisat''',
"rsvp-encap-1":'''RSVP-ENCAPSULATION-1''',
"rsvp-encap-2":'''RSVP-ENCAPSULATION-2''',
"mps-raft":'''mps-raft''',
"l2f":'''l2f''',
"l2tp":'''l2tp''',
"deskshare":'''deskshare''',
"hb-engine":'''hb-engine''',
"bcs-broker":'''bcs-broker''',
"slingshot":'''slingshot''',
"jetform":'''jetform''',
"vdmplay":'''vdmplay''',
"gat-lmd":'''gat-lmd''',
"centra":'''centra''',
"impera":'''impera''',
"pptconference":'''pptconference''',
"registrar":'''resource monitoring service''',
"conferencetalk":'''ConferenceTalk''',
"sesi-lm":'''sesi-lm''',
"houdini-lm":'''houdini-lm''',
"xmsg":'''xmsg''',
"fj-hdnet":'''fj-hdnet''',
"h323gatedisc":'''h323gatedisc''',
"h323gatestat":'''h323gatestat''',
"h323hostcall":'''h323hostcall''',
"caicci":'''caicci''',
"hks-lm":'''HKS License Manager''',
"pptp":'''pptp''',
"csbphonemaster":'''csbphonemaster''',
"iden-ralp":'''iden-ralp''',
"iberiagames":'''IBERIAGAMES''',
"winddx":'''winddx''',
"telindus":'''TELINDUS''',
"citynl":'''CityNL License Management''',
"roketz":'''roketz''',
"msiccp":'''MSICCP''',
"proxim":'''proxim''',
"siipat":'''SIMS - SIIPAT Protocol for Alarm Transmission''',
"cambertx-lm":'''Camber Corporation License Management''',
"privatechat":'''PrivateChat''',
"street-stream":'''street-stream''',
"ultimad":'''ultimad''',
"gamegen1":'''GameGen1''',
"webaccess":'''webaccess''',
"encore":'''encore''',
"cisco-net-mgmt":'''cisco-net-mgmt''',
"3Com-nsd":'''3Com-nsd''',
"cinegrfx-lm":'''Cinema Graphics License Manager''',
"ncpm-ft":'''ncpm-ft''',
"remote-winsock":'''remote-winsock''',
"ftrapid-1":'''ftrapid-1''',
"ftrapid-2":'''ftrapid-2''',
"oracle-em1":'''oracle-em1''',
"aspen-services":'''aspen-services''',
"sslp":'''Simple Socket Library's PortMaster''',
"swiftnet":'''SwiftNet''',
"lofr-lm":'''Leap of Faith Research License Manager''',
"oracle-em2":'''oracle-em2''',
"ms-streaming":'''ms-streaming''',
"capfast-lmd":'''capfast-lmd''',
"cnhrp":'''cnhrp''',
"tftp-mcast":'''tftp-mcast''',
"spss-lm":'''SPSS License Manager''',
"www-ldap-gw":'''www-ldap-gw''',
"cft-0":'''cft-0''',
"cft-1":'''cft-1''',
"cft-2":'''cft-2''',
"cft-3":'''cft-3''',
"cft-4":'''cft-4''',
"cft-5":'''cft-5''',
"cft-6":'''cft-6''',
"cft-7":'''cft-7''',
"bmc-net-adm":'''bmc-net-adm''',
"bmc-net-svc":'''bmc-net-svc''',
"vaultbase":'''vaultbase''',
"essweb-gw":'''EssWeb Gateway''',
"kmscontrol":'''KMSControl''',
"global-dtserv":'''global-dtserv''',
"femis":'''Federal Emergency Management Information System''',
"powerguardian":'''powerguardian''',
"prodigy-intrnet":'''prodigy-internet''',
"pharmasoft":'''pharmasoft''',
"dpkeyserv":'''dpkeyserv''',
"answersoft-lm":'''answersoft-lm''',
"hp-hcip":'''hp-hcip''',
"finle-lm":'''Finle License Manager''',
"windlm":'''Wind River Systems License Manager''',
"funk-logger":'''funk-logger''',
"funk-license":'''funk-license''',
"psmond":'''psmond''',
"hello":'''hello''',
"nmsp":'''Narrative Media Streaming Protocol''',
"ea1":'''EA1''',
"ibm-dt-2":'''ibm-dt-2''',
"rsc-robot":'''rsc-robot''',
"cera-bcm":'''cera-bcm''',
"dpi-proxy":'''dpi-proxy''',
"vocaltec-admin":'''Vocaltec Server Administration''',
"uma":'''UMA''',
"etp":'''Event Transfer Protocol''',
"netrisk":'''NETRISK''',
"ansys-lm":'''ANSYS-License manager''',
"msmq":'''Microsoft Message Que''',
"concomp1":'''ConComp1''',
"hp-hcip-gwy":'''HP-HCIP-GWY''',
"enl":'''ENL''',
"enl-name":'''ENL-Name''',
"musiconline":'''Musiconline''',
"fhsp":'''Fujitsu Hot Standby Protocol''',
"oracle-vp2":'''Oracle-VP2''',
"oracle-vp1":'''Oracle-VP1''',
"jerand-lm":'''Jerand License Manager''',
"scientia-sdb":'''Scientia-SDB''',
"radius":'''RADIUS''',
"radius-acct":'''RADIUS Accounting''',
"tdp-suite":'''TDP Suite''',
"mmpft":'''MMPFT''',
"harp":'''HARP''',
"rkb-oscs":'''RKB-OSCS''',
"etftp":'''Enhanced Trivial File Transfer Protocol''',
"plato-lm":'''Plato License Manager''',
"mcagent":'''mcagent''',
"donnyworld":'''donnyworld''',
"es-elmd":'''es-elmd''',
"unisys-lm":'''Unisys Natural Language License Manager''',
"metrics-pas":'''metrics-pas''',
"direcpc-video":'''DirecPC Video''',
"ardt":'''ARDT''',
"asi":'''ASI''',
"itm-mcell-u":'''itm-mcell-u''',
"optika-emedia":'''Optika eMedia''',
"net8-cman":'''Oracle Net8 CMan Admin''',
"myrtle":'''Myrtle''',
"tht-treasure":'''ThoughtTreasure''',
"udpradio":'''udpradio''',
"ardusuni":'''ARDUS Unicast''',
"ardusmul":'''ARDUS Multicast''',
"ste-smsc":'''ste-smsc''',
"csoft1":'''csoft1''',
"talnet":'''TALNET''',
"netopia-vo1":'''netopia-vo1''',
"netopia-vo2":'''netopia-vo2''',
"netopia-vo3":'''netopia-vo3''',
"netopia-vo4":'''netopia-vo4''',
"netopia-vo5":'''netopia-vo5''',
"direcpc-dll":'''DirecPC-DLL''',
"altalink":'''altalink''',
"tunstall-pnc":'''Tunstall PNC''',
"slp-notify":'''SLP Notification''',
"fjdocdist":'''fjdocdist''',
"alpha-sms":'''ALPHA-SMS''',
"gsi":'''GSI''',
"ctcd":'''ctcd''',
"virtual-time":'''Virtual Time''',
"vids-avtp":'''VIDS-AVTP''',
"buddy-draw":'''Buddy Draw''',
"fiorano-rtrsvc":'''Fiorano RtrSvc''',
"fiorano-msgsvc":'''Fiorano MsgSvc''',
"datacaptor":'''DataCaptor''',
"privateark":'''PrivateArk''',
"gammafetchsvr":'''Gamma Fetcher Server''',
"sunscalar-svc":'''SunSCALAR Services''',
"lecroy-vicp":'''LeCroy VICP''',
"mysql-cm-agent":'''MySQL Cluster Manager Agent''',
"msnp":'''MSNP''',
"paradym-31port":'''Paradym 31 Port''',
"entp":'''ENTP''',
"swrmi":'''swrmi''',
"udrive":'''UDRIVE''',
"viziblebrowser":'''VizibleBrowser''',
"transact":'''TransAct''',
"sunscalar-dns":'''SunSCALAR DNS Service''',
"canocentral0":'''Cano Central 0''',
"canocentral1":'''Cano Central 1''',
"fjmpjps":'''Fjmpjps''',
"fjswapsnp":'''Fjswapsnp''',
"westell-stats":'''westell stats''',
"ewcappsrv":'''ewcappsrv''',
"hp-webqosdb":'''hp-webqosdb''',
"drmsmc":'''drmsmc''',
"nettgain-nms":'''NettGain NMS''',
"vsat-control":'''Gilat VSAT Control''',
"ibm-mqseries2":'''IBM WebSphere MQ Everyplace''',
"ecsqdmn":'''CA eTrust Common Services''',
"ibm-mqisdp":'''IBM MQSeries SCADA''',
"idmaps":'''Internet Distance Map Svc''',
"vrtstrapserver":'''Veritas Trap Server''',
"leoip":'''Leonardo over IP''',
"filex-lport":'''FileX Listening Port''',
"ncconfig":'''NC Config Port''',
"unify-adapter":'''Unify Web Adapter Service''',
"wilkenlistener":'''wilkenListener''',
"childkey-notif":'''ChildKey Notification''',
"childkey-ctrl":'''ChildKey Control''',
"elad":'''ELAD Protocol''',
"o2server-port":'''O2Server Port''',
"b-novative-ls":'''b-novative license server''',
"metaagent":'''MetaAgent''',
"cymtec-port":'''Cymtec secure management''',
"mc2studios":'''MC2Studios''',
"ssdp":'''SSDP''',
"fjicl-tep-a":'''Fujitsu ICL Terminal Emulator Program A''',
"fjicl-tep-b":'''Fujitsu ICL Terminal Emulator Program B''',
"linkname":'''Local Link Name Resolution''',
"fjicl-tep-c":'''Fujitsu ICL Terminal Emulator Program C''',
"sugp":'''Secure UP.Link Gateway Protocol''',
"tpmd":'''TPortMapperReq''',
"intrastar":'''IntraSTAR''',
"dawn":'''Dawn''',
"global-wlink":'''Global World Link''',
"ultrabac":'''UltraBac Software communications port''',
"mtp":'''Starlight Networks Multimedia Transport Protocol''',
"rhp-iibp":'''rhp-iibp''',
"armadp":'''armadp''',
"elm-momentum":'''Elm-Momentum''',
"facelink":'''FACELINK''',
"persona":'''Persoft Persona''',
"noagent":'''nOAgent''',
"can-nds":'''IBM Tivole Directory Service - NDS''',
"can-dch":'''IBM Tivoli Directory Service - DCH''',
"can-ferret":'''IBM Tivoli Directory Service - FERRET''',
"noadmin":'''NoAdmin''',
"tapestry":'''Tapestry''',
"spice":'''SPICE''',
"xiip":'''XIIP''',
"discovery-port":'''Surrogate Discovery Port''',
"egs":'''Evolution Game Server''',
"videte-cipc":'''Videte CIPC Port''',
"emsd-port":'''Expnd Maui Srvr Dscovr''',
"bandwiz-system":'''Bandwiz System - Server''',
"driveappserver":'''Drive AppServer''',
"amdsched":'''AMD SCHED''',
"ctt-broker":'''CTT Broker''',
"xmapi":'''IBM LM MT Agent''',
"xaapi":'''IBM LM Appl Agent''',
"macromedia-fcs":'''Macromedia Flash Communications server MX''',
"jetcmeserver":'''JetCmeServer Server Port''',
"jwserver":'''JetVWay Server Port''',
"jwclient":'''JetVWay Client Port''',
"jvserver":'''JetVision Server Port''',
"jvclient":'''JetVision Client Port''',
"dic-aida":'''DIC-Aida''',
"res":'''Real Enterprise Service''',
"beeyond-media":'''Beeyond Media''',
"close-combat":'''close-combat''',
"dialogic-elmd":'''dialogic-elmd''',
"tekpls":'''tekpls''',
"sentinelsrm":'''SentinelSRM''',
"eye2eye":'''eye2eye''',
"ismaeasdaqlive":'''ISMA Easdaq Live''',
"ismaeasdaqtest":'''ISMA Easdaq Test''',
"bcs-lmserver":'''bcs-lmserver''',
"mpnjsc":'''mpnjsc''',
"rapidbase":'''Rapid Base''',
"abr-api":'''ABR-API (diskbridge)''',
"abr-secure":'''ABR-Secure Data (diskbridge)''',
"vrtl-vmf-ds":'''Vertel VMF DS''',
"unix-status":'''unix-status''',
"dxadmind":'''CA Administration Daemon''',
"simp-all":'''SIMP Channel''',
"nasmanager":'''Merit DAC NASmanager''',
"bts-appserver":'''BTS APPSERVER''',
"biap-mp":'''BIAP-MP''',
"webmachine":'''WebMachine''',
"solid-e-engine":'''SOLID E ENGINE''',
"tivoli-npm":'''Tivoli NPM''',
"slush":'''Slush''',
"sns-quote":'''SNS Quote''',
"lipsinc":'''LIPSinc''',
"lipsinc1":'''LIPSinc 1''',
"netop-rc":'''NetOp Remote Control''',
"netop-school":'''NetOp School''',
"intersys-cache":'''Cache''',
"dlsrap":'''Data Link Switching Remote Access Protocol''',
"drp":'''DRP''',
"tcoflashagent":'''TCO Flash Agent''',
"tcoregagent":'''TCO Reg Agent''',
"tcoaddressbook":'''TCO Address Book''',
"unisql":'''UniSQL''',
"unisql-java":'''UniSQL Java''',
"pearldoc-xact":'''PearlDoc XACT''',
"p2pq":'''p2pQ''',
"estamp":'''Evidentiary Timestamp''',
"lhtp":'''Loophole Test Protocol''',
"bb":'''BB''',
"hsrp":'''Hot Standby Router Protocol''',
"licensedaemon":'''cisco license management''',
"tr-rsrb-p1":'''cisco RSRB Priority 1 port''',
"tr-rsrb-p2":'''cisco RSRB Priority 2 port''',
"tr-rsrb-p3":'''cisco RSRB Priority 3 port''',
"mshnet":'''MHSnet system''',
"stun-p1":'''cisco STUN Priority 1 port''',
"stun-p2":'''cisco STUN Priority 2 port''',
"stun-p3":'''cisco STUN Priority 3 port''',
"ipsendmsg":'''IPsendmsg''',
"snmp-tcp-port":'''cisco SNMP TCP port''',
"stun-port":'''cisco serial tunnel port''',
"perf-port":'''cisco perf port''',
"tr-rsrb-port":'''cisco Remote SRB port''',
"gdp-port":'''cisco Gateway Discovery Protocol''',
"x25-svc-port":'''cisco X.25 service (XOT)''',
"tcp-id-port":'''cisco identification port''',
"cisco-sccp":'''Cisco SCCp''',
"wizard":'''curry''',
"globe":'''''',
"brutus":'''Brutus Server''',
"emce":'''CCWS mm conf''',
"oracle":'''''',
"raid-cd":'''raid''',
"raid-am":'''''',
"terminaldb":'''''',
"whosockami":'''''',
"pipe-server":'''
IANA assigned this well-formed service name as a replacement for "pipe_server".''',
"pipe_server":'''''',
"servserv":'''''',
"raid-ac":'''''',
"raid-cd":'''''',
"raid-sf":'''''',
"raid-cs":'''''',
"bootserver":'''''',
"bootclient":'''''',
"rellpack":'''''',
"about":'''''',
"xinupageserver":'''''',
"xinuexpansion1":'''''',
"xinuexpansion2":'''''',
"xinuexpansion3":'''''',
"xinuexpansion4":'''''',
"xribs":'''''',
"scrabble":'''''',
"shadowserver":'''''',
"submitserver":'''''',
"hsrpv6":'''Hot Standby Router Protocol IPv6''',
"device2":'''''',
"mobrien-chat":'''mobrien-chat''',
"blackboard":'''''',
"glogger":'''''',
"scoremgr":'''''',
"imsldoc":'''''',
"e-dpnet":'''Ethernet WS DP network''',
"applus":'''APplus Application Server''',
"objectmanager":'''''',
"prizma":'''Prizma Monitoring Service''',
"lam":'''''',
"interbase":'''''',
"isis":'''isis''',
"isis-bcast":'''isis-bcast''',
"rimsl":'''''',
"cdfunc":'''''',
"sdfunc":'''''',
"dls":'''''',
"dls-monitor":'''''',
"shilp":'''''',
"nfs":'''Network File System - Sun Microsystems''',
"av-emb-config":'''Avaya EMB Config Port''',
"epnsdp":'''EPNSDP''',
"clearvisn":'''clearVisn Services Port''',
"lot105-ds-upd":'''Lot105 DSuper Updates''',
"weblogin":'''Weblogin Port''',
"iop":'''Iliad-Odyssey Protocol''',
"omnisky":'''OmniSky Port''',
"rich-cp":'''Rich Content Protocol''',
"newwavesearch":'''NewWaveSearchables RMI''',
"bmc-messaging":'''BMC Messaging Service''',
"teleniumdaemon":'''Telenium Daemon IF''',
"netmount":'''NetMount''',
"icg-swp":'''ICG SWP Port''',
"icg-bridge":'''ICG Bridge Port''',
"icg-iprelay":'''ICG IP Relay Port''',
"dlsrpn":'''Data Link Switch Read Port Number''',
"aura":'''AVM USB Remote Architecture''',
"dlswpn":'''Data Link Switch Write Port Number''',
"avauthsrvprtcl":'''Avocent AuthSrv Protocol''',
"event-port":'''HTTP Event Port''',
"ah-esp-encap":'''AH and ESP Encapsulated in UDP packet''',
"acp-port":'''Axon Control Protocol''',
"msync":'''GlobeCast mSync''',
"gxs-data-port":'''DataReel Database Socket''',
"vrtl-vmf-sa":'''Vertel VMF SA''',
"newlixengine":'''Newlix ServerWare Engine''',
"newlixconfig":'''Newlix JSPConfig''',
"tsrmagt":'''Old Tivoli Storage Manager''',
"tpcsrvr":'''IBM Total Productivity Center Server''',
"idware-router":'''IDWARE Router Port''',
"autodesk-nlm":'''Autodesk NLM (FLEXlm)''',
"kme-trap-port":'''KME PRINTER TRAP PORT''',
"infowave":'''Infowave Mobility Server''',
"radsec":'''Secure Radius Service''',
"sunclustergeo":'''SunCluster Geographic''',
"ada-cip":'''ADA Control''',
"gnunet":'''GNUnet''',
"eli":'''ELI - Event Logging Integration''',
"ip-blf":'''IP Busy Lamp Field''',
"sep":'''Security Encapsulation Protocol - SEP''',
"lrp":'''Load Report Protocol''',
"prp":'''PRP''',
"descent3":'''Descent 3''',
"nbx-cc":'''NBX CC''',
"nbx-au":'''NBX AU''',
"nbx-ser":'''NBX SER''',
"nbx-dir":'''NBX DIR''',
"jetformpreview":'''Jet Form Preview''',
"dialog-port":'''Dialog Port''',
"h2250-annex-g":'''H.225.0 Annex G''',
"amiganetfs":'''Amiga Network Filesystem''',
"rtcm-sc104":'''rtcm-sc104''',
"zephyr-srv":'''Zephyr server''',
"zephyr-clt":'''Zephyr serv-hm connection''',
"zephyr-hm":'''Zephyr hostmanager''',
"minipay":'''MiniPay''',
"mzap":'''MZAP''',
"bintec-admin":'''BinTec Admin''',
"comcam":'''Comcam''',
"ergolight":'''Ergolight''',
"umsp":'''UMSP''',
"dsatp":'''OPNET Dynamic Sampling Agent Transaction Protocol''',
"idonix-metanet":'''Idonix MetaNet''',
"hsl-storm":'''HSL StoRM''',
"newheights":'''NEWHEIGHTS''',
"kdm":'''Key Distribution Manager''',
"ccowcmr":'''CCOWCMR''',
"mentaclient":'''MENTACLIENT''',
"mentaserver":'''MENTASERVER''',
"gsigatekeeper":'''GSIGATEKEEPER''',
"qencp":'''Quick Eagle Networks CP''',
"scientia-ssdb":'''SCIENTIA-SSDB''',
"caupc-remote":'''CauPC Remote Control''',
"gtp-control":'''GTP-Control Plane (3GPP)''',
"elatelink":'''ELATELINK''',
"lockstep":'''LOCKSTEP''',
"pktcable-cops":'''PktCable-COPS''',
"index-pc-wb":'''INDEX-PC-WB''',
"net-steward":'''Net Steward Control''',
"cs-live":'''cs-live.com''',
"xds":'''XDS''',
"avantageb2b":'''Avantageb2b''',
"solera-epmap":'''SoleraTec End Point Map''',
"zymed-zpp":'''ZYMED-ZPP''',
"avenue":'''AVENUE''',
"gris":'''Grid Resource Information Server''',
"appworxsrv":'''APPWORXSRV''',
"connect":'''CONNECT''',
"unbind-cluster":'''UNBIND-CLUSTER''',
"ias-auth":'''IAS-AUTH''',
"ias-reg":'''IAS-REG''',
"ias-admind":'''IAS-ADMIND''',
"tdmoip":'''TDM OVER IP''',
"lv-jc":'''Live Vault Job Control''',
"lv-ffx":'''Live Vault Fast Object Transfer''',
"lv-pici":'''Live Vault Remote Diagnostic Console Support''',
"lv-not":'''Live Vault Admin Event Notification''',
"lv-auth":'''Live Vault Authentication''',
"veritas-ucl":'''VERITAS UNIVERSAL COMMUNICATION LAYER''',
"acptsys":'''ACPTSYS''',
"dynamic3d":'''DYNAMIC3D''',
"docent":'''DOCENT''',
"gtp-user":'''GTP-User Plane (3GPP)''',
"ctlptc":'''Control Protocol''',
"stdptc":'''Standard Protocol''',
"brdptc":'''Bridge Protocol''',
"trp":'''Talari Reliable Protocol''',
"xnds":'''Xerox Network Document Scan Protocol''',
"touchnetplus":'''TouchNetPlus Service''',
"gdbremote":'''GDB Remote Debug Port''',
"apc-2160":'''APC 2160''',
"apc-2161":'''APC 2161''',
"navisphere":'''Navisphere''',
"navisphere-sec":'''Navisphere Secure''',
"ddns-v3":'''Dynamic DNS Version 3''',
"x-bone-api":'''X-Bone API''',
"iwserver":'''iwserver''',
"raw-serial":'''Raw Async Serial Link''',
"easy-soft-mux":'''easy-soft Multiplexer''',
"brain":'''Backbone for Academic Information Notification (BRAIN)''',
"eyetv":'''EyeTV Server Port''',
"msfw-storage":'''MS Firewall Storage''',
"msfw-s-storage":'''MS Firewall SecureStorage''',
"msfw-replica":'''MS Firewall Replication''',
"msfw-array":'''MS Firewall Intra Array''',
"airsync":'''Microsoft Desktop AirSync Protocol''',
"rapi":'''Microsoft ActiveSync Remote API''',
"qwave":'''qWAVE Bandwidth Estimate''',
"bitspeer":'''Peer Services for BITS''',
"vmrdp":'''Microsoft RDP for virtual machines''',
"mc-gt-srv":'''Millicent Vendor Gateway Server''',
"eforward":'''eforward''',
"cgn-stat":'''CGN status''',
"cgn-config":'''Code Green configuration''',
"nvd":'''NVD User''',
"onbase-dds":'''OnBase Distributed Disk Services''',
"gtaua":'''Guy-Tek Automated Update Applications''',
"ssmd":'''Sepehr System Management Data''',
"tivoconnect":'''TiVoConnect Beacon''',
"tvbus":'''TvBus Messaging''',
"asdis":'''ASDIS software management''',
"drwcs":'''Dr.Web Enterprise Management Service''',
"mnp-exchange":'''MNP data exchange''',
"onehome-remote":'''OneHome Remote Access''',
"onehome-help":'''OneHome Service Port''',
"ici":'''ICI''',
"ats":'''Advanced Training System Program''',
"imtc-map":'''Int. Multimedia Teleconferencing Cosortium''',
"b2-runtime":'''b2 Runtime Protocol''',
"b2-license":'''b2 License Server''',
"jps":'''Java Presentation Server''',
"hpocbus":'''HP OpenCall bus''',
"hpssd":'''HP Status and Services''',
"hpiod":'''HP I/O Backend''',
"rimf-ps":'''HP RIM for Files Portal Service''',
"noaaport":'''NOAAPORT Broadcast Network''',
"emwin":'''EMWIN''',
"leecoposserver":'''LeeCO POS Server Service''',
"kali":'''Kali''',
"rpi":'''RDQ Protocol Interface''',
"ipcore":'''IPCore.co.za GPRS''',
"vtu-comms":'''VTU data service''',
"gotodevice":'''GoToDevice Device Management''',
"bounzza":'''Bounzza IRC Proxy''',
"netiq-ncap":'''NetIQ NCAP Protocol''',
"netiq":'''NetIQ End2End''',
"rockwell-csp1":'''Rockwell CSP1''',
"EtherNet-IP-1":'''EtherNet/IP I/O
IANA assigned this well-formed service name as a replacement for "EtherNet/IP-1".''',
"EtherNet/IP-1":'''EtherNet/IP I/O''',
"rockwell-csp2":'''Rockwell CSP2''',
"efi-mg":'''Easy Flexible Internet/Multiplayer Games''',
"di-drm":'''Digital Instinct DRM''',
"di-msg":'''DI Messaging Service''',
"ehome-ms":'''eHome Message Server''',
"datalens":'''DataLens Service''',
"queueadm":'''MetaSoft Job Queue Administration Service''',
"wimaxasncp":'''WiMAX ASN Control Plane Protocol''',
"ivs-video":'''IVS Video default''',
"infocrypt":'''INFOCRYPT''',
"directplay":'''DirectPlay''',
"sercomm-wlink":'''Sercomm-WLink''',
"nani":'''Nani''',
"optech-port1-lm":'''Optech Port1 License Manager''',
"aviva-sna":'''AVIVA SNA SERVER''',
"imagequery":'''Image Query''',
"recipe":'''RECIPe''',
"ivsd":'''IVS Daemon''',
"foliocorp":'''Folio Remote Server''',
"magicom":'''Magicom Protocol''',
"nmsserver":'''NMS Server''',
"hao":'''HaO''',
"pc-mta-addrmap":'''PacketCable MTA Addr Map''',
"antidotemgrsvr":'''Antidote Deployment Manager Service''',
"ums":'''User Management Service''',
"rfmp":'''RISO File Manager Protocol''',
"remote-collab":'''remote-collab''',
"dif-port":'''Distributed Framework Port''',
"njenet-ssl":'''NJENET using SSL''',
"dtv-chan-req":'''DTV Channel Request''',
"seispoc":'''Seismic P.O.C. Port''',
"vrtp":'''VRTP - ViRtue Transfer Protocol''',
"pcc-mfp":'''PCC MFP''',
"simple-tx-rx":'''simple text/file transfer''',
"rcts":'''Rotorcraft Communications Test System''',
"apc-2260":'''APC 2260''',
"comotionmaster":'''CoMotion Master Server''',
"comotionback":'''CoMotion Backup Server''',
"ecwcfg":'''ECweb Configuration Service''',
"apx500api-1":'''Audio Precision Apx500 API Port 1''',
"apx500api-2":'''Audio Precision Apx500 API Port 2''',
"mfserver":'''M-files Server''',
"ontobroker":'''OntoBroker''',
"amt":'''AMT''',
"mikey":'''MIKEY''',
"starschool":'''starSchool''',
"mmcals":'''Secure Meeting Maker Scheduling''',
"mmcal":'''Meeting Maker Scheduling''',
"mysql-im":'''MySQL Instance Manager''',
"pcttunnell":'''PCTTunneller''',
"ibridge-data":'''iBridge Conferencing''',
"ibridge-mgmt":'''iBridge Management''',
"bluectrlproxy":'''Bt device control proxy''',
"s3db":'''Simple Stacked Sequences Database''',
"xmquery":'''xmquery''',
"lnvpoller":'''LNVPOLLER''',
"lnvconsole":'''LNVCONSOLE''',
"lnvalarm":'''LNVALARM''',
"lnvstatus":'''LNVSTATUS''',
"lnvmaps":'''LNVMAPS''',
"lnvmailmon":'''LNVMAILMON''',
"nas-metering":'''NAS-Metering''',
"dna":'''DNA''',
"netml":'''NETML''',
"dict-lookup":'''Lookup dict server''',
"sonus-logging":'''Sonus Logging Services''',
"eapsp":'''EPSON Advanced Printer Share Protocol''',
"mib-streaming":'''Sonus Element Management Services''',
"npdbgmngr":'''Network Platform Debug Manager''',
"konshus-lm":'''Konshus License Manager (FLEX)''',
"advant-lm":'''Advant License Manager''',
"theta-lm":'''Theta License Manager (Rainbow)''',
"d2k-datamover1":'''D2K DataMover 1''',
"d2k-datamover2":'''D2K DataMover 2''',
"pc-telecommute":'''PC Telecommute''',
"cvmmon":'''CVMMON''',
"cpq-wbem":'''Compaq HTTP''',
"binderysupport":'''Bindery Support''',
"proxy-gateway":'''Proxy Gateway''',
"attachmate-uts":'''Attachmate UTS''',
"mt-scaleserver":'''MT ScaleServer''',
"tappi-boxnet":'''TAPPI BoxNet''',
"pehelp":'''pehelp''',
"sdhelp":'''sdhelp''',
"sdserver":'''SD Server''',
"sdclient":'''SD Client''',
"messageservice":'''Message Service''',
"wanscaler":'''WANScaler Communication Service''',
"iapp":'''IAPP (Inter Access Point Protocol)''',
"cr-websystems":'''CR WebSystems''',
"precise-sft":'''Precise Sft.''',
"sent-lm":'''SENT License Manager''',
"attachmate-g32":'''Attachmate G32''',
"cadencecontrol":'''Cadence Control''',
"infolibria":'''InfoLibria''',
"siebel-ns":'''Siebel NS''',
"rdlap":'''RDLAP''',
"ofsd":'''ofsd''',
"3d-nfsd":'''3d-nfsd''',
"cosmocall":'''Cosmocall''',
"ansysli":'''ANSYS Licensing Interconnect''',
"idcp":'''IDCP''',
"xingcsm":'''xingcsm''',
"netrix-sftm":'''Netrix SFTM''',
"nvd":'''NVD''',
"tscchat":'''TSCCHAT''',
"agentview":'''AGENTVIEW''',
"rcc-host":'''RCC Host''',
"snapp":'''SNAPP''',
"ace-client":'''ACE Client Auth''',
"ace-proxy":'''ACE Proxy''',
"appleugcontrol":'''Apple UG Control''',
"ideesrv":'''ideesrv''',
"norton-lambert":'''Norton Lambert''',
"3com-webview":'''3Com WebView''',
"wrs-registry":'''WRS Registry
IANA assigned this well-formed service name as a replacement for "wrs_registry".''',
"wrs_registry":'''WRS Registry''',
"xiostatus":'''XIO Status''',
"manage-exec":'''Seagate Manage Exec''',
"nati-logos":'''nati logos''',
"fcmsys":'''fcmsys''',
"dbm":'''dbm''',
"redstorm-join":'''Game Connection Port
IANA assigned this well-formed service name as a replacement for "redstorm_join".''',
"redstorm_join":'''Game Connection Port''',
"redstorm-find":'''Game Announcement and Location
IANA assigned this well-formed service name as a replacement for "redstorm_find".''',
"redstorm_find":'''Game Announcement and Location''',
"redstorm-info":'''Information to query for game status
IANA assigned this well-formed service name as a replacement for "redstorm_info".''',
"redstorm_info":'''Information to query for game status''',
"redstorm-diag":'''Diagnostics Port
IANA assigned this well-formed service name as a replacement for "redstorm_diag".''',
"redstorm_diag":'''Diagnostics Port''',
"psbserver":'''Pharos Booking Server''',
"psrserver":'''psrserver''',
"pslserver":'''pslserver''',
"pspserver":'''pspserver''',
"psprserver":'''psprserver''',
"psdbserver":'''psdbserver''',
"gxtelmd":'''GXT License Managemant''',
"unihub-server":'''UniHub Server''',
"futrix":'''Futrix''',
"flukeserver":'''FlukeServer''',
"nexstorindltd":'''NexstorIndLtd''',
"tl1":'''TL1''',
"digiman":'''digiman''',
"mediacntrlnfsd":'''Media Central NFSD''',
"oi-2000":'''OI-2000''',
"dbref":'''dbref''',
"qip-login":'''qip-login''',
"service-ctrl":'''Service Control''',
"opentable":'''OpenTable''',
"l3-hbmon":'''L3-HBMon''',
"worldwire":'''Compaq WorldWire Port''',
"lanmessenger":'''LanMessenger''',
"compaq-https":'''Compaq HTTPS''',
"ms-olap3":'''Microsoft OLAP''',
"ms-olap4":'''Microsoft OLAP''',
"sd-capacity":'''SD-CAPACITY''',
"sd-data":'''SD-DATA''',
"virtualtape":'''Virtual Tape''',
"vsamredirector":'''VSAM Redirector''',
"mynahautostart":'''MYNAH AutoStart''',
"ovsessionmgr":'''OpenView Session Mgr''',
"rsmtp":'''RSMTP''',
"3com-net-mgmt":'''3COM Net Management''',
"tacticalauth":'''Tactical Auth''',
"ms-olap1":'''MS OLAP 1''',
"ms-olap2":'''MS OLAP 2''',
"lan900-remote":'''LAN900 Remote
IANA assigned this well-formed service name as a replacement for "lan900_remote".''',
"lan900_remote":'''LAN900 Remote''',
"wusage":'''Wusage''',
"ncl":'''NCL''',
"orbiter":'''Orbiter''',
"fmpro-fdal":'''FileMaker, Inc. - Data Access Layer''',
"opequus-server":'''OpEquus Server''',
"cvspserver":'''cvspserver''',
"taskmaster2000":'''TaskMaster 2000 Server''',
"taskmaster2000":'''TaskMaster 2000 Web''',
"iec-104":'''IEC 60870-5-104 process control over IP''',
"trc-netpoll":'''TRC Netpoll''',
"jediserver":'''JediServer''',
"orion":'''Orion''',
"sns-protocol":'''SNS Protocol''',
"vrts-registry":'''VRTS Registry''',
"netwave-ap-mgmt":'''Netwave AP Management''',
"cdn":'''CDN''',
"orion-rmi-reg":'''orion-rmi-reg''',
"beeyond":'''Beeyond''',
"codima-rtp":'''Codima Remote Transaction Protocol''',
"rmtserver":'''RMT Server''',
"composit-server":'''Composit Server''',
"cas":'''cas''',
"attachmate-s2s":'''Attachmate S2S''',
"dslremote-mgmt":'''DSL Remote Management''',
"g-talk":'''G-Talk''',
"crmsbits":'''CRMSBITS''',
"rnrp":'''RNRP''',
"kofax-svr":'''KOFAX-SVR''',
"fjitsuappmgr":'''Fujitsu App Manager''',
"mgcp-gateway":'''Media Gateway Control Protocol Gateway''',
"ott":'''One Way Trip Time''',
"ft-role":'''FT-ROLE''',
"venus":'''venus''',
"venus-se":'''venus-se''',
"codasrv":'''codasrv''',
"codasrv-se":'''codasrv-se''',
"pxc-epmap":'''pxc-epmap''',
"optilogic":'''OptiLogic''',
"topx":'''TOP/X''',
"unicontrol":'''UniControl''',
"msp":'''MSP''',
"sybasedbsynch":'''SybaseDBSynch''',
"spearway":'''Spearway Lockers''',
"pvsw-inet":'''Pervasive I*net Data Server''',
"netangel":'''Netangel''',
"powerclientcsf":'''PowerClient Central Storage Facility''',
"btpp2sectrans":'''BT PP2 Sectrans''',
"dtn1":'''DTN1''',
"bues-service":'''bues_service
IANA assigned this well-formed service name as a replacement for "bues_service".''',
"bues_service":'''bues_service''',
"ovwdb":'''OpenView NNM daemon''',
"hpppssvr":'''hpppsvr''',
"ratl":'''RATL''',
"netadmin":'''netadmin''',
"netchat":'''netchat''',
"snifferclient":'''SnifferClient''',
"madge-ltd":'''madge ltd''',
"indx-dds":'''IndX-DDS''',
"wago-io-system":'''WAGO-IO-SYSTEM''',
"altav-remmgt":'''altav-remmgt''',
"rapido-ip":'''Rapido_IP''',
"griffin":'''griffin''',
"community":'''Community''',
"ms-theater":'''ms-theater''',
"qadmifoper":'''qadmifoper''',
"qadmifevent":'''qadmifevent''',
"lsi-raid-mgmt":'''LSI RAID Management''',
"direcpc-si":'''DirecPC SI''',
"lbm":'''Load Balance Management''',
"lbf":'''Load Balance Forwarding''',
"high-criteria":'''High Criteria''',
"qip-msgd":'''qip_msgd''',
"mti-tcs-comm":'''MTI-TCS-COMM''',
"taskman-port":'''taskman port''',
"seaodbc":'''SeaODBC''',
"c3":'''C3''',
"aker-cdp":'''Aker-cdp''',
"vitalanalysis":'''Vital Analysis''',
"ace-server":'''ACE Server''',
"ace-svr-prop":'''ACE Server Propagation''',
"ssm-cvs":'''SecurSight Certificate Valifation Service''',
"ssm-cssps":'''SecurSight Authentication Server (SSL)''',
"ssm-els":'''SecurSight Event Logging Server (SSL)''',
"powerexchange":'''Informatica PowerExchange Listener''',
"giop":'''Oracle GIOP''',
"giop-ssl":'''Oracle GIOP SSL''',
"ttc":'''Oracle TTC''',
"ttc-ssl":'''Oracle TTC SSL''',
"netobjects1":'''Net Objects1''',
"netobjects2":'''Net Objects2''',
"pns":'''Policy Notice Service''',
"moy-corp":'''Moy Corporation''',
"tsilb":'''TSILB''',
"qip-qdhcp":'''qip_qdhcp''',
"conclave-cpp":'''Conclave CPP''',
"groove":'''GROOVE''',
"talarian-mqs":'''Talarian MQS''',
"bmc-ar":'''BMC AR''',
"fast-rem-serv":'''Fast Remote Services''',
"dirgis":'''DIRGIS''',
"quaddb":'''Quad DB''',
"odn-castraq":'''ODN-CasTraq''',
"unicontrol":'''UniControl''',
"rtsserv":'''Resource Tracking system server''',
"rtsclient":'''Resource Tracking system client''',
"kentrox-prot":'''Kentrox Protocol''',
"nms-dpnss":'''NMS-DPNSS''',
"wlbs":'''WLBS''',
"ppcontrol":'''PowerPlay Control''',
"jbroker":'''jbroker''',
"spock":'''spock''',
"jdatastore":'''JDataStore''',
"fjmpss":'''fjmpss''',
"fjappmgrbulk":'''fjappmgrbulk''',
"metastorm":'''Metastorm''',
"citrixima":'''Citrix IMA''',
"citrixadmin":'''Citrix ADMIN''',
"facsys-ntp":'''Facsys NTP''',
"facsys-router":'''Facsys Router''',
"maincontrol":'''Main Control''',
"call-sig-trans":'''H.323 Annex E call signaling transport''',
"willy":'''Willy''',
"globmsgsvc":'''globmsgsvc''',
"pvsw":'''Pervasive Listener''',
"adaptecmgr":'''Adaptec Manager''',
"windb":'''WinDb''',
"qke-llc-v3":'''Qke LLC V.3''',
"optiwave-lm":'''Optiwave License Management''',
"ms-v-worlds":'''MS V-Worlds''',
"ema-sent-lm":'''EMA License Manager''',
"iqserver":'''IQ Server''',
"ncr-ccl":'''NCR CCL
IANA assigned this well-formed service name as a replacement for "ncr_ccl".''',
"ncr_ccl":'''NCR CCL''',
"utsftp":'''UTS FTP''',
"vrcommerce":'''VR Commerce''',
"ito-e-gui":'''ITO-E GUI''',
"ovtopmd":'''OVTOPMD''',
"snifferserver":'''SnifferServer''',
"combox-web-acc":'''Combox Web Access''',
"madcap":'''MADCAP''',
"btpp2audctr1":'''btpp2audctr1''',
"upgrade":'''Upgrade Protocol''',
"vnwk-prapi":'''vnwk-prapi''',
"vsiadmin":'''VSI Admin''',
"lonworks":'''LonWorks''',
"lonworks2":'''LonWorks2''',
"udrawgraph":'''uDraw(Graph)''',
"reftek":'''REFTEK''',
"novell-zen":'''Management Daemon Refresh''',
"sis-emt":'''sis-emt''',
"vytalvaultbrtp":'''vytalvaultbrtp''',
"vytalvaultvsmp":'''vytalvaultvsmp''',
"vytalvaultpipe":'''vytalvaultpipe''',
"ipass":'''IPASS''',
"ads":'''ADS''',
"isg-uda-server":'''ISG UDA Server''',
"call-logging":'''Call Logging''',
"efidiningport":'''efidiningport''',
"vcnet-link-v10":'''VCnet-Link v10''',
"compaq-wcp":'''Compaq WCP''',
"nicetec-nmsvc":'''nicetec-nmsvc''',
"nicetec-mgmt":'''nicetec-mgmt''',
"pclemultimedia":'''PCLE Multi Media''',
"lstp":'''LSTP''',
"labrat":'''labrat''',
"mosaixcc":'''MosaixCC''',
"delibo":'''Delibo''',
"cti-redwood":'''CTI Redwood''',
"hp-3000-telnet":'''HP 3000 NS/VT block mode telnet''',
"coord-svr":'''Coordinator Server''',
"pcs-pcw":'''pcs-pcw''',
"clp":'''Cisco Line Protocol''',
"spamtrap":'''SPAM TRAP''',
"sonuscallsig":'''Sonus Call Signal''',
"hs-port":'''HS Port''',
"cecsvc":'''CECSVC''',
"ibp":'''IBP''',
"trustestablish":'''Trust Establish''',
"blockade-bpsp":'''Blockade BPSP''',
"hl7":'''HL7''',
"tclprodebugger":'''TCL Pro Debugger''',
"scipticslsrvr":'''Scriptics Lsrvr''',
"rvs-isdn-dcp":'''RVS ISDN DCP''',
"mpfoncl":'''mpfoncl''',
"tributary":'''Tributary''',
"argis-te":'''ARGIS TE''',
"argis-ds":'''ARGIS DS''',
"mon":'''MON''',
"cyaserv":'''cyaserv''',
"netx-server":'''NETX Server''',
"netx-agent":'''NETX Agent''',
"masc":'''MASC''',
"privilege":'''Privilege''',
"quartus-tcl":'''quartus tcl''',
"idotdist":'''idotdist''',
"maytagshuffle":'''Maytag Shuffle''',
"netrek":'''netrek''',
"mns-mail":'''MNS Mail Notice Service''',
"dts":'''Data Base Server''',
"worldfusion1":'''World Fusion 1''',
"worldfusion2":'''World Fusion 2''',
"homesteadglory":'''Homestead Glory''',
"citriximaclient":'''Citrix MA Client''',
"snapd":'''Snap Discovery''',
"hpstgmgr":'''HPSTGMGR''',
"discp-client":'''discp client''',
"discp-server":'''discp server''',
"servicemeter":'''Service Meter''',
"nsc-ccs":'''NSC CCS''',
"nsc-posa":'''NSC POSA''',
"netmon":'''Dell Netmon''',
"connection":'''Dell Connection''',
"wag-service":'''Wag Service''',
"system-monitor":'''System Monitor''',
"versa-tek":'''VersaTek''',
"lionhead":'''LIONHEAD''',
"qpasa-agent":'''Qpasa Agent''',
"smntubootstrap":'''SMNTUBootstrap''',
"neveroffline":'''Never Offline''',
"firepower":'''firepower''',
"appswitch-emp":'''appswitch-emp''',
"cmadmin":'''Clinical Context Managers''',
"priority-e-com":'''Priority E-Com''',
"bruce":'''bruce''',
"lpsrecommender":'''LPSRecommender''',
"miles-apart":'''Miles Apart Jukebox Server''',
"metricadbc":'''MetricaDBC''',
"lmdp":'''LMDP''',
"aria":'''Aria''',
"blwnkl-port":'''Blwnkl Port''',
"gbjd816":'''gbjd816''',
"moshebeeri":'''Moshe Beeri''',
"dict":'''DICT''',
"sitaraserver":'''Sitara Server''',
"sitaramgmt":'''Sitara Management''',
"sitaradir":'''Sitara Dir''',
"irdg-post":'''IRdg Post''',
"interintelli":'''InterIntelli''',
"pk-electronics":'''PK Electronics''',
"backburner":'''Back Burner''',
"solve":'''Solve''',
"imdocsvc":'''Import Document Service''',
"sybaseanywhere":'''Sybase Anywhere''',
"aminet":'''AMInet''',
"sai-sentlm":'''Sabbagh Associates Licence Manager
IANA assigned this well-formed service name as a replacement for "sai_sentlm".''',
"sai_sentlm":'''Sabbagh Associates Licence Manager''',
"hdl-srv":'''HDL Server''',
"tragic":'''Tragic''',
"gte-samp":'''GTE-SAMP''',
"travsoft-ipx-t":'''Travsoft IPX Tunnel''',
"novell-ipx-cmd":'''Novell IPX CMD''',
"and-lm":'''AND License Manager''',
"syncserver":'''SyncServer''',
"upsnotifyprot":'''Upsnotifyprot''',
"vpsipport":'''VPSIPPORT''',
"eristwoguns":'''eristwoguns''',
"ebinsite":'''EBInSite''',
"interpathpanel":'''InterPathPanel''',
"sonus":'''Sonus''',
"corel-vncadmin":'''Corel VNC Admin
IANA assigned this well-formed service name as a replacement for "corel_vncadmin".''',
"corel_vncadmin":'''Corel VNC Admin''',
"unglue":'''UNIX Nt Glue''',
"kana":'''Kana''',
"sns-dispatcher":'''SNS Dispatcher''',
"sns-admin":'''SNS Admin''',
"sns-query":'''SNS Query''',
"gcmonitor":'''GC Monitor''',
"olhost":'''OLHOST''',
"bintec-capi":'''BinTec-CAPI''',
"bintec-tapi":'''BinTec-TAPI''',
"patrol-mq-gm":'''Patrol for MQ GM''',
"patrol-mq-nm":'''Patrol for MQ NM''',
"extensis":'''extensis''',
"alarm-clock-s":'''Alarm Clock Server''',
"alarm-clock-c":'''Alarm Clock Client''',
"toad":'''TOAD''',
"tve-announce":'''TVE Announce''',
"newlixreg":'''newlixreg''',
"nhserver":'''nhserver''',
"firstcall42":'''First Call 42''',
"ewnn":'''ewnn''',
"ttc-etap":'''TTC ETAP''',
"simslink":'''SIMSLink''',
"gadgetgate1way":'''Gadget Gate 1 Way''',
"gadgetgate2way":'''Gadget Gate 2 Way''',
"syncserverssl":'''Sync Server SSL''',
"pxc-sapxom":'''pxc-sapxom''',
"mpnjsomb":'''mpnjsomb''',
"ncdloadbalance":'''NCDLoadBalance''',
"mpnjsosv":'''mpnjsosv''',
"mpnjsocl":'''mpnjsocl''',
"mpnjsomg":'''mpnjsomg''',
"pq-lic-mgmt":'''pq-lic-mgmt''',
"md-cg-http":'''md-cf-http''',
"fastlynx":'''FastLynx''',
"hp-nnm-data":'''HP NNM Embedded Database''',
"itinternet":'''ITInternet ISM Server''',
"admins-lms":'''Admins LMS''',
"pwrsevent":'''pwrsevent''',
"vspread":'''VSPREAD''',
"unifyadmin":'''Unify Admin''',
"oce-snmp-trap":'''Oce SNMP Trap Port''',
"mck-ivpip":'''MCK-IVPIP''',
"csoft-plusclnt":'''Csoft Plus Client''',
"tqdata":'''tqdata''',
"sms-rcinfo":'''SMS RCINFO''',
"sms-xfer":'''SMS XFER''',
"sms-chat":'''SMS CHAT''',
"sms-remctrl":'''SMS REMCTRL''',
"sds-admin":'''SDS Admin''',
"ncdmirroring":'''NCD Mirroring''',
"emcsymapiport":'''EMCSYMAPIPORT''',
"banyan-net":'''Banyan-Net''',
"supermon":'''Supermon''',
"sso-service":'''SSO Service''',
"sso-control":'''SSO Control''',
"aocp":'''Axapta Object Communication Protocol''',
"raventbs":'''Raven Trinity Broker Service''',
"raventdm":'''Raven Trinity Data Mover''',
"hpstgmgr2":'''HPSTGMGR2''',
"inova-ip-disco":'''Inova IP Disco''',
"pn-requester":'''PN REQUESTER''',
"pn-requester2":'''PN REQUESTER 2''',
"scan-change":'''Scan & Change''',
"wkars":'''wkars''',
"smart-diagnose":'''Smart Diagnose''',
"proactivesrvr":'''Proactive Server''',
"watchdog-nt":'''WatchDog NT Protocol''',
"qotps":'''qotps''',
"msolap-ptp2":'''MSOLAP PTP2''',
"tams":'''TAMS''',
"mgcp-callagent":'''Media Gateway Control Protocol Call Agent''',
"sqdr":'''SQDR''',
"tcim-control":'''TCIM Control''',
"nec-raidplus":'''NEC RaidPlus''',
"fyre-messanger":'''Fyre Messagner''',
"g5m":'''G5M''',
"signet-ctf":'''Signet CTF''',
"ccs-software":'''CCS Software''',
"netiq-mc":'''NetIQ Monitor Console''',
"radwiz-nms-srv":'''RADWIZ NMS SRV''',
"srp-feedback":'''SRP Feedback''',
"ndl-tcp-ois-gw":'''NDL TCP-OSI Gateway''',
"tn-timing":'''TN Timing''',
"alarm":'''Alarm''',
"tsb":'''TSB''',
"tsb2":'''TSB2''',
"murx":'''murx''',
"honyaku":'''honyaku''',
"urbisnet":'''URBISNET''',
"cpudpencap":'''CPUDPENCAP''',
"fjippol-swrly":'''''',
"fjippol-polsvr":'''''',
"fjippol-cnsl":'''''',
"fjippol-port1":'''''',
"fjippol-port2":'''''',
"rsisysaccess":'''RSISYS ACCESS''',
"de-spot":'''de-spot''',
"apollo-cc":'''APOLLO CC''',
"expresspay":'''Express Pay''',
"simplement-tie":'''simplement-tie''',
"cnrp":'''CNRP''',
"apollo-status":'''APOLLO Status''',
"apollo-gms":'''APOLLO GMS''',
"sabams":'''Saba MS''',
"dicom-iscl":'''DICOM ISCL''',
"dicom-tls":'''DICOM TLS''',
"desktop-dna":'''Desktop DNA''',
"data-insurance":'''Data Insurance''',
"qip-audup":'''qip-audup''',
"compaq-scp":'''Compaq SCP''',
"uadtc":'''UADTC''',
"uacs":'''UACS''',
"exce":'''eXcE''',
"veronica":'''Veronica''',
"vergencecm":'''Vergence CM''',
"auris":'''auris''',
"rbakcup1":'''RBackup Remote Backup''',
"rbakcup2":'''RBackup Remote Backup''',
"smpp":'''SMPP''',
"ridgeway1":'''Ridgeway Systems & Software''',
"ridgeway2":'''Ridgeway Systems & Software''',
"gwen-sonya":'''Gwen-Sonya''',
"lbc-sync":'''LBC Sync''',
"lbc-control":'''LBC Control''',
"whosells":'''whosells''',
"everydayrc":'''everydayrc''',
"aises":'''AISES''',
"www-dev":'''world wide web - development''',
"aic-np":'''aic-np''',
"aic-oncrpc":'''aic-oncrpc - Destiny MCD database''',
"piccolo":'''piccolo - Cornerstone Software''',
"fryeserv":'''NetWare Loadable Module - Seagate Software''',
"media-agent":'''Media Agent''',
"plgproxy":'''PLG Proxy''',
"mtport-regist":'''MT Port Registrator''',
"f5-globalsite":'''f5-globalsite''',
"initlsmsad":'''initlsmsad''',
"livestats":'''LiveStats''',
"ac-tech":'''ac-tech''',
"esp-encap":'''esp-encap''',
"tmesis-upshot":'''TMESIS-UPShot''',
"icon-discover":'''ICON Discover''',
"acc-raid":'''ACC RAID''',
"igcp":'''IGCP''',
"veritas-udp1":'''Veritas UDP1''',
"btprjctrl":'''btprjctrl''',
"dvr-esm":'''March Networks Digital Video Recorders and Enterprise Service Manager products''',
"wta-wsp-s":'''WTA WSP-S''',
"cspuni":'''cspuni''',
"cspmulti":'''cspmulti''',
"j-lan-p":'''J-LAN-P''',
"corbaloc":'''CORBA LOC''',
"netsteward":'''Active Net Steward''',
"gsiftp":'''GSI FTP''',
"atmtcp":'''atmtcp''',
"llm-pass":'''llm-pass''',
"llm-csv":'''llm-csv''',
"lbc-measure":'''LBC Measurement''',
"lbc-watchdog":'''LBC Watchdog''',
"nmsigport":'''NMSig Port''',
"rmlnk":'''rmlnk''',
"fc-faultnotify":'''FC Fault Notification''',
"univision":'''UniVision''',
"vrts-at-port":'''VERITAS Authentication Service''',
"ka0wuc":'''ka0wuc''',
"cqg-netlan":'''CQG Net/LAN''',
"cqg-netlan-1":'''CQG Net/Lan 1''',
"slc-systemlog":'''slc systemlog''',
"slc-ctrlrloops":'''slc ctrlrloops''',
"itm-lm":'''ITM License Manager''',
"silkp1":'''silkp1''',
"silkp2":'''silkp2''',
"silkp3":'''silkp3''',
"silkp4":'''silkp4''',
"glishd":'''glishd''',
"evtp":'''EVTP''',
"evtp-data":'''EVTP-DATA''',
"catalyst":'''catalyst''',
"repliweb":'''Repliweb''',
"starbot":'''Starbot''',
"nmsigport":'''NMSigPort''',
"l3-exprt":'''l3-exprt''',
"l3-ranger":'''l3-ranger''',
"l3-hawk":'''l3-hawk''',
"pdnet":'''PDnet''',
"bpcp-poll":'''BPCP POLL''',
"bpcp-trap":'''BPCP TRAP''',
"aimpp-hello":'''AIMPP Hello''',
"aimpp-port-req":'''AIMPP Port Req''',
"amt-blc-port":'''AMT-BLC-PORT''',
"fxp":'''FXP''',
"metaconsole":'''MetaConsole''',
"webemshttp":'''webemshttp''',
"bears-01":'''bears-01''',
"ispipes":'''ISPipes''',
"infomover":'''InfoMover''',
"msrp":'''MSRP''',
"cesdinv":'''cesdinv''',
"simctlp":'''SimCtIP''',
"ecnp":'''ECNP''',
"activememory":'''Active Memory''',
"dialpad-voice1":'''Dialpad Voice 1''',
"dialpad-voice2":'''Dialpad Voice 2''',
"ttg-protocol":'''TTG Protocol''',
"sonardata":'''Sonar Data''',
"astromed-main":'''main 5001 cmd''',
"pit-vpn":'''pit-vpn''',
"iwlistener":'''iwlistener''',
"esps-portal":'''esps-portal''',
"npep-messaging":'''NPEP Messaging''',
"icslap":'''ICSLAP''',
"daishi":'''daishi''',
"msi-selectplay":'''MSI Select Play''',
"radix":'''RADIX''',
"dxmessagebase1":'''DX Message Base Transport Protocol''',
"dxmessagebase2":'''DX Message Base Transport Protocol''',
"sps-tunnel":'''SPS Tunnel''',
"bluelance":'''BLUELANCE''',
"aap":'''AAP''',
"ucentric-ds":'''ucentric-ds''',
"synapse":'''Synapse Transport''',
"ndsp":'''NDSP''',
"ndtp":'''NDTP''',
"ndnp":'''NDNP''',
"flashmsg":'''Flash Msg''',
"topflow":'''TopFlow''',
"responselogic":'''RESPONSELOGIC''',
"aironetddp":'''aironet''',
"spcsdlobby":'''SPCSDLOBBY''',
"rsom":'''RSOM''',
"cspclmulti":'''CSPCLMULTI''',
"cinegrfx-elmd":'''CINEGRFX-ELMD License Manager''',
"snifferdata":'''SNIFFERDATA''',
"vseconnector":'''VSECONNECTOR''',
"abacus-remote":'''ABACUS-REMOTE''',
"natuslink":'''NATUS LINK''',
"ecovisiong6-1":'''ECOVISIONG6-1''',
"citrix-rtmp":'''Citrix RTMP''',
"appliance-cfg":'''APPLIANCE-CFG''',
"powergemplus":'''POWERGEMPLUS''',
"quicksuite":'''QUICKSUITE''',
"allstorcns":'''ALLSTORCNS''',
"netaspi":'''NET ASPI''',
"suitcase":'''SUITCASE''',
"m2ua":'''M2UA''',
"caller9":'''CALLER9''',
"webmethods-b2b":'''WEBMETHODS B2B''',
"mao":'''mao''',
"funk-dialout":'''Funk Dialout''',
"tdaccess":'''TDAccess''',
"blockade":'''Blockade''',
"epicon":'''Epicon''',
"boosterware":'''Booster Ware''',
"gamelobby":'''Game Lobby''',
"tksocket":'''TK Socket''',
"elvin-server":'''Elvin Server
IANA assigned this well-formed service name as a replacement for "elvin_server".''',
"elvin_server":'''Elvin Server''',
"elvin-client":'''Elvin Client
IANA assigned this well-formed service name as a replacement for "elvin_client".''',
"elvin_client":'''Elvin Client''',
"kastenchasepad":'''Kasten Chase Pad''',
"roboer":'''roboER''',
"roboeda":'''roboEDA''',
"cesdcdman":'''CESD Contents Delivery Management''',
"cesdcdtrn":'''CESD Contents Delivery Data Transfer''',
"wta-wsp-wtp-s":'''WTA-WSP-WTP-S''',
"precise-vip":'''PRECISE-VIP''',
"mobile-file-dl":'''MOBILE-FILE-DL''',
"unimobilectrl":'''UNIMOBILECTRL''',
"redstone-cpss":'''REDSTONE-CPSS''',
"amx-webadmin":'''AMX-WEBADMIN''',
"amx-weblinx":'''AMX-WEBLINX''',
"circle-x":'''Circle-X''',
"incp":'''INCP''',
"4-tieropmgw":'''4-TIER OPM GW''',
"4-tieropmcli":'''4-TIER OPM CLI''',
"qtp":'''QTP''',
"otpatch":'''OTPatch''',
"pnaconsult-lm":'''PNACONSULT-LM''',
"sm-pas-1":'''SM-PAS-1''',
"sm-pas-2":'''SM-PAS-2''',
"sm-pas-3":'''SM-PAS-3''',
"sm-pas-4":'''SM-PAS-4''',
"sm-pas-5":'''SM-PAS-5''',
"ttnrepository":'''TTNRepository''',
"megaco-h248":'''Megaco H-248''',
"h248-binary":'''H248 Binary''',
"fjsvmpor":'''FJSVmpor''',
"gpsd":'''GPS Daemon request/response protocol''',
"wap-push":'''WAP PUSH''',
"wap-pushsecure":'''WAP PUSH SECURE''',
"esip":'''ESIP''',
"ottp":'''OTTP''',
"mpfwsas":'''MPFWSAS''',
"ovalarmsrv":'''OVALARMSRV''',
"ovalarmsrv-cmd":'''OVALARMSRV-CMD''',
"csnotify":'''CSNOTIFY''',
"ovrimosdbman":'''OVRIMOSDBMAN''',
"jmact5":'''JAMCT5''',
"jmact6":'''JAMCT6''',
"rmopagt":'''RMOPAGT''',
"dfoxserver":'''DFOXSERVER''',
"boldsoft-lm":'''BOLDSOFT-LM''',
"iph-policy-cli":'''IPH-POLICY-CLI''',
"iph-policy-adm":'''IPH-POLICY-ADM''',
"bullant-srap":'''BULLANT SRAP''',
"bullant-rap":'''BULLANT RAP''',
"idp-infotrieve":'''IDP-INFOTRIEVE''',
"ssc-agent":'''SSC-AGENT''',
"enpp":'''ENPP''',
"essp":'''ESSP''',
"index-net":'''INDEX-NET''',
"netclip":'''NetClip clipboard daemon''',
"pmsm-webrctl":'''PMSM Webrctl''',
"svnetworks":'''SV Networks''',
"signal":'''Signal''',
"fjmpcm":'''Fujitsu Configuration Management Service''',
"cns-srv-port":'''CNS Server Port''',
"ttc-etap-ns":'''TTCs Enterprise Test Access Protocol - NS''',
"ttc-etap-ds":'''TTCs Enterprise Test Access Protocol - DS''',
"h263-video":'''H.263 Video Streaming''',
"wimd":'''Instant Messaging Service''',
"mylxamport":'''MYLXAMPORT''',
"iwb-whiteboard":'''IWB-WHITEBOARD''',
"netplan":'''NETPLAN''',
"hpidsadmin":'''HPIDSADMIN''',
"hpidsagent":'''HPIDSAGENT''',
"stonefalls":'''STONEFALLS''',
"identify":'''identify''',
"hippad":'''HIPPA Reporting Protocol''',
"zarkov":'''ZARKOV Intelligent Agent Communication''',
"boscap":'''BOSCAP''',
"wkstn-mon":'''WKSTN-MON''',
"avenyo":'''Avenyo Server''',
"veritas-vis1":'''VERITAS VIS1''',
"veritas-vis2":'''VERITAS VIS2''',
"idrs":'''IDRS''',
"vsixml":'''vsixml''',
"rebol":'''REBOL''',
"realsecure":'''Real Secure''',
"remoteware-un":'''RemoteWare Unassigned''',
"hbci":'''HBCI''',
"remoteware-cl":'''RemoteWare Client''',
"exlm-agent":'''EXLM Agent''',
"remoteware-srv":'''RemoteWare Server''',
"cgms":'''CGMS''',
"csoftragent":'''Csoft Agent''',
"geniuslm":'''Genius License Manager''',
"ii-admin":'''Instant Internet Admin''',
"lotusmtap":'''Lotus Mail Tracking Agent Protocol''',
"midnight-tech":'''Midnight Technologies''',
"pxc-ntfy":'''PXC-NTFY''',
"ping-pong":'''Telerate Workstation''',
"trusted-web":'''Trusted Web''',
"twsdss":'''Trusted Web Client''',
"gilatskysurfer":'''Gilat Sky Surfer''',
"broker-service":'''Broker Service
IANA assigned this well-formed service name as a replacement for "broker_service".''',
"broker_service":'''Broker Service''',
"nati-dstp":'''NATI DSTP''',
"notify-srvr":'''Notify Server
IANA assigned this well-formed service name as a replacement for "notify_srvr".''',
"notify_srvr":'''Notify Server''',
"event-listener":'''Event Listener
IANA assigned this well-formed service name as a replacement for "event_listener".''',
"event_listener":'''Event Listener''',
"srvc-registry":'''Service Registry
IANA assigned this well-formed service name as a replacement for "srvc_registry".''',
"srvc_registry":'''Service Registry''',
"resource-mgr":'''Resource Manager
IANA assigned this well-formed service name as a replacement for "resource_mgr".''',
"resource_mgr":'''Resource Manager''',
"cifs":'''CIFS''',
"agriserver":'''AGRI Server''',
"csregagent":'''CSREGAGENT''',
"magicnotes":'''magicnotes''',
"nds-sso":'''NDS_SSO
IANA assigned this well-formed service name as a replacement for "nds_sso".''',
"nds_sso":'''NDS_SSO''',
"arepa-raft":'''Arepa Raft''',
"agri-gateway":'''AGRI Gateway''',
"LiebDevMgmt-C":'''LiebDevMgmt_C
IANA assigned this well-formed service name as a replacement for "LiebDevMgmt_C".''',
"LiebDevMgmt_C":'''LiebDevMgmt_C''',
"LiebDevMgmt-DM":'''LiebDevMgmt_DM
IANA assigned this well-formed service name as a replacement for "LiebDevMgmt_DM".''',
"LiebDevMgmt_DM":'''LiebDevMgmt_DM''',
"LiebDevMgmt-A":'''LiebDevMgmt_A
IANA assigned this well-formed service name as a replacement for "LiebDevMgmt_A".''',
"LiebDevMgmt_A":'''LiebDevMgmt_A''',
"arepa-cas":'''Arepa Cas''',
"eppc":'''Remote AppleEvents/PPC Toolbox''',
"redwood-chat":'''Redwood Chat''',
"pdb":'''PDB''',
"osmosis-aeea":'''Osmosis / Helix (R) AEEA Port''',
"fjsv-gssagt":'''FJSV gssagt''',
"hagel-dump":'''Hagel DUMP''',
"hp-san-mgmt":'''HP SAN Mgmt''',
"santak-ups":'''Santak UPS''',
"cogitate":'''Cogitate, Inc.''',
"tomato-springs":'''Tomato Springs''',
"di-traceware":'''di-traceware''',
"journee":'''journee''',
"brp":'''Broadcast Routing Protocol''',
"epp":'''EndPoint Protocol''',
"responsenet":'''ResponseNet''',
"di-ase":'''di-ase''',
"hlserver":'''Fast Security HL Server''',
"pctrader":'''Sierra Net PC Trader''',
"nsws":'''NSWS''',
"gds-db":'''gds_db
IANA assigned this well-formed service name as a replacement for "gds_db".''',
"gds_db":'''gds_db''',
"galaxy-server":'''Galaxy Server''',
"apc-3052":'''APC 3052''',
"dsom-server":'''dsom-server''',
"amt-cnf-prot":'''AMT CNF PROT''',
"policyserver":'''Policy Server''',
"cdl-server":'''CDL Server''',
"goahead-fldup":'''GoAhead FldUp''',
"videobeans":'''videobeans''',
"qsoft":'''qsoft''',
"interserver":'''interserver''',
"cautcpd":'''cautcpd''',
"ncacn-ip-tcp":'''ncacn-ip-tcp''',
"ncadg-ip-udp":'''ncadg-ip-udp''',
"rprt":'''Remote Port Redirector''',
"slinterbase":'''slinterbase''',
"netattachsdmp":'''NETATTACHSDMP''',
"fjhpjp":'''FJHPJP''',
"ls3bcast":'''ls3 Broadcast''',
"ls3":'''ls3''',
"mgxswitch":'''MGXSWITCH''',
"csd-mgmt-port":'''ContinuStor Manager Port''',
"csd-monitor":'''ContinuStor Monitor Port''',
"vcrp":'''Very simple chatroom prot''',
"xbox":'''Xbox game port''',
"orbix-locator":'''Orbix 2000 Locator''',
"orbix-config":'''Orbix 2000 Config''',
"orbix-loc-ssl":'''Orbix 2000 Locator SSL''',
"orbix-cfg-ssl":'''Orbix 2000 Locator SSL''',
"lv-frontpanel":'''LV Front Panel''',
"stm-pproc":'''stm_pproc
IANA assigned this well-formed service name as a replacement for "stm_pproc".''',
"stm_pproc":'''stm_pproc''',
"tl1-lv":'''TL1-LV''',
"tl1-raw":'''TL1-RAW''',
"tl1-telnet":'''TL1-TELNET''',
"itm-mccs":'''ITM-MCCS''',
"pcihreq":'''PCIHReq''',
"jdl-dbkitchen":'''JDL-DBKitchen''',
"asoki-sma":'''Asoki SMA''',
"xdtp":'''eXtensible Data Transfer Protocol''',
"ptk-alink":'''ParaTek Agent Linking''',
"stss":'''Senforce Session Services''',
"1ci-smcs":'''1Ci Server Management''',
"rapidmq-center":'''Jiiva RapidMQ Center''',
"rapidmq-reg":'''Jiiva RapidMQ Registry''',
"panasas":'''Panasas rendevous port''',
"ndl-aps":'''Active Print Server Port''',
"umm-port":'''Universal Message Manager''',
"chmd":'''CHIPSY Machine Daemon''',
"opcon-xps":'''OpCon/xps''',
"hp-pxpib":'''HP PolicyXpert PIB Server''',
"slslavemon":'''SoftlinK Slave Mon Port''',
"autocuesmi":'''Autocue SMI Protocol''',
"autocuetime":'''Autocue Time Service''',
"cardbox":'''Cardbox''',
"cardbox-http":'''Cardbox HTTP''',
"business":'''Business protocol''',
"geolocate":'''Geolocate protocol''',
"personnel":'''Personnel protocol''',
"sim-control":'''simulator control port''',
"wsynch":'''Web Synchronous Services''',
"ksysguard":'''KDE System Guard''',
"cs-auth-svr":'''CS-Authenticate Svr Port''',
"ccmad":'''CCM AutoDiscover''',
"mctet-master":'''MCTET Master''',
"mctet-gateway":'''MCTET Gateway''',
"mctet-jserv":'''MCTET Jserv''',
"pkagent":'''PKAgent''',
"d2000kernel":'''D2000 Kernel Port''',
"d2000webserver":'''D2000 Webserver Port''',
"vtr-emulator":'''MTI VTR Emulator port''',
"edix":'''EDI Translation Protocol''',
"beacon-port":'''Beacon Port''',
"a13-an":'''A13-AN Interface''',
"ctx-bridge":'''CTX Bridge Port''',
"ndl-aas":'''Active API Server Port''',
"netport-id":'''NetPort Discovery Port''',
"icpv2":'''ICPv2''',
"netbookmark":'''Net Book Mark''',
"ms-rule-engine":'''Microsoft Business Rule Engine Update Service''',
"prism-deploy":'''Prism Deploy User Port''',
"ecp":'''Extensible Code Protocol''',
"peerbook-port":'''PeerBook Port''',
"grubd":'''Grub Server Port''',
"rtnt-1":'''rtnt-1 data packets''',
"rtnt-2":'''rtnt-2 data packets''',
"incognitorv":'''Incognito Rendez-Vous''',
"ariliamulti":'''Arilia Multiplexor''',
"vmodem":'''VMODEM''',
"rdc-wh-eos":'''RDC WH EOS''',
"seaview":'''Sea View''',
"tarantella":'''Tarantella''',
"csi-lfap":'''CSI-LFAP''',
"bears-02":'''bears-02''',
"rfio":'''RFIO''',
"nm-game-admin":'''NetMike Game Administrator''',
"nm-game-server":'''NetMike Game Server''',
"nm-asses-admin":'''NetMike Assessor Administrator''',
"nm-assessor":'''NetMike Assessor''',
"feitianrockey":'''FeiTian Port''',
"s8-client-port":'''S8Cargo Client Port''',
"ccmrmi":'''ON RMI Registry''',
"jpegmpeg":'''JpegMpeg Port''',
"indura":'''Indura Collector''',
"e3consultants":'''CCC Listener Port''',
"stvp":'''SmashTV Protocol''',
"navegaweb-port":'''NavegaWeb Tarification''',
"tip-app-server":'''TIP Application Server''',
"doc1lm":'''DOC1 License Manager''',
"sflm":'''SFLM''',
"res-sap":'''RES-SAP''',
"imprs":'''IMPRS''',
"newgenpay":'''Newgenpay Engine Service''',
"sossecollector":'''Quest Spotlight Out-Of-Process Collector''',
"nowcontact":'''Now Contact Public Server''',
"poweronnud":'''Now Up-to-Date Public Server''',
"serverview-as":'''SERVERVIEW-AS''',
"serverview-asn":'''SERVERVIEW-ASN''',
"serverview-gf":'''SERVERVIEW-GF''',
"serverview-rm":'''SERVERVIEW-RM''',
"serverview-icc":'''SERVERVIEW-ICC''',
"armi-server":'''ARMI Server''',
"t1-e1-over-ip":'''T1_E1_Over_IP''',
"ars-master":'''ARS Master''',
"phonex-port":'''Phonex Protocol''',
"radclientport":'''Radiance UltraEdge Port''',
"h2gf-w-2m":'''H2GF W.2m Handover prot.''',
"mc-brk-srv":'''Millicent Broker Server''',
"bmcpatrolagent":'''BMC Patrol Agent''',
"bmcpatrolrnvu":'''BMC Patrol Rendezvous''',
"cops-tls":'''COPS/TLS''',
"apogeex-port":'''ApogeeX Port''',
"smpppd":'''SuSE Meta PPPD''',
"iiw-port":'''IIW Monitor User Port''',
"odi-port":'''Open Design Listen Port''',
"brcm-comm-port":'''Broadcom Port''',
"pcle-infex":'''Pinnacle Sys InfEx Port''',
"csvr-proxy":'''ConServR Proxy''',
"csvr-sslproxy":'''ConServR SSL Proxy''',
"firemonrcc":'''FireMon Revision Control''',
"spandataport":'''SpanDataPort''',
"magbind":'''Rockstorm MAG protocol''',
"ncu-1":'''Network Control Unit''',
"ncu-2":'''Network Control Unit''',
"embrace-dp-s":'''Embrace Device Protocol Server''',
"embrace-dp-c":'''Embrace Device Protocol Client''',
"dmod-workspace":'''DMOD WorkSpace''',
"tick-port":'''Press-sense Tick Port''',
"cpq-tasksmart":'''CPQ-TaskSmart''',
"intraintra":'''IntraIntra''',
"netwatcher-mon":'''Network Watcher Monitor''',
"netwatcher-db":'''Network Watcher DB Access''',
"isns":'''iSNS Server Port''',
"ironmail":'''IronMail POP Proxy''',
"vx-auth-port":'''Veritas Authentication Port''',
"pfu-prcallback":'''PFU PR Callback''',
"netwkpathengine":'''HP OpenView Network Path Engine Server''',
"flamenco-proxy":'''Flamenco Networks Proxy''',
"avsecuremgmt":'''Avocent Secure Management''',
"surveyinst":'''Survey Instrument''',
"neon24x7":'''NEON 24X7 Mission Control''',
"jmq-daemon-1":'''JMQ Daemon Port 1''',
"jmq-daemon-2":'''JMQ Daemon Port 2''',
"ferrari-foam":'''Ferrari electronic FOAM''',
"unite":'''Unified IP & Telecom Environment''',
"smartpackets":'''EMC SmartPackets''',
"wms-messenger":'''WMS Messenger''',
"xnm-ssl":'''XML NM over SSL''',
"xnm-clear-text":'''XML NM over TCP''',
"glbp":'''Gateway Load Balancing Pr''',
"digivote":'''DIGIVOTE (R) Vote-Server''',
"aes-discovery":'''AES Discovery Port''',
"fcip-port":'''FCIP''',
"isi-irp":'''ISI Industry Software IRP''',
"dwnmshttp":'''DiamondWave NMS Server''',
"dwmsgserver":'''DiamondWave MSG Server''',
"global-cd-port":'''Global CD Port''',
"sftdst-port":'''Software Distributor Port''',
"vidigo":'''VidiGo communication (previous was: Delta Solutions Direct)''',
"mdtp":'''MDT port''',
"whisker":'''WhiskerControl main port''',
"alchemy":'''Alchemy Server''',
"mdap-port":'''MDAP Port''',
"apparenet-ts":'''appareNet Test Server''',
"apparenet-tps":'''appareNet Test Packet Sequencer''',
"apparenet-as":'''appareNet Analysis Server''',
"apparenet-ui":'''appareNet User Interface''',
"triomotion":'''Trio Motion Control Port''',
"sysorb":'''SysOrb Monitoring Server''',
"sdp-id-port":'''Session Description ID''',
"timelot":'''Timelot Port''',
"onesaf":'''OneSAF''',
"vieo-fe":'''VIEO Fabric Executive''',
"dvt-system":'''DVT SYSTEM PORT''',
"dvt-data":'''DVT DATA LINK''',
"procos-lm":'''PROCOS LM''',
"ssp":'''State Sync Protocol''',
"hicp":'''HMS hicp port''',
"sysscanner":'''Sys Scanner''',
"dhe":'''DHE port''',
"pda-data":'''PDA Data''',
"pda-sys":'''PDA System''',
"semaphore":'''Semaphore Connection Port''',
"cpqrpm-agent":'''Compaq RPM Agent Port''',
"cpqrpm-server":'''Compaq RPM Server Port''',
"ivecon-port":'''Ivecon Server Port''',
"epncdp2":'''Epson Network Common Devi''',
"iscsi-target":'''iSCSI port''',
"winshadow":'''winShadow''',
"necp":'''NECP''',
"ecolor-imager":'''E-Color Enterprise Imager''',
"ccmail":'''cc:mail/lotus''',
"altav-tunnel":'''Altav Tunnel''',
"ns-cfg-server":'''NS CFG Server''',
"ibm-dial-out":'''IBM Dial Out''',
"msft-gc":'''Microsoft Global Catalog''',
"msft-gc-ssl":'''Microsoft Global Catalog with LDAP/SSL''',
"verismart":'''Verismart''',
"csoft-prev":'''CSoft Prev Port''',
"user-manager":'''Fujitsu User Manager''',
"sxmp":'''Simple Extensible Multiplexed Protocol''',
"ordinox-server":'''Ordinox Server''',
"samd":'''SAMD''',
"maxim-asics":'''Maxim ASICs''',
"awg-proxy":'''AWG Proxy''',
"lkcmserver":'''LKCM Server''',
"admind":'''admind''',
"vs-server":'''VS Server''',
"sysopt":'''SYSOPT''',
"datusorb":'''Datusorb''',
"Apple Remote Desktop (Net Assistant)":'''Net Assistant''',
"4talk":'''4Talk''',
"plato":'''Plato''',
"e-net":'''E-Net''',
"directvdata":'''DIRECTVDATA''',
"cops":'''COPS''',
"enpc":'''ENPC''',
"caps-lm":'''CAPS LOGISTICS TOOLKIT - LM''',
"sah-lm":'''S A Holditch & Associates - LM''',
"cart-o-rama":'''Cart O Rama''',
"fg-fps":'''fg-fps''',
"fg-gip":'''fg-gip''',
"dyniplookup":'''Dynamic IP Lookup''',
"rib-slm":'''Rib License Manager''',
"cytel-lm":'''Cytel License Manager''',
"deskview":'''DeskView''',
"pdrncs":'''pdrncs''',
"mcs-fastmail":'''MCS Fastmail''',
"opsession-clnt":'''OP Session Client''',
"opsession-srvr":'''OP Session Server''',
"odette-ftp":'''ODETTE-FTP''',
"mysql":'''MySQL''',
"opsession-prxy":'''OP Session Proxy''',
"tns-server":'''TNS Server''',
"tns-adv":'''TNS ADV''',
"dyna-access":'''Dyna Access''',
"mcns-tel-ret":'''MCNS Tel Ret''',
"appman-server":'''Application Management Server''',
"uorb":'''Unify Object Broker''',
"uohost":'''Unify Object Host''',
"cdid":'''CDID''',
"aicc-cmi":'''AICC/CMI''',
"vsaiport":'''VSAI PORT''',
"ssrip":'''Swith to Swith Routing Information Protocol''',
"sdt-lmd":'''SDT License Manager''',
"officelink2000":'''Office Link 2000''',
"vnsstr":'''VNSSTR''',
"sftu":'''SFTU''',
"bbars":'''BBARS''',
"egptlm":'''Eaglepoint License Manager''',
"hp-device-disc":'''HP Device Disc''',
"mcs-calypsoicf":'''MCS Calypso ICF''',
"mcs-messaging":'''MCS Messaging''',
"mcs-mailsvr":'''MCS Mail Server''',
"dec-notes":'''DEC Notes''',
"directv-web":'''Direct TV Webcasting''',
"directv-soft":'''Direct TV Software Updates''',
"directv-tick":'''Direct TV Tickers''',
"directv-catlg":'''Direct TV Data Catalog''',
"anet-b":'''OMF data b''',
"anet-l":'''OMF data l''',
"anet-m":'''OMF data m''',
"anet-h":'''OMF data h''',
"webtie":'''WebTIE''',
"ms-cluster-net":'''MS Cluster Net''',
"bnt-manager":'''BNT Manager''',
"influence":'''Influence''',
"trnsprntproxy":'''Trnsprnt Proxy''',
"phoenix-rpc":'''Phoenix RPC''',
"pangolin-laser":'''Pangolin Laser''',
"chevinservices":'''Chevin Services''',
"findviatv":'''FINDVIATV''',
"btrieve":'''Btrieve port''',
"ssql":'''Scalable SQL''',
"fatpipe":'''FATPIPE''',
"suitjd":'''SUITJD''',
"ordinox-dbase":'''Ordinox Dbase''',
"upnotifyps":'''UPNOTIFYPS''',
"adtech-test":'''Adtech Test IP''',
"mpsysrmsvr":'''Mp Sys Rmsvr''',
"wg-netforce":'''WG NetForce''',
"kv-server":'''KV Server''',
"kv-agent":'''KV Agent''',
"dj-ilm":'''DJ ILM''',
"nati-vi-server":'''NATI Vi Server''',
"creativeserver":'''Creative Server''',
"contentserver":'''Content Server''',
"creativepartnr":'''Creative Partner''',
"tip2":'''TIP 2''',
"lavenir-lm":'''Lavenir License Manager''',
"cluster-disc":'''Cluster Disc''',
"vsnm-agent":'''VSNM Agent''',
"cdbroker":'''CD Broker''',
"cogsys-lm":'''Cogsys Network License Manager''',
"wsicopy":'''WSICOPY''',
"socorfs":'''SOCORFS''',
"sns-channels":'''SNS Channels''',
"geneous":'''Geneous''',
"fujitsu-neat":'''Fujitsu Network Enhanced Antitheft function''',
"esp-lm":'''Enterprise Software Products License Manager''',
"hp-clic":'''Hardware Management''',
"qnxnetman":'''qnxnetman''',
"gprs-sig":'''GPRS SIG''',
"backroomnet":'''Back Room Net''',
"cbserver":'''CB Server''',
"ms-wbt-server":'''MS WBT Server''',
"dsc":'''Distributed Service Coordinator''',
"savant":'''SAVANT''',
"efi-lm":'''EFI License Management''',
"d2k-tapestry1":'''D2K Tapestry Client to Server''',
"d2k-tapestry2":'''D2K Tapestry Server to Server''',
"dyna-lm":'''Dyna License Manager (Elam)''',
"printer-agent":'''Printer Agent
IANA assigned this well-formed service name as a replacement for "printer_agent".''',
"printer_agent":'''Printer Agent''',
"cloanto-lm":'''Cloanto License Manager''',
"mercantile":'''Mercantile''',
"csms":'''CSMS''',
"csms2":'''CSMS2''',
"filecast":'''filecast''',
"fxaengine-net":'''FXa Engine Network Port''',
"nokia-ann-ch1":'''Nokia Announcement ch 1''',
"nokia-ann-ch2":'''Nokia Announcement ch 2''',
"ldap-admin":'''LDAP admin server port''',
"BESApi":'''BES Api Port''',
"networklens":'''NetworkLens Event Port''',
"networklenss":'''NetworkLens SSL Event''',
"biolink-auth":'''BioLink Authenteon server''',
"xmlblaster":'''xmlBlaster''',
"svnet":'''SpecView Networking''',
"wip-port":'''BroadCloud WIP Port''',
"bcinameservice":'''BCI Name Service''',
"commandport":'''AirMobile IS Command Port''',
"csvr":'''ConServR file translation''',
"rnmap":'''Remote nmap''',
"softaudit":'''ISogon SoftAudit''',
"ifcp-port":'''iFCP User Port''',
"bmap":'''Bull Apprise portmapper''',
"rusb-sys-port":'''Remote USB System Port''',
"xtrm":'''xTrade Reliable Messaging''',
"xtrms":'''xTrade over TLS/SSL''',
"agps-port":'''AGPS Access Port''',
"arkivio":'''Arkivio Storage Protocol''',
"websphere-snmp":'''WebSphere SNMP''',
"twcss":'''2Wire CSS''',
"gcsp":'''GCSP user port''',
"ssdispatch":'''Scott Studios Dispatch''',
"ndl-als":'''Active License Server Port''',
"osdcp":'''Secure Device Protocol''',
"opnet-smp":'''OPNET Service Management Platform''',
"opencm":'''OpenCM Server''',
"pacom":'''Pacom Security User Port''',
"gc-config":'''GuardControl Exchange Protocol''',
"autocueds":'''Autocue Directory Service''',
"spiral-admin":'''Spiralcraft Admin''',
"hri-port":'''HRI Interface Port''',
"ans-console":'''Net Steward Mgmt Console''',
"connect-client":'''OC Connect Client''',
"connect-server":'''OC Connect Server''',
"ov-nnm-websrv":'''OpenView Network Node Manager WEB Server''',
"denali-server":'''Denali Server''',
"monp":'''Media Object Network''',
"3comfaxrpc":'''3Com FAX RPC port''',
"directnet":'''DirectNet IM System''',
"dnc-port":'''Discovery and Net Config''',
"hotu-chat":'''HotU Chat''',
"castorproxy":'''CAStorProxy''',
"asam":'''ASAM Services''',
"sabp-signal":'''SABP-Signalling Protocol''',
"pscupd":'''PSC Update Port''',
"mira":'''Apple Remote Access Protocol''',
"prsvp":'''RSVP Port''',
"vat":'''VAT default data''',
"vat-control":'''VAT default control''',
"d3winosfi":'''D3WinOSFI''',
"integral":'''TIP Integral''',
"edm-manager":'''EDM Manger''',
"edm-stager":'''EDM Stager''',
"edm-std-notify":'''EDM STD Notify''',
"edm-adm-notify":'''EDM ADM Notify''',
"edm-mgr-sync":'''EDM MGR Sync''',
"edm-mgr-cntrl":'''EDM MGR Cntrl''',
"workflow":'''WORKFLOW''',
"rcst":'''RCST''',
"ttcmremotectrl":'''TTCM Remote Controll''',
"pluribus":'''Pluribus''',
"jt400":'''jt400''',
"jt400-ssl":'''jt400-ssl''',
"jaugsremotec-1":'''JAUGS N-G Remotec 1''',
"jaugsremotec-2":'''JAUGS N-G Remotec 2''',
"ttntspauto":'''TSP Automation''',
"genisar-port":'''Genisar Comm Port''',
"nppmp":'''NVIDIA Mgmt Protocol''',
"ecomm":'''eComm link port''',
"stun":'''Session Traversal Utilities for NAT (STUN) port''',
"turn":'''TURN over UDP''',
"stun-behavior":'''STUN Behavior Discovery over UDP''',
"twrpc":'''2Wire RPC''',
"plethora":'''Secure Virtual Workspace''',
"cleanerliverc":'''CleanerLive remote ctrl''',
"vulture":'''Vulture Monitoring System''',
"slim-devices":'''Slim Devices Protocol''',
"gbs-stp":'''GBS SnapTalk Protocol''',
"celatalk":'''CelaTalk''',
"ifsf-hb-port":'''IFSF Heartbeat Port''',
"ltcudp":'''LISA UDP Transfer Channel''',
"fs-rh-srv":'''FS Remote Host Server''',
"dtp-dia":'''DTP/DIA''',
"colubris":'''Colubris Management Port''',
"swr-port":'''SWR Port''',
"tvdumtray-port":'''TVDUM Tray Port''',
"nut":'''Network UPS Tools''',
"ibm3494":'''IBM 3494''',
"seclayer-tcp":'''securitylayer over tcp''',
"seclayer-tls":'''securitylayer over tls''',
"ipether232port":'''ipEther232Port''',
"dashpas-port":'''DASHPAS user port''',
"sccip-media":'''SccIP Media''',
"rtmp-port":'''RTMP Port''',
"isoft-p2p":'''iSoft-P2P''',
"avinstalldisc":'''Avocent Install Discovery''',
"lsp-ping":'''MPLS LSP-echo Port''',
"ironstorm":'''IronStorm game server''',
"ccmcomm":'''CCM communications port''',
"apc-3506":'''APC 3506''',
"nesh-broker":'''Nesh Broker Port''',
"interactionweb":'''Interaction Web''',
"vt-ssl":'''Virtual Token SSL Port''',
"xss-port":'''XSS Port''',
"webmail-2":'''WebMail/2''',
"aztec":'''Aztec Distribution Port''',
"arcpd":'''Adaptec Remote Protocol''',
"must-p2p":'''MUST Peer to Peer''',
"must-backplane":'''MUST Backplane''',
"smartcard-port":'''Smartcard Port''',
"802-11-iapp":'''IEEE 802.11 WLANs WG IAPP''',
"artifact-msg":'''Artifact Message Server''',
"galileo":'''Netvion Galileo Port''',
"galileolog":'''Netvion Galileo Log Port''',
"mc3ss":'''Telequip Labs MC3SS''',
"nssocketport":'''DO over NSSocketPort''',
"odeumservlink":'''Odeum Serverlink''',
"ecmport":'''ECM Server port''',
"eisport":'''EIS Server port''',
"starquiz-port":'''starQuiz Port''',
"beserver-msg-q":'''VERITAS Backup Exec Server''',
"jboss-iiop":'''JBoss IIOP''',
"jboss-iiop-ssl":'''JBoss IIOP/SSL''',
"gf":'''Grid Friendly''',
"joltid":'''Joltid''',
"raven-rmp":'''Raven Remote Management Control''',
"raven-rdp":'''Raven Remote Management Data''',
"urld-port":'''URL Daemon Port''',
"ms-la":'''MS-LA''',
"snac":'''SNAC''',
"ni-visa-remote":'''Remote NI-VISA port''',
"ibm-diradm":'''IBM Directory Server''',
"ibm-diradm-ssl":'''IBM Directory Server SSL''',
"pnrp-port":'''PNRP User Port''',
"voispeed-port":'''VoiSpeed Port''',
"hacl-monitor":'''HA cluster monitor''',
"qftest-lookup":'''qftest Lookup Port''',
"teredo":'''Teredo Port''',
"camac":'''CAMAC equipment''',
"symantec-sim":'''Symantec SIM''',
"interworld":'''Interworld''',
"tellumat-nms":'''Tellumat MDR NMS''',
"ssmpp":'''Secure SMPP''',
"apcupsd":'''Apcupsd Information Port''',
"taserver":'''TeamAgenda Server Port''',
"rbr-discovery":'''Red Box Recorder ADP''',
"questnotify":'''Quest Notification Server''',
"razor":'''Vipul's Razor''',
"sky-transport":'''Sky Transport Protocol''',
"personalos-001":'''PersonalOS Comm Port''',
"mcp-port":'''MCP user port''',
"cctv-port":'''CCTV control port''',
"iniserve-port":'''INIServe port''',
"bmc-onekey":'''BMC-OneKey''',
"sdbproxy":'''SDBProxy''',
"watcomdebug":'''Watcom Debug''',
"esimport":'''Electromed SIM port''',
"oap":'''Object Access Protocol''',
"oap-s":'''Object Access Protocol over SSL''',
"mbg-ctrl":'''Meinberg Control Service''',
"mccwebsvr-port":'''MCC Web Server Port''',
"megardsvr-port":'''MegaRAID Server Port''',
"megaregsvrport":'''Registration Server Port''',
"tag-ups-1":'''Advantage Group UPS Suite''',
"dmaf-caster":'''DMAF Caster''',
"ccm-port":'''Coalsere CCM Port''',
"cmc-port":'''Coalsere CMC Port''',
"config-port":'''Configuration Port''',
"data-port":'''Data Port''',
"ttat3lb":'''Tarantella Load Balancing''',
"nati-svrloc":'''NATI-ServiceLocator''',
"kfxaclicensing":'''Ascent Capture Licensing''',
"press":'''PEG PRESS Server''',
"canex-watch":'''CANEX Watch System''',
"u-dbap":'''U-DBase Access Protocol''',
"emprise-lls":'''Emprise License Server''',
"emprise-lsc":'''License Server Console''',
"p2pgroup":'''Peer to Peer Grouping''',
"sentinel":'''Sentinel Server''',
"isomair":'''isomair''',
"wv-csp-sms":'''WV CSP SMS Binding''',
"gtrack-server":'''LOCANIS G-TRACK Server''',
"gtrack-ne":'''LOCANIS G-TRACK NE Port''',
"bpmd":'''BP Model Debugger''',
"mediaspace":'''MediaSpace''',
"shareapp":'''ShareApp''',
"iw-mmogame":'''Illusion Wireless MMOG''',
"a14":'''A14 (AN-to-SC/MM)''',
"a15":'''A15 (AN-to-AN)''',
"quasar-server":'''Quasar Accounting Server''',
"trap-daemon":'''text relay-answer''',
"visinet-gui":'''Visinet Gui''',
"infiniswitchcl":'''InfiniSwitch Mgr Client''',
"int-rcv-cntrl":'''Integrated Rcvr Control''',
"bmc-jmx-port":'''BMC JMX Port''',
"comcam-io":'''ComCam IO Port''',
"splitlock":'''Splitlock Server''',
"precise-i3":'''Precise I3''',
"trendchip-dcp":'''Trendchip control protocol''',
"cpdi-pidas-cm":'''CPDI PIDAS Connection Mon''',
"echonet":'''ECHONET''',
"six-degrees":'''Six Degrees Port''',
"hp-dataprotect":'''HP Data Protector''',
"alaris-disc":'''Alaris Device Discovery''',
"sigma-port":'''Satchwell Sigma''',
"start-network":'''Start Messaging Network''',
"cd3o-protocol":'''cd3o Control Protocol''',
"sharp-server":'''ATI SHARP Logic Engine''',
"aairnet-1":'''AAIR-Network 1''',
"aairnet-2":'''AAIR-Network 2''',
"ep-pcp":'''EPSON Projector Control Port''',
"ep-nsp":'''EPSON Network Screen Port''',
"ff-lr-port":'''FF LAN Redundancy Port''',
"haipe-discover":'''HAIPIS Dynamic Discovery''',
"dist-upgrade":'''Distributed Upgrade Port''',
"volley":'''Volley''',
"bvcdaemon-port":'''bvControl Daemon''',
"jamserverport":'''Jam Server Port''',
"ept-machine":'''EPT Machine Interface''',
"escvpnet":'''ESC/VP.net''',
"cs-remote-db":'''C&S Remote Database Port''',
"cs-services":'''C&S Web Services Port''',
"distcc":'''distributed compiler''',
"wacp":'''Wyrnix AIS port''',
"hlibmgr":'''hNTSP Library Manager''',
"sdo":'''Simple Distributed Objects''',
"servistaitsm":'''SerVistaITSM''',
"scservp":'''Customer Service Port''',
"ehp-backup":'''EHP Backup Protocol''',
"xap-ha":'''Extensible Automation''',
"netplay-port1":'''Netplay Port 1''',
"netplay-port2":'''Netplay Port 2''',
"juxml-port":'''Juxml Replication port''',
"audiojuggler":'''AudioJuggler''',
"ssowatch":'''ssowatch''',
"cyc":'''Cyc''',
"xss-srv-port":'''XSS Server Port''',
"splitlock-gw":'''Splitlock Gateway''',
"fjcp":'''Fujitsu Cooperation Port''',
"nmmp":'''Nishioka Miyuki Msg Protocol''',
"prismiq-plugin":'''PRISMIQ VOD plug-in''',
"xrpc-registry":'''XRPC Registry''',
"vxcrnbuport":'''VxCR NBU Default Port''',
"tsp":'''Tunnel Setup Protocol''',
"vaprtm":'''VAP RealTime Messenger''',
"abatemgr":'''ActiveBatch Exec Agent''',
"abatjss":'''ActiveBatch Job Scheduler''',
"immedianet-bcn":'''ImmediaNet Beacon''',
"ps-ams":'''PlayStation AMS (Secure)''',
"apple-sasl":'''Apple SASL''',
"can-nds-ssl":'''IBM Tivoli Directory Service using SSL''',
"can-ferret-ssl":'''IBM Tivoli Directory Service using SSL''',
"pserver":'''pserver''',
"dtp":'''DIRECWAY Tunnel Protocol''',
"ups-engine":'''UPS Engine Port''',
"ent-engine":'''Enterprise Engine Port''',
"eserver-pap":'''IBM EServer PAP''',
"infoexch":'''IBM Information Exchange''',
"dell-rm-port":'''Dell Remote Management''',
"casanswmgmt":'''CA SAN Switch Management''',
"smile":'''SMILE TCP/UDP Interface''',
"efcp":'''e Field Control (EIBnet)''',
"lispworks-orb":'''LispWorks ORB''',
"mediavault-gui":'''Openview Media Vault GUI''',
"wininstall-ipc":'''WinINSTALL IPC Port''',
"calltrax":'''CallTrax Data Port''',
"va-pacbase":'''VisualAge Pacbase server''',
"roverlog":'''RoverLog IPC''',
"ipr-dglt":'''DataGuardianLT''',
"Escale (Newton Dock)":'''Newton Dock''',
"npds-tracker":'''NPDS Tracker''',
"bts-x73":'''BTS X73 Port''',
"cas-mapi":'''EMC SmartPackets-MAPI''',
"bmc-ea":'''BMC EDV/EA''',
"faxstfx-port":'''FAXstfX''',
"dsx-agent":'''DS Expert Agent''',
"tnmpv2":'''Trivial Network Management''',
"simple-push":'''simple-push''',
"simple-push-s":'''simple-push Secure''',
"daap":'''Digital Audio Access Protocol (iTunes)''',
"svn":'''Subversion''',
"magaya-network":'''Magaya Network Port''',
"intelsync":'''Brimstone IntelSync''',
"bmc-data-coll":'''BMC Data Collection''',
"telnetcpcd":'''Telnet Com Port Control''',
"nw-license":'''NavisWorks Licnese System''',
"sagectlpanel":'''SAGECTLPANEL''',
"kpn-icw":'''Internet Call Waiting''',
"lrs-paging":'''LRS NetPage''',
"netcelera":'''NetCelera''',
"ws-discovery":'''Web Service Discovery''',
"adobeserver-3":'''Adobe Server 3''',
"adobeserver-4":'''Adobe Server 4''',
"adobeserver-5":'''Adobe Server 5''',
"rt-event":'''Real-Time Event Port''',
"rt-event-s":'''Real-Time Event Secure Port''',
"sun-as-iiops":'''Sun App Svr - Naming''',
"ca-idms":'''CA-IDMS Server''',
"portgate-auth":'''PortGate Authentication''',
"edb-server2":'''EBD Server 2''',
"sentinel-ent":'''Sentinel Enterprise''',
"tftps":'''TFTP over TLS''',
"delos-dms":'''DELOS Direct Messaging''',
"anoto-rendezv":'''Anoto Rendezvous Port''',
"wv-csp-sms-cir":'''WV CSP SMS CIR Channel''',
"wv-csp-udp-cir":'''WV CSP UDP/IP CIR Channel''',
"opus-services":'''OPUS Server Port''',
"itelserverport":'''iTel Server Port''',
"ufastro-instr":'''UF Astro. Instr. Services''',
"xsync":'''Xsync''',
"xserveraid":'''Xserve RAID''',
"sychrond":'''Sychron Service Daemon''',
"blizwow":'''World of Warcraft''',
"na-er-tip":'''Netia NA-ER Port''',
"array-manager":'''Xyartex Array Manager''',
"e-mdu":'''Ericsson Mobile Data Unit''',
"e-woa":'''Ericsson Web on Air''',
"fksp-audit":'''Fireking Audit Port''',
"client-ctrl":'''Client Control''',
"smap":'''Service Manager''',
"m-wnn":'''Mobile Wnn''',
"multip-msg":'''Multipuesto Msg Port''',
"synel-data":'''Synel Data Collection Port''',
"pwdis":'''Password Distribution''',
"rs-rmi":'''RealSpace RMI''',
"versatalk":'''versaTalk Server Port''',
"launchbird-lm":'''Launchbird LicenseManager''',
"heartbeat":'''Heartbeat Protocol''',
"wysdma":'''WysDM Agent''',
"cst-port":'''CST - Configuration & Service Tracker''',
"ipcs-command":'''IP Control Systems Ltd.''',
"sasg":'''SASG''',
"gw-call-port":'''GWRTC Call Port''',
"linktest":'''LXPRO.COM LinkTest''',
"linktest-s":'''LXPRO.COM LinkTest SSL''',
"webdata":'''webData''',
"cimtrak":'''CimTrak''',
"cbos-ip-port":'''CBOS/IP ncapsalatoin port''',
"gprs-cube":'''CommLinx GPRS Cube''',
"vipremoteagent":'''Vigil-IP RemoteAgent''',
"nattyserver":'''NattyServer Port''',
"timestenbroker":'''TimesTen Broker Port''',
"sas-remote-hlp":'''SAS Remote Help Server''',
"canon-capt":'''Canon CAPT Port''',
"grf-port":'''GRF Server Port''',
"apw-registry":'''apw RMI registry''',
"exapt-lmgr":'''Exapt License Manager''',
"adtempusclient":'''adTEmpus Client''',
"gsakmp":'''gsakmp port''',
"gbs-smp":'''GBS SnapMail Protocol''',
"xo-wave":'''XO Wave Control Port''',
"mni-prot-rout":'''MNI Protected Routing''',
"rtraceroute":'''Remote Traceroute''',
"listmgr-port":'''ListMGR Port''',
"rblcheckd":'''rblcheckd server daemon''',
"haipe-otnk":'''HAIPE Network Keying''',
"cindycollab":'''Cinderella Collaboration''',
"paging-port":'''RTP Paging Port''',
"ctp":'''Chantry Tunnel Protocol''',
"ctdhercules":'''ctdhercules''',
"zicom":'''ZICOM''',
"ispmmgr":'''ISPM Manager Port''',
"dvcprov-port":'''Device Provisioning Port''',
"jibe-eb":'''Jibe EdgeBurst''',
"c-h-it-port":'''Cutler-Hammer IT Port''',
"cognima":'''Cognima Replication''',
"nnp":'''Nuzzler Network Protocol''',
"abcvoice-port":'''ABCvoice server port''',
"iso-tp0s":'''Secure ISO TP0 port''',
"bim-pem":'''Impact Mgr./PEM Gateway''',
"bfd-control":'''BFD Control Protocol''',
"bfd-echo":'''BFD Echo Protocol''',
"upstriggervsw":'''VSW Upstrigger port''',
"fintrx":'''Fintrx''',
"isrp-port":'''SPACEWAY Routing port''',
"remotedeploy":'''RemoteDeploy Administration Port [July 2003]''',
"quickbooksrds":'''QuickBooks RDS''',
"tvnetworkvideo":'''TV NetworkVideo Data port''',
"sitewatch":'''e-Watch Corporation SiteWatch''',
"dcsoftware":'''DataCore Software''',
"jaus":'''JAUS Robots''',
"myblast":'''myBLAST Mekentosj port''',
"spw-dialer":'''Spaceway Dialer''',
"idps":'''idps''',
"minilock":'''Minilock''',
"radius-dynauth":'''RADIUS Dynamic Authorization''',
"pwgpsi":'''Print Services Interface''',
"ibm-mgr":'''ibm manager service''',
"vhd":'''VHD''',
"soniqsync":'''SoniqSync''',
"iqnet-port":'''Harman IQNet Port''',
"tcpdataserver":'''ThorGuard Server Port''',
"wsmlb":'''Remote System Manager''',
"spugna":'''SpuGNA Communication Port''',
"sun-as-iiops-ca":'''Sun App Svr-IIOPClntAuth''',
"apocd":'''Java Desktop System Configuration Agent''',
"wlanauth":'''WLAN AS server''',
"amp":'''AMP''',
"neto-wol-server":'''netO WOL Server''',
"rap-ip":'''Rhapsody Interface Protocol''',
"neto-dcs":'''netO DCS''',
"lansurveyorxml":'''LANsurveyor XML''',
"sunlps-http":'''Sun Local Patch Server''',
"tapeware":'''Yosemite Tech Tapeware''',
"crinis-hb":'''Crinis Heartbeat''',
"epl-slp":'''EPL Sequ Layer Protocol''',
"scp":'''Siemens AuD SCP''',
"pmcp":'''ATSC PMCP Standard''',
"acp-discovery":'''Compute Pool Discovery''',
"acp-conduit":'''Compute Pool Conduit''',
"acp-policy":'''Compute Pool Policy''',
"ffserver":'''Antera FlowFusion Process Simulation''',
"warmux":'''WarMUX game server''',
"netmpi":'''Netadmin Systems MPI service''',
"neteh":'''Netadmin Systems Event Handler''',
"neteh-ext":'''Netadmin Systems Event Handler External''',
"cernsysmgmtagt":'''Cerner System Management Agent''',
"dvapps":'''Docsvault Application Service''',
"xxnetserver":'''xxNETserver''',
"aipn-auth":'''AIPN LS Authentication''',
"spectardata":'''Spectar Data Stream Service''',
"spectardb":'''Spectar Database Rights Service''',
"markem-dcp":'''MARKEM NEXTGEN DCP''',
"mkm-discovery":'''MARKEM Auto-Discovery''',
"sos":'''Scito Object Server''',
"amx-rms":'''AMX Resource Management Suite''',
"flirtmitmir":'''www.FlirtMitMir.de''',
"zfirm-shiprush3":'''Z-Firm ShipRush v3''',
"nhci":'''NHCI status port''',
"quest-agent":'''Quest Common Agent''',
"rnm":'''RNM''',
"v-one-spp":'''V-ONE Single Port Proxy''',
"an-pcp":'''Astare Network PCP''',
"msfw-control":'''MS Firewall Control''',
"item":'''IT Environmental Monitor''',
"spw-dnspreload":'''SPACEWAY DNS Prelaod''',
"qtms-bootstrap":'''QTMS Bootstrap Protocol''',
"spectraport":'''SpectraTalk Port''',
"sse-app-config":'''SSE App Configuration''',
"sscan":'''SONY scanning protocol''',
"stryker-com":'''Stryker Comm Port''',
"opentrac":'''OpenTRAC''',
"informer":'''INFORMER''',
"trap-port":'''Trap Port''',
"trap-port-mom":'''Trap Port MOM''',
"nav-port":'''Navini Port''',
"sasp":'''Server/Application State Protocol (SASP)''',
"winshadow-hd":'''winShadow Host Discovery''',
"giga-pocket":'''GIGA-POCKET''',
"asap-udp":'''asap udp port''',
"xpl":'''xpl automation protocol''',
"dzdaemon":'''Sun SDViz DZDAEMON Port''',
"dzoglserver":'''Sun SDViz DZOGLSERVER Port''',
"ovsam-mgmt":'''hp OVSAM MgmtServer Disco''',
"ovsam-d-agent":'''hp OVSAM HostAgent Disco''',
"avocent-adsap":'''Avocent DS Authorization''',
"oem-agent":'''OEM Agent''',
"fagordnc":'''fagordnc''',
"sixxsconfig":'''SixXS Configuration''',
"pnbscada":'''PNBSCADA''',
"dl-agent":'''DirectoryLockdown Agent
IANA assigned this well-formed service name as a replacement for "dl_agent".''',
"dl_agent":'''DirectoryLockdown Agent''',
"xmpcr-interface":'''XMPCR Interface Port''',
"fotogcad":'''FotoG CAD interface''',
"appss-lm":'''appss license manager''',
"igrs":'''IGRS''',
"idac":'''Data Acquisition and Control''',
"msdts1":'''DTS Service Port''',
"vrpn":'''VR Peripheral Network''',
"softrack-meter":'''SofTrack Metering''',
"topflow-ssl":'''TopFlow SSL''',
"nei-management":'''NEI management port''',
"ciphire-data":'''Ciphire Data Transport''',
"ciphire-serv":'''Ciphire Services''',
"dandv-tester":'''D and V Tester Control Port''',
"ndsconnect":'''Niche Data Server Connect''',
"rtc-pm-port":'''Oracle RTC-PM port''',
"pcc-image-port":'''PCC-image-port''',
"cgi-starapi":'''CGI StarAPI Server''',
"syam-agent":'''SyAM Agent Port''',
"syam-smc":'''SyAm SMC Service Port''',
"sdo-tls":'''Simple Distributed Objects over TLS''',
"sdo-ssh":'''Simple Distributed Objects over SSH''',
"senip":'''IAS, Inc. SmartEye NET Internet Protocol''',
"itv-control":'''ITV Port''',
"udt-os":'''Unidata UDT OS
IANA assigned this well-formed service name as a replacement for "udt_os".''',
"udt_os":'''Unidata UDT OS''',
"nimsh":'''NIM Service Handler''',
"nimaux":'''NIMsh Auxiliary Port''',
"charsetmgr":'''CharsetMGR''',
"omnilink-port":'''Arnet Omnilink Port''',
"mupdate":'''Mailbox Update (MUPDATE) protocol''',
"topovista-data":'''TopoVista elevation data''',
"imoguia-port":'''Imoguia Port''',
"hppronetman":'''HP Procurve NetManagement''',
"surfcontrolcpa":'''SurfControl CPA''',
"prnrequest":'''Printer Request Port''',
"prnstatus":'''Printer Status Port''',
"gbmt-stars":'''Global Maintech Stars''',
"listcrt-port":'''ListCREATOR Port''',
"listcrt-port-2":'''ListCREATOR Port 2''',
"agcat":'''Auto-Graphics Cataloging''',
"wysdmc":'''WysDM Controller''',
"aftmux":'''AFT multiples port''',
"pktcablemmcops":'''PacketCableMultimediaCOPS''',
"hyperip":'''HyperIP''',
"exasoftport1":'''Exasoft IP Port''',
"herodotus-net":'''Herodotus Net''',
"sor-update":'''Soronti Update Port''',
"symb-sb-port":'''Symbian Service Broker''',
"mpl-gprs-port":'''MPL_GPRS_Port''',
"zmp":'''Zoran Media Port''',
"winport":'''WINPort''',
"natdataservice":'''ScsTsr''',
"netboot-pxe":'''PXE NetBoot Manager''',
"smauth-port":'''AMS Port''',
"syam-webserver":'''Syam Web Server Port''',
"msr-plugin-port":'''MSR Plugin Port''',
"dyn-site":'''Dynamic Site System''',
"plbserve-port":'''PL/B App Server User Port''',
"sunfm-port":'''PL/B File Manager Port''',
"sdp-portmapper":'''SDP Port Mapper Protocol''',
"mailprox":'''Mailprox''',
"dvbservdsc":'''DVB Service Discovery''',
"dbcontrol-agent":'''Oracel dbControl Agent po
IANA assigned this well-formed service name as a replacement for "dbcontrol_agent".''',
"dbcontrol_agent":'''Oracel dbControl Agent po''',
"aamp":'''Anti-virus Application Management Port''',
"xecp-node":'''XeCP Node Service''',
"homeportal-web":'''Home Portal Web Server''',
"srdp":'''satellite distribution''',
"tig":'''TetraNode Ip Gateway''',
"sops":'''S-Ops Management''',
"emcads":'''EMCADS Server Port''',
"backupedge":'''BackupEDGE Server''',
"ccp":'''Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices''',
"apdap":'''Anton Paar Device Administration Protocol''',
"drip":'''Dynamic Routing Information Protocol''',
"namemunge":'''Name Munging''',
"pwgippfax":'''PWG IPP Facsimile''',
"i3-sessionmgr":'''I3 Session Manager''',
"xmlink-connect":'''Eydeas XMLink Connect''',
"adrep":'''AD Replication RPC''',
"p2pcommunity":'''p2pCommunity''',
"gvcp":'''GigE Vision Control''',
"mqe-broker":'''MQEnterprise Broker''',
"mqe-agent":'''MQEnterprise Agent''',
"treehopper":'''Tree Hopper Networking''',
"bess":'''Bess Peer Assessment''',
"proaxess":'''ProAxess Server''',
"sbi-agent":'''SBI Agent Protocol''',
"thrp":'''Teran Hybrid Routing Protocol''',
"sasggprs":'''SASG GPRS''',
"ati-ip-to-ncpe":'''Avanti IP to NCPE API''',
"bflckmgr":'''BuildForge Lock Manager''',
"ppsms":'''PPS Message Service''',
"ianywhere-dbns":'''iAnywhere DBNS''',
"landmarks":'''Landmark Messages''',
"lanrevagent":'''LANrev Agent''',
"lanrevserver":'''LANrev Server''',
"iconp":'''ict-control Protocol''',
"progistics":'''ConnectShip Progistics''',
"citysearch":'''Remote Applicant Tracking Service''',
"airshot":'''Air Shot''',
"opswagent":'''Opsware Agent''',
"opswmanager":'''Opsware Manager''',
"secure-cfg-svr":'''Secured Configuration Server''',
"smwan":'''Smith Micro Wide Area Network Service''',
"acms":'''Aircraft Cabin Management System''',
"starfish":'''Starfish System Admin''',
"eis":'''ESRI Image Server''',
"eisp":'''ESRI Image Service''',
"mapper-nodemgr":'''MAPPER network node manager''',
"mapper-mapethd":'''MAPPER TCP/IP server''',
"mapper-ws-ethd":'''MAPPER workstation server
IANA assigned this well-formed service name as a replacement for "mapper-ws_ethd".''',
"mapper-ws_ethd":'''MAPPER workstation server''',
"centerline":'''Centerline''',
"dcs-config":'''DCS Configuration Port''',
"bv-queryengine":'''BindView-Query Engine''',
"bv-is":'''BindView-IS''',
"bv-smcsrv":'''BindView-SMCServer''',
"bv-ds":'''BindView-DirectoryServer''',
"bv-agent":'''BindView-Agent''',
"iss-mgmt-ssl":'''ISS Management Svcs SSL''',
"abcsoftware":'''abcsoftware-01''',
"agentsease-db":'''aes_db''',
"dnx":'''Distributed Nagios Executor Service''',
"nvcnet":'''Norman distributes scanning service''',
"terabase":'''Terabase''',
"newoak":'''NewOak''',
"pxc-spvr-ft":'''pxc-spvr-ft''',
"pxc-splr-ft":'''pxc-splr-ft''',
"pxc-roid":'''pxc-roid''',
"pxc-pin":'''pxc-pin''',
"pxc-spvr":'''pxc-spvr''',
"pxc-splr":'''pxc-splr''',
"netcheque":'''NetCheque accounting''',
"chimera-hwm":'''Chimera HWM''',
"samsung-unidex":'''Samsung Unidex''',
"altserviceboot":'''Alternate Service Boot''',
"pda-gate":'''PDA Gate''',
"acl-manager":'''ACL Manager''',
"taiclock":'''TAICLOCK''',
"talarian-mcast1":'''Talarian Mcast''',
"talarian-mcast2":'''Talarian Mcast''',
"talarian-mcast3":'''Talarian Mcast''',
"talarian-mcast4":'''Talarian Mcast''',
"talarian-mcast5":'''Talarian Mcast''',
"trap":'''TRAP Port''',
"nexus-portal":'''Nexus Portal''',
"dnox":'''DNOX''',
"esnm-zoning":'''ESNM Zoning Port''',
"tnp1-port":'''TNP1 User Port''',
"partimage":'''Partition Image Port''',
"as-debug":'''Graphical Debug Server''',
"bxp":'''bitxpress''',
"dtserver-port":'''DTServer Port''',
"ip-qsig":'''IP Q signaling protocol''',
"jdmn-port":'''Accell/JSP Daemon Port''',
"suucp":'''UUCP over SSL''',
"vrts-auth-port":'''VERITAS Authorization Service''',
"sanavigator":'''SANavigator Peer Port''',
"ubxd":'''Ubiquinox Daemon''',
"wap-push-http":'''WAP Push OTA-HTTP port''',
"wap-push-https":'''WAP Push OTA-HTTP secure''',
"ravehd":'''RaveHD network control''',
"fazzt-ptp":'''Fazzt Point-To-Point''',
"fazzt-admin":'''Fazzt Administration''',
"yo-main":'''Yo.net main service''',
"houston":'''Rocketeer-Houston''',
"ldxp":'''LDXP''',
"nirp":'''Neighbour Identity Resolution''',
"ltp":'''Location Tracking Protocol''',
"npp":'''Network Paging Protocol''',
"acp-proto":'''Accounting Protocol''',
"ctp-state":'''Context Transfer Protocol''',
"wafs":'''Wide Area File Services''',
"cisco-wafs":'''Wide Area File Services''',
"cppdp":'''Cisco Peer to Peer Distribution Protocol''',
"interact":'''VoiceConnect Interact''',
"ccu-comm-1":'''CosmoCall Universe Communications Port 1''',
"ccu-comm-2":'''CosmoCall Universe Communications Port 2''',
"ccu-comm-3":'''CosmoCall Universe Communications Port 3''',
"lms":'''Location Message Service''',
"wfm":'''Servigistics WFM server''',
"kingfisher":'''Kingfisher protocol''',
"dlms-cosem":'''DLMS/COSEM''',
"dsmeter-iatc":'''DSMETER Inter-Agent Transfer Channel
IANA assigned this well-formed service name as a replacement for "dsmeter_iatc".''',
"dsmeter_iatc":'''DSMETER Inter-Agent Transfer Channel''',
"ice-location":'''Ice Location Service (TCP)''',
"ice-slocation":'''Ice Location Service (SSL)''',
"ice-router":'''Ice Firewall Traversal Service (TCP)''',
"ice-srouter":'''Ice Firewall Traversal Service (SSL)''',
"avanti-cdp":'''Avanti Common Data
IANA assigned this well-formed service name as a replacement for "avanti_cdp".''',
"avanti_cdp":'''Avanti Common Data''',
"pmas":'''Performance Measurement and Analysis''',
"idp":'''Information Distribution Protocol''',
"ipfltbcst":'''IP Fleet Broadcast''',
"minger":'''Minger Email Address Validation Service''',
"tripe":'''Trivial IP Encryption (TrIPE)''',
"aibkup":'''Automatically Incremental Backup''',
"zieto-sock":'''Zieto Socket Communications''',
"iRAPP":'''iRAPP Server Protocol''',
"cequint-cityid":'''Cequint City ID UI trigger''',
"perimlan":'''ISC Alarm Message Service''',
"seraph":'''Seraph DCS''',
"ascomalarm":'''Ascom IP Alarming''',
"santools":'''SANtools Diagnostic Server''',
"lorica-in":'''Lorica inside facing''',
"lorica-in-sec":'''Lorica inside facing (SSL)''',
"lorica-out":'''Lorica outside facing''',
"lorica-out-sec":'''Lorica outside facing (SSL)''',
"fortisphere-vm":'''Fortisphere VM Service''',
"ftsync":'''Firewall/NAT state table synchronization''',
"opencore":'''OpenCORE Remote Control Service''',
"omasgport":'''OMA BCAST Service Guide''',
"ewinstaller":'''EminentWare Installer''',
"ewdgs":'''EminentWare DGS''',
"pvxpluscs":'''Pvx Plus CS Host''',
"sysrqd":'''sysrq daemon''',
"xtgui":'''xtgui information service''',
"bre":'''BRE (Bridge Relay Element)''',
"patrolview":'''Patrol View''',
"drmsfsd":'''drmsfsd''',
"dpcp":'''DPCP''',
"igo-incognito":'''IGo Incognito Data Port''',
"brlp-0":'''Braille protocol''',
"brlp-1":'''Braille protocol''',
"brlp-2":'''Braille protocol''',
"brlp-3":'''Braille protocol''',
"shofar":'''Shofar''',
"synchronite":'''Synchronite''',
"j-ac":'''JDL Accounting LAN Service''',
"accel":'''ACCEL''',
"izm":'''Instantiated Zero-control Messaging''',
"g2tag":'''G2 RFID Tag Telemetry Data''',
"xgrid":'''Xgrid''',
"apple-vpns-rp":'''Apple VPN Server Reporting Protocol''',
"aipn-reg":'''AIPN LS Registration''',
"jomamqmonitor":'''JomaMQMonitor''',
"cds":'''CDS Transfer Agent''',
"smartcard-tls":'''smartcard-TLS''',
"hillrserv":'''Hillr Connection Manager''',
"netscript":'''Netadmin Systems NETscript service''',
"assuria-slm":'''Assuria Log Manager''',
"e-builder":'''e-Builder Application Communication''',
"fprams":'''Fiber Patrol Alarm Service''',
"z-wave":'''Zensys Z-Wave Control Protocol''',
"tigv2":'''Rohill TetraNode Ip Gateway v2''',
"opsview-envoy":'''Opsview Envoy''',
"ddrepl":'''Data Domain Replication Service''',
"unikeypro":'''NetUniKeyServer''',
"nufw":'''NuFW decision delegation protocol''',
"nuauth":'''NuFW authentication protocol''',
"fronet":'''FRONET message protocol''',
"stars":'''Global Maintech Stars''',
"nuts-dem":'''NUTS Daemon
IANA assigned this well-formed service name as a replacement for "nuts_dem".''',
"nuts_dem":'''NUTS Daemon''',
"nuts-bootp":'''NUTS Bootp Server
IANA assigned this well-formed service name as a replacement for "nuts_bootp".''',
"nuts_bootp":'''NUTS Bootp Server''',
"nifty-hmi":'''NIFTY-Serve HMI protocol''',
"cl-db-attach":'''Classic Line Database Server Attach''',
"cl-db-request":'''Classic Line Database Server Request''',
"cl-db-remote":'''Classic Line Database Server Remote''',
"nettest":'''nettest''',
"thrtx":'''Imperfect Networks Server''',
"cedros-fds":'''Cedros Fraud Detection System
IANA assigned this well-formed service name as a replacement for "cedros_fds".''',
"cedros_fds":'''Cedros Fraud Detection System''',
"oirtgsvc":'''Workflow Server''',
"oidocsvc":'''Document Server''',
"oidsr":'''Document Replication''',
"vvr-control":'''VVR Control''',
"tgcconnect":'''TGCConnect Beacon''',
"vrxpservman":'''Multum Service Manager''',
"hhb-handheld":'''HHB Handheld Client''',
"agslb":'''A10 GSLB Service''',
"PowerAlert-nsa":'''PowerAlert Network Shutdown Agent''',
"menandmice-noh":'''Men & Mice Remote Control
IANA assigned this well-formed service name as a replacement for "menandmice_noh".''',
"menandmice_noh":'''Men & Mice Remote Control''',
"idig-mux":'''iDigTech Multiplex
IANA assigned this well-formed service name as a replacement for "idig_mux".''',
"idig_mux":'''iDigTech Multiplex''',
"mbl-battd":'''MBL Remote Battery Monitoring''',
"atlinks":'''atlinks device discovery''',
"bzr":'''Bazaar version control system''',
"stat-results":'''STAT Results''',
"stat-scanner":'''STAT Scanner Control''',
"stat-cc":'''STAT Command Center''',
"nss":'''Network Security Service''',
"jini-discovery":'''Jini Discovery''',
"omscontact":'''OMS Contact''',
"omstopology":'''OMS Topology''',
"silverpeakpeer":'''Silver Peak Peer Protocol''',
"silverpeakcomm":'''Silver Peak Communication Protocol''',
"altcp":'''ArcLink over Ethernet''',
"joost":'''Joost Peer to Peer Protocol''',
"ddgn":'''DeskDirect Global Network''',
"pslicser":'''PrintSoft License Server''',
"iadt-disc":'''Internet ADT Discovery Protocol''',
"pcoip":'''PC over IP''',
"mma-discovery":'''MMA Device Discovery''',
"sm-disc":'''StorMagic Discovery''',
"wello":'''Wello P2P pubsub service''',
"storman":'''StorMan''',
"MaxumSP":'''Maxum Services''',
"httpx":'''HTTPX''',
"macbak":'''MacBak''',
"pcptcpservice":'''Production Company Pro TCP Service''',
"gmmp":'''General Metaverse Messaging Protocol''',
"universe-suite":'''UNIVERSE SUITE MESSAGE SERVICE
IANA assigned this well-formed service name as a replacement for "universe_suite".''',
"universe_suite":'''UNIVERSE SUITE MESSAGE SERVICE''',
"wcpp":'''Woven Control Plane Protocol''',
"vatata":'''Vatata Peer to Peer Protocol''',
"dsmipv6":'''Dual Stack MIPv6 NAT Traversal''',
"azeti-bd":'''azeti blinddate''',
"eims-admin":'''EIMS ADMIN''',
"corelccam":'''Corel CCam''',
"d-data":'''Diagnostic Data''',
"d-data-control":'''Diagnostic Data Control''',
"srcp":'''Simple Railroad Command Protocol''',
"owserver":'''One-Wire Filesystem Server''',
"batman":'''better approach to mobile ad-hoc networking''',
"pinghgl":'''Hellgate London''',
"visicron-vs":'''Visicron Videoconference Service''',
"compx-lockview":'''CompX-LockView''',
"dserver":'''Exsequi Appliance Discovery''',
"mirrtex":'''Mir-RT exchange service''',
"fdt-rcatp":'''FDT Remote Categorization Protocol''',
"rwhois":'''Remote Who Is''',
"trim-event":'''TRIM Event Service''',
"trim-ice":'''TRIM ICE Service''',
"balour":'''Balour Game Server''',
"geognosisman":'''Cadcorp GeognoSIS Manager Service''',
"geognosis":'''Cadcorp GeognoSIS Service''',
"jaxer-web":'''Jaxer Web Protocol''',
"jaxer-manager":'''Jaxer Manager Command Protocol''',
"gaia":'''Gaia Connector Protocol''',
"lisp-data":'''LISP Data Packets''',
"lisp-control":'''LISP Data-Triggered Control''',
"unicall":'''UNICALL''',
"vinainstall":'''VinaInstall''',
"m4-network-as":'''Macro 4 Network AS''',
"elanlm":'''ELAN LM''',
"lansurveyor":'''LAN Surveyor''',
"itose":'''ITOSE''',
"fsportmap":'''File System Port Map''',
"net-device":'''Net Device''',
"plcy-net-svcs":'''PLCY Net Services''',
"pjlink":'''Projector Link''',
"f5-iquery":'''F5 iQuery''',
"qsnet-trans":'''QSNet Transmitter''',
"qsnet-workst":'''QSNet Workstation''',
"qsnet-assist":'''QSNet Assistant''',
"qsnet-cond":'''QSNet Conductor''',
"qsnet-nucl":'''QSNet Nucleus''',
"omabcastltkm":'''OMA BCAST Long-Term Key Messages''',
"nacnl":'''NavCom Discovery and Control Port''',
"afore-vdp-disc":'''AFORE vNode Discovery protocol''',
"wxbrief":'''WeatherBrief Direct''',
"epmd":'''Erlang Port Mapper Daemon''',
"elpro-tunnel":'''ELPRO V2 Protocol Tunnel
IANA assigned this well-formed service name as a replacement for "elpro_tunnel".''',
"elpro_tunnel":'''ELPRO V2 Protocol Tunnel''',
"l2c-disc":'''LAN2CAN Discovery''',
"l2c-data":'''LAN2CAN Data''',
"remctl":'''Remote Authenticated Command Service''',
"tolteces":'''Toltec EasyShare''',
"bip":'''BioAPI Interworking''',
"cp-spxsvr":'''Cambridge Pixel SPx Server''',
"cp-spxdpy":'''Cambridge Pixel SPx Display''',
"ctdb":'''CTDB''',
"xandros-cms":'''Xandros Community Management Service''',
"wiegand":'''Physical Access Control''',
"apwi-disc":'''American Printware Discovery''',
"omnivisionesx":'''OmniVision communication for Virtual environments''',
"ds-srv":'''ASIGRA Services''',
"ds-srvr":'''ASIGRA Televaulting DS-System Service''',
"ds-clnt":'''ASIGRA Televaulting DS-Client Service''',
"ds-user":'''ASIGRA Televaulting DS-Client Monitoring/Management''',
"ds-admin":'''ASIGRA Televaulting DS-System Monitoring/Management''',
"ds-mail":'''ASIGRA Televaulting Message Level Restore service''',
"ds-slp":'''ASIGRA Televaulting DS-Sleeper Service''',
"netrockey6":'''NetROCKEY6 SMART Plus Service''',
"beacon-port-2":'''SMARTS Beacon Port''',
"rsqlserver":'''REAL SQL Server''',
"l-acoustics":'''L-ACOUSTICS management''',
"netblox":'''Netblox Protocol''',
"saris":'''Saris''',
"pharos":'''Pharos''',
"krb524":'''KRB524''',
"nv-video":'''NV Video default''',
"upnotifyp":'''UPNOTIFYP''',
"n1-fwp":'''N1-FWP''',
"n1-rmgmt":'''N1-RMGMT''',
"asc-slmd":'''ASC Licence Manager''',
"privatewire":'''PrivateWire''',
"camp":'''Common ASCII Messaging Protocol''',
"ctisystemmsg":'''CTI System Msg''',
"ctiprogramload":'''CTI Program Load''',
"nssalertmgr":'''NSS Alert Manager''',
"nssagentmgr":'''NSS Agent Manager''',
"prchat-user":'''PR Chat User''',
"prchat-server":'''PR Chat Server''',
"prRegister":'''PR Register''',
"mcp":'''Matrix Configuration Protocol''',
"hpssmgmt":'''hpssmgmt service''',
"icms":'''Integrated Client Message Service''',
"awacs-ice":'''Apple Wide Area Connectivity Service ICE Bootstrap''',
"ipsec-nat-t":'''IPsec NAT-Traversal''',
"ehs":'''Event Heap Server''',
"ehs-ssl":'''Event Heap Server SSL''',
"wssauthsvc":'''WSS Security Service''',
"swx-gate":'''Software Data Exchange Gateway''',
"worldscores":'''WorldScores''',
"sf-lm":'''SF License Manager (Sentinel)''',
"lanner-lm":'''Lanner License Manager''',
"synchromesh":'''Synchromesh''',
"aegate":'''Aegate PMR Service''',
"gds-adppiw-db":'''Perman I Interbase Server''',
"ieee-mih":'''MIH Services''',
"menandmice-mon":'''Men and Mice Monitoring''',
"msfrs":'''MS FRS Replication''',
"rsip":'''RSIP Port''',
"dtn-bundle-udp":'''DTN Bundle UDP CL Protocol''',
"mtcevrunqss":'''Marathon everRun Quorum Service Server''',
"mtcevrunqman":'''Marathon everRun Quorum Service Manager''',
"hylafax":'''HylaFAX''',
"kwtc":'''Kids Watch Time Control Service''',
"tram":'''TRAM''',
"bmc-reporting":'''BMC Reporting''',
"iax":'''Inter-Asterisk eXchange''',
"l3t-at-an":'''HRPD L3T (AT-AN)''',
"hrpd-ith-at-an":'''HRPD-ITH (AT-AN)''',
"ipt-anri-anri":'''IPT (ANRI-ANRI)''',
"ias-session":'''IAS-Session (ANRI-ANRI)''',
"ias-paging":'''IAS-Paging (ANRI-ANRI)''',
"ias-neighbor":'''IAS-Neighbor (ANRI-ANRI)''',
"a21-an-1xbs":'''A21 (AN-1xBS)''',
"a16-an-an":'''A16 (AN-AN)''',
"a17-an-an":'''A17 (AN-AN)''',
"piranha1":'''Piranha1''',
"piranha2":'''Piranha2''',
"playsta2-app":'''PlayStation2 App Port''',
"playsta2-lob":'''PlayStation2 Lobby Port''',
"smaclmgr":'''smaclmgr''',
"kar2ouche":'''Kar2ouche Peer location service''',
"oms":'''OrbitNet Message Service''',
"noteit":'''Note It! Message Service''',
"ems":'''Rimage Messaging Server''',
"contclientms":'''Container Client Message Service''',
"eportcomm":'''E-Port Message Service''',
"mmacomm":'''MMA Comm Services''',
"mmaeds":'''MMA EDS Service''',
"eportcommdata":'''E-Port Data Service''',
"light":'''Light packets transfer protocol''',
"acter":'''Bull RSF action server''',
"rfa":'''remote file access server''',
"cxws":'''CXWS Operations''',
"appiq-mgmt":'''AppIQ Agent Management''',
"dhct-status":'''BIAP Device Status''',
"dhct-alerts":'''BIAP Generic Alert''',
"bcs":'''Business Continuity Servi''',
"traversal":'''boundary traversal''',
"mgesupervision":'''MGE UPS Supervision''',
"mgemanagement":'''MGE UPS Management''',
"parliant":'''Parliant Telephony System''',
"finisar":'''finisar''',
"spike":'''Spike Clipboard Service''',
"rfid-rp1":'''RFID Reader Protocol 1.0''',
"autopac":'''Autopac Protocol''',
"msp-os":'''Manina Service Protocol''',
"nst":'''Network Scanner Tool FTP''',
"mobile-p2p":'''Mobile P2P Service''',
"altovacentral":'''Altova DatabaseCentral''',
"prelude":'''Prelude IDS message proto''',
"mtn":'''monotone Netsync Protocol''',
"conspiracy":'''Conspiracy messaging''',
"netxms-agent":'''NetXMS Agent''',
"netxms-mgmt":'''NetXMS Management''',
"netxms-sync":'''NetXMS Server Synchronization''',
"truckstar":'''TruckStar Service''',
"a26-fap-fgw":'''A26 (FAP-FGW)''',
"fcis-disc":'''F-Link Client Information Service Discovery''',
"capmux":'''CA Port Multiplexer''',
"gsmtap":'''GSM Interface Tap''',
"gearman":'''Gearman Job Queue System''',
"ohmtrigger":'''OHM server trigger''',
"ipdr-sp":'''IPDR/SP''',
"solera-lpn":'''SoleraTec Locator''',
"ipfix":'''IP Flow Info Export''',
"ipfixs":'''ipfix protocol over DTLS''',
"lumimgrd":'''Luminizer Manager''',
"sicct-sdp":'''SICCT Service Discovery Protocol''',
"openhpid":'''openhpi HPI service''',
"ifsp":'''Internet File Synchronization Protocol''',
"fmp":'''Funambol Mobile Push''',
"profilemac":'''Profile for Mac''',
"ssad":'''Simple Service Auto Discovery''',
"spocp":'''Simple Policy Control Protocol''',
"snap":'''Simple Network Audio Protocol''',
"simon-disc":'''Simple Invocation of Methods Over Network (SIMON) Discovery''',
"bfd-multi-ctl":'''BFD Multihop Control''',
"cncp":'''Cisco Nexus Control Protocol''',
"iims":'''Icona Instant Messenging System''',
"iwec":'''Icona Web Embedded Chat''',
"ilss":'''Icona License System Server''',
"notateit-disc":'''Notateit Messaging Discovery''',
"aja-ntv4-disc":'''AJA ntv4 Video System Discovery''',
"htcp":'''HTCP''',
"varadero-0":'''Varadero-0''',
"varadero-1":'''Varadero-1''',
"varadero-2":'''Varadero-2''',
"opcua-udp":'''OPC UA TCP Protocol''',
"quosa":'''QUOSA Virtual Library Service''',
"gw-asv":'''nCode ICE-flow Library AppServer''',
"opcua-tls":'''OPC UA TCP Protocol over TLS/SSL''',
"gw-log":'''nCode ICE-flow Library LogServer''',
"wcr-remlib":'''WordCruncher Remote Library Service''',
"contamac-icm":'''Contamac ICM Service
IANA assigned this well-formed service name as a replacement for "contamac_icm".''',
"contamac_icm":'''Contamac ICM Service''',
"wfc":'''Web Fresh Communication''',
"appserv-http":'''App Server - Admin HTTP''',
"appserv-https":'''App Server - Admin HTTPS''',
"sun-as-nodeagt":'''Sun App Server - NA''',
"derby-repli":'''Apache Derby Replication''',
"unify-debug":'''Unify Debugger''',
"phrelay":'''Photon Relay''',
"phrelaydbg":'''Photon Relay Debug''',
"cc-tracking":'''Citcom Tracking Service''',
"wired":'''Wired''',
"tritium-can":'''Tritium CAN Bus Bridge Service''',
"lmcs":'''Lighting Management Control System''',
"inst-discovery":'''Agilent Instrument Discovery''',
"socp-t":'''SOCP Time Synchronization Protocol''',
"socp-c":'''SOCP Control Protocol''',
"hivestor":'''HiveStor Distributed File System''',
"abbs":'''ABBS''',
"lyskom":'''LysKOM Protocol A''',
"radmin-port":'''RAdmin Port''',
"hfcs":'''HyperFileSQL Client/Server Database Engine''',
"bones":'''Bones Remote Control''',
"atsc-mh-ssc":'''ATSC-M/H Service Signaling Channel''',
"eq-office-4940":'''Equitrac Office''',
"eq-office-4941":'''Equitrac Office''',
"eq-office-4942":'''Equitrac Office''',
"munin":'''Munin Graphing Framework''',
"sybasesrvmon":'''Sybase Server Monitor''',
"pwgwims":'''PWG WIMS''',
"sagxtsds":'''SAG Directory Server''',
"ccss-qmm":'''CCSS QMessageMonitor''',
"ccss-qsm":'''CCSS QSystemMonitor''',
"mrip":'''Model Railway Interface Program''',
"smar-se-port1":'''SMAR Ethernet Port 1''',
"smar-se-port2":'''SMAR Ethernet Port 2''',
"parallel":'''Parallel for GAUSS (tm)''',
"busycal":'''BusySync Calendar Synch. Protocol''',
"vrt":'''VITA Radio Transport''',
"hfcs-manager":'''HyperFileSQL Client/Server Database Engine Manager''',
"commplex-main":'''''',
"commplex-link":'''''',
"rfe":'''radio free ethernet''',
"fmpro-internal":'''FileMaker, Inc. - Proprietary name binding''',
"avt-profile-1":'''RTP media data''',
"avt-profile-2":'''RTP control protocol''',
"wsm-server":'''wsm server''',
"wsm-server-ssl":'''wsm server ssl''',
"synapsis-edge":'''Synapsis EDGE''',
"winfs":'''Microsoft Windows Filesystem''',
"telelpathstart":'''TelepathStart''',
"telelpathattack":'''TelepathAttack''',
"nsp":'''NetOnTap Service''',
"fmpro-v6":'''FileMaker, Inc. - Proprietary transport''',
"onpsocket":'''Overlay Network Protocol''',
"zenginkyo-1":'''zenginkyo-1''',
"zenginkyo-2":'''zenginkyo-2''',
"mice":'''mice server''',
"htuilsrv":'''Htuil Server for PLD2''',
"scpi-telnet":'''SCPI-TELNET''',
"scpi-raw":'''SCPI-RAW''',
"strexec-d":'''Storix I/O daemon (data)''',
"strexec-s":'''Storix I/O daemon (stat)''',
"infobright":'''Infobright Database Server''',
"surfpass":'''SurfPass''',
"dmp":'''Direct Message Protocol''',
"asnaacceler8db":'''asnaacceler8db''',
"swxadmin":'''ShopWorX Administration''',
"lxi-evntsvc":'''LXI Event Service''',
"vpm-udp":'''Vishay PM UDP Service''',
"iscape":'''iSCAPE Data Broadcasting''',
"ivocalize":'''iVocalize Web Conference''',
"mmcc":'''multimedia conference control tool''',
"ita-agent":'''ITA Agent''',
"ita-manager":'''ITA Manager''',
"unot":'''UNOT''',
"intecom-ps1":'''Intecom Pointspan 1''',
"intecom-ps2":'''Intecom Pointspan 2''',
"locus-disc":'''Locus Discovery''',
"sds":'''SIP Directory Services''',
"sip":'''SIP''',
"sip-tls":'''SIP-TLS''',
"na-localise":'''Localisation access''',
"ca-1":'''Channel Access 1''',
"ca-2":'''Channel Access 2''',
"stanag-5066":'''STANAG-5066-SUBNET-INTF''',
"authentx":'''Authentx Service''',
"i-net-2000-npr":'''I/Net 2000-NPR''',
"vtsas":'''VersaTrans Server Agent Service''',
"powerschool":'''PowerSchool''',
"ayiya":'''Anything In Anything''',
"tag-pm":'''Advantage Group Port Mgr''',
"alesquery":'''ALES Query''',
"cp-spxrpts":'''Cambridge Pixel SPx Reports''',
"onscreen":'''OnScreen Data Collection Service''',
"sdl-ets":'''SDL - Ent Trans Server''',
"qcp":'''Qpur Communication Protocol''',
"qfp":'''Qpur File Protocol''',
"llrp":'''EPCglobal Low-Level Reader Protocol''',
"encrypted-llrp":'''EPCglobal Encrypted LLRP''',
"magpie":'''Magpie Binary''',
"sentinel-lm":'''Sentinel LM''',
"hart-ip":'''HART-IP''',
"sentlm-srv2srv":'''SentLM Srv2Srv''',
"socalia":'''Socalia service mux''',
"talarian-udp":'''Talarian_UDP''',
"oms-nonsecure":'''Oracle OMS non-secure''',
"tinymessage":'''TinyMessage''',
"hughes-ap":'''Hughes Association Protocol''',
"taep-as-svc":'''TAEP AS service''',
"pm-cmdsvr":'''PeerMe Msg Cmd Service''',
"emb-proj-cmd":'''EPSON Projecter Image Transfer''',
"nbt-pc":'''Policy Commander''',
"minotaur-sa":'''Minotaur SA''',
"ctsd":'''MyCTS server port''',
"rmonitor-secure":'''RMONITOR SECURE
IANA assigned this well-formed service name as a replacement for "rmonitor_secure".''',
"rmonitor_secure":'''RMONITOR SECURE''',
"atmp":'''Ascend Tunnel Management Protocol''',
"esri-sde":'''ESRI SDE Remote Start
IANA assigned this well-formed service name as a replacement for "esri_sde".''',
"esri_sde":'''ESRI SDE Remote Start''',
"sde-discovery":'''ESRI SDE Instance Discovery''',
"bzflag":'''BZFlag game server''',
"asctrl-agent":'''Oracle asControl Agent''',
"vpa-disc":'''Virtual Protocol Adapter Discovery''',
"ife-icorp":'''ife_1corp
IANA assigned this well-formed service name as a replacement for "ife_icorp".''',
"ife_icorp":'''ife_1corp''',
"winpcs":'''WinPCS Service Connection''',
"scte104":'''SCTE104 Connection''',
"scte30":'''SCTE30 Connection''',
"aol":'''America-Online''',
"aol-1":'''AmericaOnline1''',
"aol-2":'''AmericaOnline2''',
"aol-3":'''AmericaOnline3''',
"targus-getdata":'''TARGUS GetData''',
"targus-getdata1":'''TARGUS GetData 1''',
"targus-getdata2":'''TARGUS GetData 2''',
"targus-getdata3":'''TARGUS GetData 3''',
"hpvirtgrp":'''HP Virtual Machine Group Management''',
"hpvirtctrl":'''HP Virtual Machine Console Operations''',
"hp-server":'''HP Server''',
"hp-status":'''HP Status''',
"perfd":'''HP System Performance Metric Service''',
"eenet":'''EEnet communications''',
"galaxy-network":'''Galaxy Network Service''',
"padl2sim":'''''',
"mnet-discovery":'''m-net discovery''',
"downtools-disc":'''DownTools Discovery Protocol''',
"capwap-control":'''CAPWAP Control Protocol''',
"capwap-data":'''CAPWAP Data Protocol''',
"caacws":'''CA Access Control Web Service''',
"caaclang2":'''CA AC Lang Service''',
"soagateway":'''soaGateway''',
"caevms":'''CA eTrust VM Service''',
"movaz-ssc":'''Movaz SSC''',
"3com-njack-1":'''3Com Network Jack Port 1''',
"3com-njack-2":'''3Com Network Jack Port 2''',
"cartographerxmp":'''Cartographer XMP''',
"cuelink-disc":'''StageSoft CueLink discovery''',
"pk":'''PK''',
"transmit-port":'''Marimba Transmitter Port''',
"presence":'''XMPP Link-Local Messaging''',
"nlg-data":'''NLG Data Service''',
"hacl-hb":'''HA cluster heartbeat''',
"hacl-gs":'''HA cluster general services''',
"hacl-cfg":'''HA cluster configuration''',
"hacl-probe":'''HA cluster probing''',
"hacl-local":'''HA Cluster Commands''',
"hacl-test":'''HA Cluster Test''',
"sun-mc-grp":'''Sun MC Group''',
"sco-aip":'''SCO AIP''',
"cfengine":'''CFengine''',
"jprinter":'''J Printer''',
"outlaws":'''Outlaws''',
"permabit-cs":'''Permabit Client-Server''',
"rrdp":'''Real-time & Reliable Data''',
"opalis-rbt-ipc":'''opalis-rbt-ipc''',
"hacl-poll":'''HA Cluster UDP Polling''',
"kfserver":'''Sculptor Database Server''',
"xkotodrcp":'''xkoto DRCP''',
"stuns":'''Reserved for a future enhancement of STUN''',
"turns":'''Reserved for a future enhancement of TURN''',
"stun-behaviors":'''Reserved for a future enhancement of STUN-BEHAVIOR''',
"nat-pmp-status":'''NAT-PMP Status Announcements''',
"nat-pmp":'''NAT Port Mapping Protocol''',
"dns-llq":'''DNS Long-Lived Queries''',
"mdns":'''Multicast DNS''',
"mdnsresponder":'''Multicast DNS Responder IPC''',
"llmnr":'''LLMNR''',
"ms-smlbiz":'''Microsoft Small Business''',
"wsdapi":'''Web Services for Devices''',
"wsdapi-s":'''WS for Devices Secured''',
"ms-alerter":'''Microsoft Alerter''',
"ms-sideshow":'''Protocol for Windows SideShow''',
"ms-s-sideshow":'''Secure Protocol for Windows SideShow''',
"serverwsd2":'''Microsoft Windows Server WSD2 Service''',
"net-projection":'''Windows Network Projection''',
"stresstester":'''StressTester(tm) Injector''',
"elektron-admin":'''Elektron Administration''',
"securitychase":'''SecurityChase''',
"excerpt":'''Excerpt Search''',
"excerpts":'''Excerpt Search Secure''',
"mftp":'''OmniCast MFTP''',
"hpoms-ci-lstn":'''HPOMS-CI-LSTN''',
"hpoms-dps-lstn":'''HPOMS-DPS-LSTN''',
"netsupport":'''NetSupport''',
"systemics-sox":'''Systemics Sox''',
"foresyte-clear":'''Foresyte-Clear''',
"foresyte-sec":'''Foresyte-Sec''',
"salient-dtasrv":'''Salient Data Server''',
"salient-usrmgr":'''Salient User Manager''',
"actnet":'''ActNet''',
"continuus":'''Continuus''',
"wwiotalk":'''WWIOTALK''',
"statusd":'''StatusD''',
"ns-server":'''NS Server''',
"sns-gateway":'''SNS Gateway''',
"sns-agent":'''SNS Agent''',
"mcntp":'''MCNTP''',
"dj-ice":'''DJ-ICE''',
"cylink-c":'''Cylink-C''',
"netsupport2":'''Net Support 2''',
"salient-mux":'''Salient MUX''',
"virtualuser":'''VIRTUALUSER''',
"beyond-remote":'''Beyond Remote''',
"br-channel":'''Beyond Remote Command Channel''',
"devbasic":'''DEVBASIC''',
"sco-peer-tta":'''SCO-PEER-TTA''',
"telaconsole":'''TELACONSOLE''',
"base":'''Billing and Accounting System Exchange''',
"radec-corp":'''RADEC CORP''',
"park-agent":'''PARK AGENT''',
"postgresql":'''PostgreSQL Database''',
"pyrrho":'''Pyrrho DBMS''',
"sgi-arrayd":'''SGI Array Services Daemon''',
"sceanics":'''SCEANICS situation and action notification''',
"pmip6-cntl":'''pmip6-cntl''',
"pmip6-data":'''pmip6-data''',
"spss":'''Pearson HTTPS''',
"surebox":'''SureBox''',
"apc-5454":'''APC 5454''',
"apc-5455":'''APC 5455''',
"apc-5456":'''APC 5456''',
"silkmeter":'''SILKMETER''',
"ttl-publisher":'''TTL Publisher''',
"ttlpriceproxy":'''TTL Price Proxy''',
"quailnet":'''Quail Networks Object Broker''',
"netops-broker":'''NETOPS-BROKER''',
"fcp-addr-srvr1":'''fcp-addr-srvr1''',
"fcp-addr-srvr2":'''fcp-addr-srvr2''',
"fcp-srvr-inst1":'''fcp-srvr-inst1''',
"fcp-srvr-inst2":'''fcp-srvr-inst2''',
"fcp-cics-gw1":'''fcp-cics-gw1''',
"checkoutdb":'''Checkout Database''',
"amc":'''Amcom Mobile Connect''',
"sgi-eventmond":'''SGI Eventmond Port''',
"sgi-esphttp":'''SGI ESP HTTP''',
"personal-agent":'''Personal Agent''',
"freeciv":'''Freeciv gameplay''',
"m-oap":'''Multicast Object Access Protocol''',
"sdt":'''Session Data Transport Multicast''',
"rdmnet-device":'''PLASA E1.33, Remote Device Management (RDM) messages''',
"sdmmp":'''SAS Domain Management Messaging Protocol''',
"tmosms0":'''T-Mobile SMS Protocol Message 0''',
"tmosms1":'''T-Mobile SMS Protocol Message 1''',
"fac-restore":'''T-Mobile SMS Protocol Message 3''',
"tmo-icon-sync":'''T-Mobile SMS Protocol Message 2''',
"bis-web":'''BeInSync-Web''',
"bis-sync":'''BeInSync-sync''',
"ininmessaging":'''inin secure messaging''',
"mctfeed":'''MCT Market Data Feed''',
"esinstall":'''Enterprise Security Remote Install''',
"esmmanager":'''Enterprise Security Manager''',
"esmagent":'''Enterprise Security Agent''',
"a1-msc":'''A1-MSC''',
"a1-bs":'''A1-BS''',
"a3-sdunode":'''A3-SDUNode''',
"a4-sdunode":'''A4-SDUNode''',
"ninaf":'''Node Initiated Network Association Forma''',
"htrust":'''HTrust API''',
"symantec-sfdb":'''Symantec Storage Foundation for Database''',
"precise-comm":'''PreciseCommunication''',
"pcanywheredata":'''pcANYWHEREdata''',
"pcanywherestat":'''pcANYWHEREstat''',
"beorl":'''BE Operations Request Listener''',
"xprtld":'''SF Message Service''',
"amqps":'''amqp protocol over TLS/SSL''',
"amqp":'''AMQP''',
"jms":'''JACL Message Server''',
"hyperscsi-port":'''HyperSCSI Port''',
"v5ua":'''V5UA application port''',
"raadmin":'''RA Administration''',
"questdb2-lnchr":'''Quest Central DB2 Launchr''',
"rrac":'''Remote Replication Agent Connection''',
"dccm":'''Direct Cable Connect Manager''',
"auriga-router":'''Auriga Router Service''',
"ncxcp":'''Net-coneX Control Protocol''',
"brightcore":'''BrightCore control & data transfer exchange''',
"coap":'''Constrained Application Protocol''',
"ggz":'''GGZ Gaming Zone''',
"qmvideo":'''QM video network management protocol''',
"proshareaudio":'''proshare conf audio''',
"prosharevideo":'''proshare conf video''',
"prosharedata":'''proshare conf data''',
"prosharerequest":'''proshare conf request''',
"prosharenotify":'''proshare conf notify''',
"dpm":'''DPM Communication Server''',
"dpm-agent":'''DPM Agent Coordinator''',
"ms-licensing":'''MS-Licensing''',
"dtpt":'''Desktop Passthru Service''',
"msdfsr":'''Microsoft DFS Replication Service''',
"omhs":'''Operations Manager - Health Service''',
"omsdk":'''Operations Manager - SDK Service''',
"io-dist-group":'''Dist. I/O Comm. Service Group Membership''',
"openmail":'''Openmail User Agent Layer''',
"unieng":'''Steltor's calendar access''',
"ida-discover1":'''IDA Discover Port 1''',
"ida-discover2":'''IDA Discover Port 2''',
"watchdoc-pod":'''Watchdoc NetPOD Protocol''',
"watchdoc":'''Watchdoc Server''',
"fcopy-server":'''fcopy-server''',
"fcopys-server":'''fcopys-server''',
"tunatic":'''Wildbits Tunatic''',
"tunalyzer":'''Wildbits Tunalyzer''',
"rscd":'''Bladelogic Agent Service''',
"openmailg":'''OpenMail Desk Gateway server''',
"x500ms":'''OpenMail X.500 Directory Server''',
"openmailns":'''OpenMail NewMail Server''',
"s-openmail":'''OpenMail Suer Agent Layer (Secure)''',
"openmailpxy":'''OpenMail CMTS Server''',
"spramsca":'''x509solutions Internal CA''',
"spramsd":'''x509solutions Secure Data''',
"netagent":'''NetAgent''',
"dali-port":'''DALI Port''',
"3par-evts":'''3PAR Event Reporting Service''',
"3par-mgmt":'''3PAR Management Service''',
"3par-mgmt-ssl":'''3PAR Management Service with SSL''',
"ibar":'''Cisco Interbox Application Redundancy''',
"3par-rcopy":'''3PAR Inform Remote Copy''',
"cisco-redu":'''redundancy notification''',
"waascluster":'''Cisco WAAS Cluster Protocol''',
"xtreamx":'''XtreamX Supervised Peer message''',
"spdp":'''Simple Peered Discovery Protocol''',
"icmpd":'''ICMPD''',
"spt-automation":'''Support Automation''',
"wherehoo":'''WHEREHOO''',
"ppsuitemsg":'''PlanetPress Suite Messeng''',
"rfb":'''Remote Framebuffer''',
"cm":'''Context Management''',
"cpdlc":'''Controller Pilot Data Link Communication''',
"fis":'''Flight Information Services''',
"ads-c":'''Automatic Dependent Surveillance''',
"indy":'''Indy Application Server''',
"mppolicy-v5":'''mppolicy-v5''',
"mppolicy-mgr":'''mppolicy-mgr''',
"couchdb":'''CouchDB''',
"wsman":'''WBEM WS-Management HTTP''',
"wsmans":'''WBEM WS-Management HTTP over TLS/SSL''',
"wbem-rmi":'''WBEM RMI''',
"wbem-http":'''WBEM CIM-XML (HTTP)''',
"wbem-https":'''WBEM CIM-XML (HTTPS)''',
"wbem-exp-https":'''WBEM Export HTTPS''',
"nuxsl":'''NUXSL''',
"consul-insight":'''Consul InSight Security''',
"cvsup":'''CVSup''',
"x11":'''X Window System''',
"ndl-ahp-svc":'''NDL-AHP-SVC''',
"winpharaoh":'''WinPharaoh''',
"ewctsp":'''EWCTSP''',
"trip":'''TRIP''',
"messageasap":'''Messageasap''',
"ssdtp":'''SSDTP''',
"diagnose-proc":'''DIAGNOSE-PROC''',
"directplay8":'''DirectPlay8''',
"max":'''Microsoft Max''',
"p25cai":'''APCO Project 25 Common Air Interface - UDP encapsulation''',
"miami-bcast":'''telecomsoftware miami broadcast''',
"konspire2b":'''konspire2b p2p network''',
"pdtp":'''PDTP P2P''',
"ldss":'''Local Download Sharing Service''',
"doglms-notify":'''SuperDog License Manager Notifier''',
"synchronet-db":'''SynchroNet-db''',
"synchronet-rtc":'''SynchroNet-rtc''',
"synchronet-upd":'''SynchroNet-upd''',
"rets":'''RETS''',
"dbdb":'''DBDB''',
"primaserver":'''Prima Server''',
"mpsserver":'''MPS Server''',
"etc-control":'''ETC Control''',
"sercomm-scadmin":'''Sercomm-SCAdmin''',
"globecast-id":'''GLOBECAST-ID''',
"softcm":'''HP SoftBench CM''',
"spc":'''HP SoftBench Sub-Process Control''',
"dtspcd":'''Desk-Top Sub-Process Control Daemon''',
"tipc":'''Transparent Inter Process Communication''',
"bex-webadmin":'''Backup Express Web Server''',
"backup-express":'''Backup Express''',
"pnbs":'''Phlexible Network Backup Service''',
"nbt-wol":'''New Boundary Tech WOL''',
"pulsonixnls":'''Pulsonix Network License Service''',
"meta-corp":'''Meta Corporation License Manager''',
"aspentec-lm":'''Aspen Technology License Manager''',
"watershed-lm":'''Watershed License Manager''',
"statsci1-lm":'''StatSci License Manager - 1''',
"statsci2-lm":'''StatSci License Manager - 2''',
"lonewolf-lm":'''Lone Wolf Systems License Manager''',
"montage-lm":'''Montage License Manager''',
"ricardo-lm":'''Ricardo North America License Manager''',
"tal-pod":'''tal-pod''',
"ecmp-data":'''Emerson Extensible Control and Management Protocol Data''',
"patrol-ism":'''PATROL Internet Srv Mgr''',
"patrol-coll":'''PATROL Collector''',
"pscribe":'''Precision Scribe Cnx Port''',
"lm-x":'''LM-X License Manager by X-Formation''',
"thermo-calc":'''Management of service nodes in a processing grid for thermodynamic calculations''',
"radmind":'''Radmind Access Protocol''',
"jeol-nsddp-1":'''JEOL Network Services Dynamic Discovery Protocol 1''',
"jeol-nsddp-2":'''JEOL Network Services Dynamic Discovery Protocol 2''',
"jeol-nsddp-3":'''JEOL Network Services Dynamic Discovery Protocol 3''',
"jeol-nsddp-4":'''JEOL Network Services Dynamic Discovery Protocol 4''',
"tl1-raw-ssl":'''TL1 Raw Over SSL/TLS''',
"tl1-ssh":'''TL1 over SSH''',
"crip":'''CRIP''',
"grid":'''Grid Authentication''',
"grid-alt":'''Grid Authentication Alt''',
"bmc-grx":'''BMC GRX''',
"bmc-ctd-ldap":'''BMC CONTROL-D LDAP SERVER
IANA assigned this well-formed service name as a replacement for "bmc_ctd_ldap".''',
"bmc_ctd_ldap":'''BMC CONTROL-D LDAP SERVER''',
"ufmp":'''Unified Fabric Management Protocol''',
"scup-disc":'''Sensor Control Unit Protocol Discovery Protocol''',
"abb-escp":'''Ethernet Sensor Communications Protocol''',
"repsvc":'''Double-Take Replication Service''',
"emp-server1":'''Empress Software Connectivity Server 1''',
"emp-server2":'''Empress Software Connectivity Server 2''',
"hrd-ns-disc":'''HR Device Network service''',
"sflow":'''sFlow traffic monitoring''',
"gnutella-svc":'''gnutella-svc''',
"gnutella-rtr":'''gnutella-rtr''',
"adap":'''App Discovery and Access Protocol''',
"pmcs":'''PMCS applications''',
"metaedit-mu":'''MetaEdit+ Multi-User''',
"metaedit-se":'''MetaEdit+ Server Administration''',
"metatude-mds":'''Metatude Dialogue Server''',
"clariion-evr01":'''clariion-evr01''',
"metaedit-ws":'''MetaEdit+ WebService API''',
"faxcomservice":'''Faxcom Message Service''',
"nim-vdrshell":'''NIM_VDRShell''',
"nim-wan":'''NIM_WAN''',
"sun-sr-https":'''Service Registry Default HTTPS Domain''',
"sge-qmaster":'''Grid Engine Qmaster Service
IANA assigned this well-formed service name as a replacement for "sge_qmaster".''',
"sge_qmaster":'''Grid Engine Qmaster Service''',
"sge-execd":'''Grid Engine Execution Service
IANA assigned this well-formed service name as a replacement for "sge_execd".''',
"sge_execd":'''Grid Engine Execution Service''',
"mysql-proxy":'''MySQL Proxy''',
"skip-cert-recv":'''SKIP Certificate Receive''',
"skip-cert-send":'''SKIP Certificate Send''',
"lvision-lm":'''LVision License Manager''',
"sun-sr-http":'''Service Registry Default HTTP Domain''',
"servicetags":'''Service Tags''',
"ldoms-mgmt":'''Logical Domains Management Interface''',
"SunVTS-RMI":'''SunVTS RMI''',
"sun-sr-jms":'''Service Registry Default JMS Domain''',
"sun-sr-iiop":'''Service Registry Default IIOP Domain''',
"sun-sr-iiops":'''Service Registry Default IIOPS Domain''',
"sun-sr-iiop-aut":'''Service Registry Default IIOPAuth Domain''',
"sun-sr-jmx":'''Service Registry Default JMX Domain''',
"sun-sr-admin":'''Service Registry Default Admin Domain''',
"boks":'''BoKS Master''',
"boks-servc":'''BoKS Servc
IANA assigned this well-formed service name as a replacement for "boks_servc".''',
"boks_servc":'''BoKS Servc''',
"boks-servm":'''BoKS Servm
IANA assigned this well-formed service name as a replacement for "boks_servm".''',
"boks_servm":'''BoKS Servm''',
"boks-clntd":'''BoKS Clntd
IANA assigned this well-formed service name as a replacement for "boks_clntd".''',
"boks_clntd":'''BoKS Clntd''',
"badm-priv":'''BoKS Admin Private Port
IANA assigned this well-formed service name as a replacement for "badm_priv".''',
"badm_priv":'''BoKS Admin Private Port''',
"badm-pub":'''BoKS Admin Public Port
IANA assigned this well-formed service name as a replacement for "badm_pub".''',
"badm_pub":'''BoKS Admin Public Port''',
"bdir-priv":'''BoKS Dir Server, Private Port
IANA assigned this well-formed service name as a replacement for "bdir_priv".''',
"bdir_priv":'''BoKS Dir Server, Private Port''',
"bdir-pub":'''BoKS Dir Server, Public Port
IANA assigned this well-formed service name as a replacement for "bdir_pub".''',
"bdir_pub":'''BoKS Dir Server, Public Port''',
"mgcs-mfp-port":'''MGCS-MFP Port''',
"mcer-port":'''MCER Port''',
"dccp-udp":'''Datagram Congestion Control Protocol Encapsulation for NAT Traversal''',
"syslog-tls":'''syslog over DTLS''',
"elipse-rec":'''Elipse RPC Protocol''',
"lds-distrib":'''lds_distrib''',
"lds-dump":'''LDS Dump Service''',
"apc-6547":'''APC 6547''',
"apc-6548":'''APC 6548''',
"apc-6549":'''APC 6549''',
"fg-sysupdate":'''fg-sysupdate''',
"sum":'''Software Update Manager''',
"xdsxdm":'''''',
"sane-port":'''SANE Control Port''',
"rp-reputation":'''Roaring Penguin IP Address Reputation Collection''',
"affiliate":'''Affiliate''',
"parsec-master":'''Parsec Masterserver''',
"parsec-peer":'''Parsec Peer-to-Peer''',
"parsec-game":'''Parsec Gameserver''',
"joaJewelSuite":'''JOA Jewel Suite''',
"odette-ftps":'''ODETTE-FTP over TLS/SSL''',
"kftp-data":'''Kerberos V5 FTP Data''',
"kftp":'''Kerberos V5 FTP Control''',
"mcftp":'''Multicast FTP''',
"ktelnet":'''Kerberos V5 Telnet''',
"wago-service":'''WAGO Service and Update''',
"nexgen":'''Allied Electronics NeXGen''',
"afesc-mc":'''AFE Stock Channel M/C''',
"cisco-vpath-tun":'''Cisco vPath Services Overlay''',
"palcom-disc":'''PalCom Discovery''',
"vocaltec-gold":'''Vocaltec Global Online Directory''',
"p4p-portal":'''P4P Portal Service''',
"vision-server":'''vision_server
IANA assigned this well-formed service name as a replacement for "vision_server".''',
"vision_server":'''vision_server''',
"vision-elmd":'''vision_elmd
IANA assigned this well-formed service name as a replacement for "vision_elmd".''',
"vision_elmd":'''vision_elmd''',
"vfbp-disc":'''Viscount Freedom Bridge Discovery''',
"osaut":'''Osorno Automation''',
"tsa":'''Tofino Security Appliance''',
"babel":'''Babel Routing Protocol''',
"kti-icad-srvr":'''KTI/ICAD Nameserver''',
"e-design-net":'''e-Design network''',
"e-design-web":'''e-Design web''',
"ibprotocol":'''Internet Backplane Protocol''',
"fibotrader-com":'''Fibotrader Communications''',
"bmc-perf-agent":'''BMC PERFORM AGENT''',
"bmc-perf-mgrd":'''BMC PERFORM MGRD''',
"adi-gxp-srvprt":'''ADInstruments GxP Server''',
"plysrv-http":'''PolyServe http''',
"plysrv-https":'''PolyServe https''',
"dgpf-exchg":'''DGPF Individual Exchange''',
"smc-jmx":'''Sun Java Web Console JMX''',
"smc-admin":'''Sun Web Console Admin''',
"smc-http":'''SMC-HTTP''',
"smc-https":'''SMC-HTTPS''',
"hnmp":'''HNMP''',
"hnm":'''Halcyon Network Manager''',
"acnet":'''ACNET Control System Protocol''',
"ambit-lm":'''ambit-lm''',
"netmo-default":'''Netmo Default''',
"netmo-http":'''Netmo HTTP''',
"iccrushmore":'''ICCRUSHMORE''',
"acctopus-st":'''Acctopus Status''',
"muse":'''MUSE''',
"ethoscan":'''EthoScan Service''',
"xsmsvc":'''XenSource Management Service''',
"bioserver":'''Biometrics Server''',
"otlp":'''OTLP''',
"jmact3":'''JMACT3''',
"jmevt2":'''jmevt2''',
"swismgr1":'''swismgr1''',
"swismgr2":'''swismgr2''',
"swistrap":'''swistrap''',
"swispol":'''swispol''',
"acmsoda":'''acmsoda''',
"MobilitySrv":'''Mobility XE Protocol''',
"iatp-highpri":'''IATP-highPri''',
"iatp-normalpri":'''IATP-normalPri''',
"afs3-fileserver":'''file server itself''',
"afs3-callback":'''callbacks to cache managers''',
"afs3-prserver":'''users & groups database''',
"afs3-vlserver":'''volume location database''',
"afs3-kaserver":'''AFS/Kerberos authentication service''',
"afs3-volser":'''volume managment server''',
"afs3-errors":'''error interpretation service''',
"afs3-bos":'''basic overseer process''',
"afs3-update":'''server-to-server updater''',
"afs3-rmtsys":'''remote cache manager service''',
"ups-onlinet":'''onlinet uninterruptable power supplies''',
"talon-disc":'''Talon Discovery Port''',
"talon-engine":'''Talon Engine''',
"microtalon-dis":'''Microtalon Discovery''',
"microtalon-com":'''Microtalon Communications''',
"talon-webserver":'''Talon Webserver''',
"doceri-view":'''doceri drawing service screen view''',
"dpserve":'''DP Serve''',
"dpserveadmin":'''DP Serve Admin''',
"ctdp":'''CT Discovery Protocol''',
"ct2nmcs":'''Comtech T2 NMCS''',
"vmsvc":'''Vormetric service''',
"vmsvc-2":'''Vormetric Service II''',
"op-probe":'''ObjectPlanet probe''',
"quest-disc":'''Quest application level network service discovery''',
"arcp":'''ARCP''',
"iwg1":'''IWGADTS Aircraft Housekeeping Message''',
"empowerid":'''EmpowerID Communication''',
"lazy-ptop":'''lazy-ptop''',
"font-service":'''X Font Service''',
"elcn":'''Embedded Light Control Network''',
"aes-x170":'''AES-X170''',
"virprot-lm":'''Virtual Prototypes License Manager''',
"scenidm":'''intelligent data manager''',
"scenccs":'''Catalog Content Search''',
"cabsm-comm":'''CA BSM Comm''',
"caistoragemgr":'''CA Storage Manager''',
"cacsambroker":'''CA Connection Broker''',
"fsr":'''File System Repository Agent''',
"doc-server":'''Document WCF Server''',
"aruba-server":'''Aruba eDiscovery Server''',
"ccag-pib":'''Consequor Consulting Process Integration Bridge''',
"nsrp":'''Adaptive Name/Service Resolution''',
"drm-production":'''Discovery and Retention Mgt Production''',
"clutild":'''Clutild''',
"fodms":'''FODMS FLIP''',
"dlip":'''DLIP''',
"ramp":'''Registry A $ M Protocol''',
"cnap":'''Calypso Network Access Protocol''',
"watchme-7272":'''WatchMe Monitoring 7272''',
"oma-rlp":'''OMA Roaming Location''',
"oma-rlp-s":'''OMA Roaming Location SEC''',
"oma-ulp":'''OMA UserPlane Location''',
"oma-ilp":'''OMA Internal Location Protocol''',
"oma-ilp-s":'''OMA Internal Location Secure Protocol''',
"oma-dcdocbs":'''OMA Dynamic Content Delivery over CBS''',
"ctxlic":'''Citrix Licensing''',
"itactionserver1":'''ITACTIONSERVER 1''',
"itactionserver2":'''ITACTIONSERVER 2''',
"mzca-alert":'''eventACTION/ussACTION (MZCA) alert''',
"lcm-server":'''LifeKeeper Communications''',
"mindfilesys":'''mind-file system server''',
"mrssrendezvous":'''mrss-rendezvous server''',
"nfoldman":'''nFoldMan Remote Publish''',
"fse":'''File system export of backup images''',
"winqedit":'''winqedit''',
"hexarc":'''Hexarc Command Language''',
"rtps-discovery":'''RTPS Discovery''',
"rtps-dd-ut":'''RTPS Data-Distribution User-Traffic''',
"rtps-dd-mt":'''RTPS Data-Distribution Meta-Traffic''',
"ionixnetmon":'''Ionix Network Monitor''',
"mtportmon":'''Matisse Port Monitor''',
"pmdmgr":'''OpenView DM Postmaster Manager''',
"oveadmgr":'''OpenView DM Event Agent Manager''',
"ovladmgr":'''OpenView DM Log Agent Manager''',
"opi-sock":'''OpenView DM rqt communication''',
"xmpv7":'''OpenView DM xmpv7 api pipe''',
"pmd":'''OpenView DM ovc/xmpv3 api pipe''',
"faximum":'''Faximum''',
"oracleas-https":'''Oracle Application Server HTTPS''',
"rise":'''Rise: The Vieneo Province''',
"telops-lmd":'''telops-lmd''',
"silhouette":'''Silhouette User''',
"ovbus":'''HP OpenView Bus Daemon''',
"ovhpas":'''HP OpenView Application Server''',
"pafec-lm":'''pafec-lm''',
"saratoga":'''Saratoga Transfer Protocol''',
"atul":'''atul server''',
"nta-ds":'''FlowAnalyzer DisplayServer''',
"nta-us":'''FlowAnalyzer UtilityServer''',
"cfs":'''Cisco Fabric service''',
"cwmp":'''DSL Forum CWMP''',
"tidp":'''Threat Information Distribution Protocol''',
"nls-tl":'''Network Layer Signaling Transport Layer''',
"cloudsignaling":'''Cloud Signaling Service''',
"sncp":'''Sniffer Command Protocol''',
"vsi-omega":'''VSI Omega''',
"aries-kfinder":'''Aries Kfinder''',
"sun-lm":'''Sun License Manager''',
"indi":'''Instrument Neutral Distributed Interface''',
"soap-http":'''SOAP Service Port''',
"zen-pawn":'''Primary Agent Work Notification''',
"xdas":'''OpenXDAS Wire Protocol''',
"pmdfmgt":'''PMDF Management''',
"cuseeme":'''bonjour-cuseeme''',
"imqtunnels":'''iMQ SSL tunnel''',
"imqtunnel":'''iMQ Tunnel''',
"imqbrokerd":'''iMQ Broker Rendezvous''',
"sun-user-https":'''Sun App Server - HTTPS''',
"pando-pub":'''Pando Media Public Distribution''',
"collaber":'''Collaber Network Service''',
"klio":'''KLIO communications''',
"sync-em7":'''EM7 Dynamic Updates''',
"scinet":'''scientia.net''',
"medimageportal":'''MedImage Portal''',
"nsdeepfreezectl":'''Novell Snap-in Deep Freeze Control''',
"nitrogen":'''Nitrogen Service''',
"freezexservice":'''FreezeX Console Service''',
"trident-data":'''Trident Systems Data''',
"smip":'''Smith Protocol over IP''',
"aiagent":'''HP Enterprise Discovery Agent''',
"scriptview":'''ScriptView Network''',
"sstp-1":'''Sakura Script Transfer Protocol''',
"raqmon-pdu":'''RAQMON PDU''',
"prgp":'''Put/Run/Get Protocol''',
"cbt":'''cbt''',
"interwise":'''Interwise''',
"vstat":'''VSTAT''',
"accu-lmgr":'''accu-lmgr''',
"minivend":'''MINIVEND''',
"popup-reminders":'''Popup Reminders Receive''',
"office-tools":'''Office Tools Pro Receive''',
"q3ade":'''Q3ADE Cluster Service''',
"pnet-conn":'''Propel Connector port''',
"pnet-enc":'''Propel Encoder port''',
"altbsdp":'''Alternate BSDP Service''',
"asr":'''Apple Software Restore''',
"ssp-client":'''Secure Server Protocol - client''',
"rbt-wanopt":'''Riverbed WAN Optimization Protocol''',
"apc-7845":'''APC 7845''',
"apc-7846":'''APC 7846''',
"mipv6tls":'''TLS-based Mobile IPv6 Security''',
"pss":'''Pearson''',
"ubroker":'''Universal Broker''',
"mevent":'''Multicast Event''',
"tnos-sp":'''TNOS Service Protocol''',
"tnos-dp":'''TNOS shell Protocol''',
"tnos-dps":'''TNOS Secure DiaguardProtocol''',
"qo-secure":'''QuickObjects secure port''',
"t2-drm":'''Tier 2 Data Resource Manager''',
"t2-brm":'''Tier 2 Business Rules Manager''',
"supercell":'''Supercell''',
"micromuse-ncps":'''Micromuse-ncps''',
"quest-vista":'''Quest Vista''',
"sossd-disc":'''Spotlight on SQL Server Desktop Agent Discovery''',
"usicontentpush":'''USI Content Push Service''',
"irdmi2":'''iRDMI2''',
"irdmi":'''iRDMI''',
"vcom-tunnel":'''VCOM Tunnel''',
"teradataordbms":'''Teradata ORDBMS''',
"mcreport":'''Mulberry Connect Reporting Service''',
"mxi":'''MXI Generation II for z/OS''',
"http-alt":'''HTTP Alternate''',
"qbdb":'''QB DB Dynamic Port''',
"intu-ec-svcdisc":'''Intuit Entitlement Service and Discovery''',
"intu-ec-client":'''Intuit Entitlement Client''',
"oa-system":'''oa-system''',
"ca-audit-da":'''CA Audit Distribution Agent''',
"ca-audit-ds":'''CA Audit Distribution Server''',
"pro-ed":'''ProEd''',
"mindprint":'''MindPrint''',
"vantronix-mgmt":'''.vantronix Management''',
"ampify":'''Ampify Messaging Protocol''',
"senomix01":'''Senomix Timesheets Server''',
"senomix02":'''Senomix Timesheets Client [1 year assignment]''',
"senomix03":'''Senomix Timesheets Server [1 year assignment]''',
"senomix04":'''Senomix Timesheets Server [1 year assignment]''',
"senomix05":'''Senomix Timesheets Server [1 year assignment]''',
"senomix06":'''Senomix Timesheets Client [1 year assignment]''',
"senomix07":'''Senomix Timesheets Client [1 year assignment]''',
"senomix08":'''Senomix Timesheets Client [1 year assignment]''',
"aero":'''Asymmetric Extended Route Optimization (AERO)''',
"gadugadu":'''Gadu-Gadu''',
"http-alt":'''HTTP Alternate (see port 80)''',
"sunproxyadmin":'''Sun Proxy Admin Service''',
"us-cli":'''Utilistor (Client)''',
"us-srv":'''Utilistor (Server)''',
"d-s-n":'''Distributed SCADA Networking Rendezvous Port''',
"simplifymedia":'''Simplify Media SPP Protocol''',
"radan-http":'''Radan HTTP''',
"sac":'''SAC Port Id''',
"xprint-server":'''Xprint Server''',
"mtl8000-matrix":'''MTL8000 Matrix''',
"cp-cluster":'''Check Point Clustering''',
"privoxy":'''Privoxy HTTP proxy''',
"apollo-data":'''Apollo Data Port''',
"apollo-admin":'''Apollo Admin Port''',
"paycash-online":'''PayCash Online Protocol''',
"paycash-wbp":'''PayCash Wallet-Browser''',
"indigo-vrmi":'''INDIGO-VRMI''',
"indigo-vbcp":'''INDIGO-VBCP''',
"dbabble":'''dbabble''',
"isdd":'''i-SDD file transfer''',
"eor-game":'''Edge of Reality game data''',
"patrol":'''Patrol''',
"patrol-snmp":'''Patrol SNMP''',
"vmware-fdm":'''VMware Fault Domain Manager''',
"itach":'''Remote iTach Connection''',
"spytechphone":'''SpyTech Phone Service''',
"blp1":'''Bloomberg data API''',
"blp2":'''Bloomberg feed''',
"vvr-data":'''VVR DATA''',
"trivnet1":'''TRIVNET''',
"trivnet2":'''TRIVNET''',
"aesop":'''Audio+Ethernet Standard Open Protocol''',
"lm-perfworks":'''LM Perfworks''',
"lm-instmgr":'''LM Instmgr''',
"lm-dta":'''LM Dta''',
"lm-sserver":'''LM SServer''',
"lm-webwatcher":'''LM Webwatcher''',
"rexecj":'''RexecJ Server''',
"synapse-nhttps":'''Synapse Non Blocking HTTPS''',
"pando-sec":'''Pando Media Controlled Distribution''',
"synapse-nhttp":'''Synapse Non Blocking HTTP''',
"blp3":'''Bloomberg professional''',
"blp4":'''Bloomberg intelligent client''',
"tmi":'''Transport Management Interface''',
"amberon":'''Amberon PPC/PPS''',
"tnp-discover":'''Thin(ium) Network Protocol''',
"tnp":'''Thin(ium) Network Protocol''',
"server-find":'''Server Find''',
"cruise-enum":'''Cruise ENUM''',
"cruise-swroute":'''Cruise SWROUTE''',
"cruise-config":'''Cruise CONFIG''',
"cruise-diags":'''Cruise DIAGS''',
"cruise-update":'''Cruise UPDATE''',
"m2mservices":'''M2m Services''',
"cvd":'''cvd''',
"sabarsd":'''sabarsd''',
"abarsd":'''abarsd''',
"admind":'''admind''',
"espeech":'''eSpeech Session Protocol''',
"espeech-rtp":'''eSpeech RTP Protocol''',
"cybro-a-bus":'''CyBro A-bus Protocol''',
"pcsync-https":'''PCsync HTTPS''',
"pcsync-http":'''PCsync HTTP''',
"npmp":'''npmp''',
"otv":'''Overlay Transport Virtualization (OTV)''',
"vp2p":'''Virtual Point to Point''',
"noteshare":'''AquaMinds NoteShare''',
"fmtp":'''Flight Message Transfer Protocol''',
"cmtp-av":'''CYTEL Message Transfer Audio and Video''',
"rtsp-alt":'''RTSP Alternate (see port 554)''',
"d-fence":'''SYMAX D-FENCE''',
"oap-admin":'''Object Access Protocol Administration''',
"asterix":'''Surveillance Data''',
"canon-cpp-disc":'''Canon Compact Printer Protocol Discovery''',
"canon-mfnp":'''Canon MFNP Service''',
"canon-bjnp1":'''Canon BJNP Port 1''',
"canon-bjnp2":'''Canon BJNP Port 2''',
"canon-bjnp3":'''Canon BJNP Port 3''',
"canon-bjnp4":'''Canon BJNP Port 4''',
"msi-cps-rm-disc":'''Motorola Solutions Customer Programming Software for Radio Management Discovery''',
"sun-as-jmxrmi":'''Sun App Server - JMX/RMI''',
"vnyx":'''VNYX Primary Port''',
"dtp-net":'''DASGIP Net Services''',
"ibus":'''iBus''',
"mc-appserver":'''MC-APPSERVER''',
"openqueue":'''OPENQUEUE''',
"ultraseek-http":'''Ultraseek HTTP''',
"dpap":'''Digital Photo Access Protocol (iPhoto)''',
"msgclnt":'''Message Client''',
"msgsrvr":'''Message Server''',
"acd-pm":'''Accedian Performance Measurement''',
"sunwebadmin":'''Sun Web Server Admin Service''',
"truecm":'''truecm''',
"dxspider":'''dxspider linking protocol''',
"cddbp-alt":'''CDDBP''',
"secure-mqtt":'''Secure MQTT''',
"ddi-udp-1":'''NewsEDGE server UDP (UDP 1)''',
"ddi-udp-2":'''NewsEDGE server broadcast''',
"ddi-udp-3":'''NewsEDGE client broadcast''',
"ddi-udp-4":'''Desktop Data UDP 3: NESS application''',
"ddi-udp-5":'''Desktop Data UDP 4: FARM product''',
"ddi-udp-6":'''Desktop Data UDP 5: NewsEDGE/Web application''',
"ddi-udp-7":'''Desktop Data UDP 6: COAL application''',
"ospf-lite":'''ospf-lite''',
"jmb-cds1":'''JMB-CDS 1''',
"jmb-cds2":'''JMB-CDS 2''',
"manyone-http":'''manyone-http''',
"manyone-xml":'''manyone-xml''',
"wcbackup":'''Windows Client Backup''',
"dragonfly":'''Dragonfly System Service''',
"cumulus-admin":'''Cumulus Admin Port''',
"sunwebadmins":'''Sun Web Server SSL Admin Service''',
"http-wmap":'''webmail HTTP service''',
"https-wmap":'''webmail HTTPS service''',
"bctp":'''Brodos Crypto Trade Protocol''',
"cslistener":'''CSlistener''',
"etlservicemgr":'''ETL Service Manager''',
"dynamid":'''DynamID authentication''',
"ogs-client":'''Open Grid Services Client''',
"pichat":'''Pichat Server''',
"tambora":'''TAMBORA''',
"panagolin-ident":'''Pangolin Identification''',
"paragent":'''PrivateArk Remote Agent''',
"swa-1":'''Secure Web Access - 1''',
"swa-2":'''Secure Web Access - 2''',
"swa-3":'''Secure Web Access - 3''',
"swa-4":'''Secure Web Access - 4''',
"glrpc":'''Groove GLRPC''',
"aurora":'''IBM AURORA Performance Visualizer''',
"ibm-rsyscon":'''IBM Remote System Console''',
"net2display":'''Vesa Net2Display''',
"classic":'''Classic Data Server''',
"sqlexec":'''IBM Informix SQL Interface''',
"sqlexec-ssl":'''IBM Informix SQL Interface - Encrypted''',
"websm":'''WebSM''',
"xmltec-xmlmail":'''xmltec-xmlmail''',
"XmlIpcRegSvc":'''Xml-Ipc Server Reg''',
"hp-pdl-datastr":'''PDL Data Streaming Port''',
"pdl-datastream":'''Printer PDL Data Stream''',
"bacula-dir":'''Bacula Director''',
"bacula-fd":'''Bacula File Daemon''',
"bacula-sd":'''Bacula Storage Daemon''',
"peerwire":'''PeerWire''',
"xadmin":'''Xadmin Control Service''',
"astergate-disc":'''Astergate Discovery Service''',
"mxit":'''MXit Instant Messaging''',
"dddp":'''Dynamic Device Discovery''',
"apani1":'''apani1''',
"apani2":'''apani2''',
"apani3":'''apani3''',
"apani4":'''apani4''',
"apani5":'''apani5''',
"sun-as-jpda":'''Sun AppSvr JPDA''',
"wap-wsp":'''WAP connectionless session service''',
"wap-wsp-wtp":'''WAP session service''',
"wap-wsp-s":'''WAP secure connectionless session service''',
"wap-wsp-wtp-s":'''WAP secure session service''',
"wap-vcard":'''WAP vCard''',
"wap-vcal":'''WAP vCal''',
"wap-vcard-s":'''WAP vCard Secure''',
"wap-vcal-s":'''WAP vCal Secure''',
"rjcdb-vcards":'''rjcdb vCard''',
"almobile-system":'''ALMobile System Service''',
"oma-mlp":'''OMA Mobile Location Protocol''',
"oma-mlp-s":'''OMA Mobile Location Protocol Secure''',
"serverviewdbms":'''Server View dbms access''',
"serverstart":'''ServerStart RemoteControl''',
"ipdcesgbs":'''IPDC ESG BootstrapService''',
"insis":'''Integrated Setup and Install Service''',
"acme":'''Aionex Communication Management Engine''',
"fsc-port":'''FSC Communication Port''',
"teamcoherence":'''QSC Team Coherence''',
"mon":'''Manager On Network''',
"pegasus":'''Pegasus GPS Platform''',
"pegasus-ctl":'''Pegaus GPS System Control Interface''',
"pgps":'''Predicted GPS''',
"swtp-port1":'''SofaWare transport port 1''',
"swtp-port2":'''SofaWare transport port 2''',
"callwaveiam":'''CallWaveIAM''',
"visd":'''VERITAS Information Serve''',
"n2h2server":'''N2H2 Filter Service Port''',
"n2receive":'''n2 monitoring receiver''',
"cumulus":'''Cumulus''',
"armtechdaemon":'''ArmTech Daemon''',
"storview":'''StorView Client''',
"armcenterhttp":'''ARMCenter http Service''',
"armcenterhttps":'''ARMCenter https Service''',
"vrace":'''Virtual Racing Service''',
"secure-ts":'''PKIX TimeStamp over TLS''',
"guibase":'''guibase''',
"mpidcmgr":'''MpIdcMgr''',
"mphlpdmc":'''Mphlpdmc''',
"ctechlicensing":'''C Tech Licensing''',
"fjdmimgr":'''fjdmimgr''',
"boxp":'''Brivs! Open Extensible Protocol''',
"fjinvmgr":'''fjinvmgr''',
"mpidcagt":'''MpIdcAgt''',
"sec-t4net-srv":'''Samsung Twain for Network Server''',
"sec-t4net-clt":'''Samsung Twain for Network Client''',
"sec-pc2fax-srv":'''Samsung PC2FAX for Network Server''',
"git":'''git pack transfer service''',
"tungsten-https":'''WSO2 Tungsten HTTPS''',
"wso2esb-console":'''WSO2 ESB Administration Console HTTPS''',
"sntlkeyssrvr":'''Sentinel Keys Server''',
"ismserver":'''ismserver''',
"sma-spw":'''SMA Speedwire''',
"mngsuite":'''Management Suite Remote Control''',
"laes-bf":'''Surveillance buffering function''',
"trispen-sra":'''Trispen Secure Remote Access''',
"ldgateway":'''LANDesk Gateway''',
"cba8":'''LANDesk Management Agent (cba8)''',
"msgsys":'''Message System''',
"pds":'''Ping Discovery Service''',
"mercury-disc":'''Mercury Discovery''',
"pd-admin":'''PD Administration''',
"vscp":'''Very Simple Ctrl Protocol''',
"robix":'''Robix''',
"micromuse-ncpw":'''MICROMUSE-NCPW''',
"streamcomm-ds":'''StreamComm User Directory''',
"condor":'''Condor Collector Service''',
"odbcpathway":'''ODBC Pathway Service''',
"uniport":'''UniPort SSO Controller''',
"mc-comm":'''Mobile-C Communications''',
"xmms2":'''Cross-platform Music Multiplexing System''',
"tec5-sdctp":'''tec5 Spectral Device Control Protocol''',
"client-wakeup":'''T-Mobile Client Wakeup Message''',
"ccnx":'''Content Centric Networking''',
"board-roar":'''Board M.I.T. Service''',
"l5nas-parchan":'''L5NAS Parallel Channel''',
"board-voip":'''Board M.I.T. Synchronous Collaboration''',
"rasadv":'''rasadv''',
"tungsten-http":'''WSO2 Tungsten HTTP''',
"davsrc":'''WebDav Source Port''',
"sstp-2":'''Sakura Script Transfer Protocol-2''',
"davsrcs":'''WebDAV Source TLS/SSL''',
"sapv1":'''Session Announcement v1''',
"kca-service":'''The KX509 Kerberized Certificate Issuance Protocol in Use in 2012''',
"cyborg-systems":'''CYBORG Systems''',
"gt-proxy":'''Port for Cable network related data proxy or repeater''',
"monkeycom":'''MonkeyCom''',
"sctp-tunneling":'''SCTP TUNNELING''',
"iua":'''IUA''',
"enrp":'''enrp server channel''',
"multicast-ping":'''Multicast Ping Protocol''',
"domaintime":'''domaintime''',
"sype-transport":'''SYPECom Transport Protocol''',
"apc-9950":'''APC 9950''',
"apc-9951":'''APC 9951''',
"apc-9952":'''APC 9952''',
"acis":'''9953''',
"alljoyn-mcm":'''Contact Port for AllJoyn multiplexed constrained messaging''',
"alljoyn":'''Alljoyn Name Service''',
"odnsp":'''OKI Data Network Setting Protocol''',
"dsm-scm-target":'''DSM/SCM Target Interface''',
"osm-appsrvr":'''OSM Applet Server''',
"osm-oev":'''OSM Event Server''',
"palace-1":'''OnLive-1''',
"palace-2":'''OnLive-2''',
"palace-3":'''OnLive-3''',
"palace-4":'''Palace-4''',
"palace-5":'''Palace-5''',
"palace-6":'''Palace-6''',
"distinct32":'''Distinct32''',
"distinct":'''distinct''',
"ndmp":'''Network Data Management Protocol''',
"scp-config":'''SCP Configuration''',
"documentum":'''EMC-Documentum Content Server Product''',
"documentum-s":'''EMC-Documentum Content Server Product
IANA assigned this well-formed service name as a replacement for "documentum_s".''',
"documentum_s":'''EMC-Documentum Content Server Product''',
"mvs-capacity":'''MVS Capacity''',
"octopus":'''Octopus Multiplexer''',
"swdtp-sv":'''Systemwalker Desktop Patrol''',
"zabbix-agent":'''Zabbix Agent''',
"zabbix-trapper":'''Zabbix Trapper''',
"amanda":'''Amanda''',
"famdc":'''FAM Archive Server''',
"itap-ddtp":'''VERITAS ITAP DDTP''',
"ezmeeting-2":'''eZmeeting''',
"ezproxy-2":'''eZproxy''',
"ezrelay":'''eZrelay''',
"swdtp":'''Systemwalker Desktop Patrol''',
"bctp-server":'''VERITAS BCTP, server''',
"nmea-0183":'''NMEA-0183 Navigational Data''',
"nmea-onenet":'''NMEA OneNet multicast messaging''',
"netiq-endpoint":'''NetIQ Endpoint''',
"netiq-qcheck":'''NetIQ Qcheck''',
"netiq-endpt":'''NetIQ Endpoint''',
"netiq-voipa":'''NetIQ VoIP Assessor''',
"iqrm":'''NetIQ IQCResource Managament Svc''',
"bmc-perf-sd":'''BMC-PERFORM-SERVICE DAEMON''',
"qb-db-server":'''QB Database Server''',
"snmpdtls":'''SNMP-DTLS''',
"snmpdtls-trap":'''SNMP-Trap-DTLS''',
"trisoap":'''Trigence AE Soap Service''',
"rscs":'''Remote Server Control and Test Service''',
"apollo-relay":'''Apollo Relay Port''',
"axis-wimp-port":'''Axis WIMP Port''',
"blocks":'''Blocks''',
"hip-nat-t":'''HIP NAT-Traversal''',
"MOS-lower":'''MOS Media Object Metadata Port''',
"MOS-upper":'''MOS Running Order Port''',
"MOS-aux":'''MOS Low Priority Port''',
"MOS-soap":'''MOS SOAP Default Port''',
"MOS-soap-opt":'''MOS SOAP Optional Port''',
"gap":'''Gestor de Acaparamiento para Pocket PCs''',
"lpdg":'''LUCIA Pareja Data Group''',
"nmc-disc":'''Nuance Mobile Care Discovery''',
"helix":'''Helix Client/Server''',
"rmiaux":'''Auxiliary RMI Port''',
"irisa":'''IRISA''',
"metasys":'''Metasys''',
"sgi-lk":'''SGI LK Licensing service''',
"vce":'''Viral Computing Environment (VCE)''',
"dicom":'''DICOM''',
"suncacao-snmp":'''sun cacao snmp access point''',
"suncacao-jmxmp":'''sun cacao JMX-remoting access point''',
"suncacao-rmi":'''sun cacao rmi registry access point''',
"suncacao-csa":'''sun cacao command-streaming access point''',
"suncacao-websvc":'''sun cacao web service access point''',
"snss":'''Surgical Notes Security Service Discovery (SNSS)''',
"smsqp":'''smsqp''',
"wifree":'''WiFree Service''',
"memcache":'''Memory cache service''',
"imip":'''IMIP''',
"imip-channels":'''IMIP Channels Port''',
"arena-server":'''Arena Server Listen''',
"atm-uhas":'''ATM UHAS''',
"hkp":'''OpenPGP HTTP Keyserver''',
"tempest-port":'''Tempest Protocol Port''',
"h323callsigalt":'''h323 Call Signal Alternate''',
"intrepid-ssl":'''Intrepid SSL''',
"lanschool-mpt":'''Lanschool Multipoint''',
"xoraya":'''X2E Xoraya Multichannel protocol''',
"x2e-disc":'''X2E service discovery protocol''',
"sysinfo-sp":'''SysInfo Sercice Protocol''',
"entextxid":'''IBM Enterprise Extender SNA XID Exchange''',
"entextnetwk":'''IBM Enterprise Extender SNA COS Network Priority''',
"entexthigh":'''IBM Enterprise Extender SNA COS High Priority''',
"entextmed":'''IBM Enterprise Extender SNA COS Medium Priority''',
"entextlow":'''IBM Enterprise Extender SNA COS Low Priority''',
"dbisamserver1":'''DBISAM Database Server - Regular''',
"dbisamserver2":'''DBISAM Database Server - Admin''',
"accuracer":'''Accuracer Database System Server''',
"accuracer-dbms":'''Accuracer Database System Admin''',
"ghvpn":'''Green Hills VPN''',
"vipera":'''Vipera Messaging Service''',
"vipera-ssl":'''Vipera Messaging Service over SSL Communication''',
"rets-ssl":'''RETS over SSL''',
"nupaper-ss":'''NuPaper Session Service''',
"cawas":'''CA Web Access Service''',
"hivep":'''HiveP''',
"linogridengine":'''LinoGrid Engine''',
"warehouse-sss":'''Warehouse Monitoring Syst SSS''',
"warehouse":'''Warehouse Monitoring Syst''',
"italk":'''Italk Chat System''',
"tsaf":'''tsaf port''',
"i-zipqd":'''I-ZIPQD''',
"bcslogc":'''Black Crow Software application logging''',
"rs-pias":'''R&S Proxy Installation Assistant Service''',
"emc-vcas-udp":'''EMV Virtual CAS Service Discovery''',
"powwow-client":'''PowWow Client''',
"powwow-server":'''PowWow Server''',
"doip-disc":'''DoIP Discovery''',
"bprd":'''BPRD Protocol (VERITAS NetBackup)''',
"bpdbm":'''BPDBM Protocol (VERITAS NetBackup)''',
"bpjava-msvc":'''BP Java MSVC Protocol''',
"vnetd":'''Veritas Network Utility''',
"bpcd":'''VERITAS NetBackup''',
"vopied":'''VOPIED Protocol''',
"nbdb":'''NetBackup Database''',
"nomdb":'''Veritas-nomdb''',
"dsmcc-config":'''DSMCC Config''',
"dsmcc-session":'''DSMCC Session Messages''',
"dsmcc-passthru":'''DSMCC Pass-Thru Messages''',
"dsmcc-download":'''DSMCC Download Protocol''',
"dsmcc-ccp":'''DSMCC Channel Change Protocol''',
"ucontrol":'''Ultimate Control communication protocol''',
"dta-systems":'''D-TA SYSTEMS''',
"scotty-ft":'''SCOTTY High-Speed Filetransfer''',
"sua":'''De-Registered''',
"sage-best-com1":'''sage Best! Config Server 1''',
"sage-best-com2":'''sage Best! Config Server 2''',
"vcs-app":'''VCS Application''',
"icpp":'''IceWall Cert Protocol''',
"gcm-app":'''GCM Application''',
"vrts-tdd":'''Veritas Traffic Director''',
"vad":'''Veritas Application Director''',
"cps":'''Fencing Server''',
"ca-web-update":'''CA eTrust Web Update Service''',
"hde-lcesrvr-1":'''hde-lcesrvr-1''',
"hde-lcesrvr-2":'''hde-lcesrvr-2''',
"hydap":'''Hypack Data Aquisition''',
"v2g-secc":'''v2g Supply Equipment Communication Controller Discovery Protocol''',
"xpilot":'''XPilot Contact Port''',
"3link":'''3Link Negotiation''',
"cisco-snat":'''Cisco Stateful NAT''',
"bex-xr":'''Backup Express Restore Server''',
"ptp":'''Picture Transfer Protocol''',
"2ping":'''2ping Bi-Directional Ping Service''',
"alfin":'''Automation and Control by REGULACE.ORG''',
"sun-sea-port":'''Solaris SEA Port''',
"etb4j":'''etb4j''',
"pduncs":'''Policy Distribute, Update Notification''',
"pdefmns":'''Policy definition and update management''',
"netserialext1":'''Network Serial Extension Ports One''',
"netserialext2":'''Network Serial Extension Ports Two''',
"netserialext3":'''Network Serial Extension Ports Three''',
"netserialext4":'''Network Serial Extension Ports Four''',
"connected":'''Connected Corp''',
"vtp":'''Vidder Tunnel Protocol''',
"newbay-snc-mc":'''Newbay Mobile Client Update Service''',
"sgcip":'''Simple Generic Client Interface Protocol''',
"intel-rci-mp":'''INTEL-RCI-MP''',
"amt-soap-http":'''Intel(R) AMT SOAP/HTTP''',
"amt-soap-https":'''Intel(R) AMT SOAP/HTTPS''',
"amt-redir-tcp":'''Intel(R) AMT Redirection/TCP''',
"amt-redir-tls":'''Intel(R) AMT Redirection/TLS''',
"isode-dua":'''''',
"soundsvirtual":'''Sounds Virtual''',
"chipper":'''Chipper''',
"avdecc":'''IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control''',
"cpsp":'''Control Plane Synchronization Protocol (SPSP)''',
"integrius-stp":'''Integrius Secure Tunnel Protocol''',
"ssh-mgmt":'''SSH Tectia Manager''',
"db-lsp-disc":'''Dropbox LanSync Discovery''',
"ea":'''Eclipse Aviation''',
"zep":'''Encap. ZigBee Packets''',
"zigbee-ip":'''ZigBee IP Transport Service''',
"zigbee-ips":'''ZigBee IP Transport Secure Service''',
"biimenu":'''Beckman Instruments, Inc.''',
"opsec-cvp":'''OPSEC CVP''',
"opsec-ufp":'''OPSEC UFP''',
"opsec-sam":'''OPSEC SAM''',
"opsec-lea":'''OPSEC LEA''',
"opsec-omi":'''OPSEC OMI''',
"ohsc":'''Occupational Health Sc''',
"opsec-ela":'''OPSEC ELA''',
"checkpoint-rtm":'''Check Point RTM''',
"gv-pf":'''GV NetConfig Service''',
"ac-cluster":'''AC Cluster''',
"rds-ib":'''Reliable Datagram Service''',
"rds-ip":'''Reliable Datagram Service over IP''',
"ique":'''IQue Protocol''',
"infotos":'''Infotos''',
"apc-necmp":'''APCNECMP''',
"igrid":'''iGrid Server''',
"opsec-uaa":'''OPSEC UAA''',
"ua-secureagent":'''UserAuthority SecureAgent''',
"keysrvr":'''Key Server for SASSAFRAS''',
"keyshadow":'''Key Shadow for SASSAFRAS''',
"mtrgtrans":'''mtrgtrans''',
"hp-sco":'''hp-sco''',
"hp-sca":'''hp-sca''',
"hp-sessmon":'''HP-SESSMON''',
"fxuptp":'''FXUPTP''',
"sxuptp":'''SXUPTP''',
"jcp":'''JCP Client''',
"dnp-sec":'''Distributed Network Protocol - Secure''',
"dnp":'''DNP''',
"microsan":'''MicroSAN''',
"commtact-http":'''Commtact HTTP''',
"commtact-https":'''Commtact HTTPS''',
"openwebnet":'''OpenWebNet protocol for electric network''',
"ss-idi-disc":'''Samsung Interdevice Interaction discovery''',
"opendeploy":'''OpenDeploy Listener''',
"nburn-id":'''NetBurner ID Port
IANA assigned this well-formed service name as a replacement for "nburn_id".''',
"nburn_id":'''NetBurner ID Port''',
"tmophl7mts":'''TMOP HL7 Message Transfer Service''',
"mountd":'''NFS mount protocol''',
"nfsrdma":'''Network File System (NFS) over RDMA''',
"tolfab":'''TOLfab Data Change''',
"ipdtp-port":'''IPD Tunneling Port''',
"ipulse-ics":'''iPulse-ICS''',
"emwavemsg":'''emWave Message Service''',
"track":'''Track''',
"athand-mmp":'''AT Hand MMP''',
"irtrans":'''IRTrans Control''',
"dfserver":'''MineScape Design File Server''',
"vofr-gateway":'''VoFR Gateway''',
"tvpm":'''TVNC Pro Multiplexing''',
"webphone":'''webphone''',
"netspeak-is":'''NetSpeak Corp. Directory Services''',
"netspeak-cs":'''NetSpeak Corp. Connection Services''',
"netspeak-acd":'''NetSpeak Corp. Automatic Call Distribution''',
"netspeak-cps":'''NetSpeak Corp. Credit Processing System''',
"snapenetio":'''SNAPenetIO''',
"optocontrol":'''OptoControl''',
"optohost002":'''Opto Host Port 2''',
"optohost003":'''Opto Host Port 3''',
"optohost004":'''Opto Host Port 4''',
"optohost004":'''Opto Host Port 5''',
"wnn6":'''wnn6''',
"cis":'''CompactIS Tunnel''',
"cis-secure":'''CompactIS Secure Tunnel''',
"WibuKey":'''WibuKey Standard WkLan''',
"CodeMeter":'''CodeMeter Standard''',
"vocaltec-phone":'''Vocaltec Internet Phone''',
"talikaserver":'''Talika Main Server''',
"aws-brf":'''Telerate Information Platform LAN''',
"brf-gw":'''Telerate Information Platform WAN''',
"inovaport1":'''Inova LightLink Server Type 1''',
"inovaport2":'''Inova LightLink Server Type 2''',
"inovaport3":'''Inova LightLink Server Type 3''',
"inovaport4":'''Inova LightLink Server Type 4''',
"inovaport5":'''Inova LightLink Server Type 5''',
"inovaport6":'''Inova LightLink Server Type 6''',
"s102":'''S102 application''',
"elxmgmt":'''Emulex HBAnyware Remote Management''',
"novar-dbase":'''Novar Data''',
"novar-alarm":'''Novar Alarm''',
"novar-global":'''Novar Global''',
"med-ltp":'''med-ltp''',
"med-fsp-rx":'''med-fsp-rx''',
"med-fsp-tx":'''med-fsp-tx''',
"med-supp":'''med-supp''',
"med-ovw":'''med-ovw''',
"med-ci":'''med-ci''',
"med-net-svc":'''med-net-svc''',
"filesphere":'''fileSphere''',
"vista-4gl":'''Vista 4GL''',
"ild":'''Isolv Local Directory''',
"intel-rci":'''Intel RCI
IANA assigned this well-formed service name as a replacement for "intel_rci".''',
"intel_rci":'''Intel RCI''',
"tonidods":'''Tonido Domain Server''',
"binkp":'''BINKP''',
"canditv":'''Canditv Message Service''',
"flashfiler":'''FlashFiler''',
"proactivate":'''Turbopower Proactivate''',
"tcc-http":'''TCC User HTTP Service''',
"assoc-disc":'''Device Association Discovery''',
"find":'''Find Identification of Network Devices''',
"icl-twobase1":'''icl-twobase1''',
"icl-twobase2":'''icl-twobase2''',
"icl-twobase3":'''icl-twobase3''',
"icl-twobase4":'''icl-twobase4''',
"icl-twobase5":'''icl-twobase5''',
"icl-twobase6":'''icl-twobase6''',
"icl-twobase7":'''icl-twobase7''',
"icl-twobase8":'''icl-twobase8''',
"icl-twobase9":'''icl-twobase9''',
"icl-twobase10":'''icl-twobase10''',
"vocaltec-hos":'''Vocaltec Address Server''',
"tasp-net":'''TASP Network Comm''',
"niobserver":'''NIObserver''',
"nilinkanalyst":'''NILinkAnalyst''',
"niprobe":'''NIProbe''',
"bf-game":'''Bitfighter game server''',
"bf-master":'''Bitfighter master server''',
"quake":'''quake''',
"scscp":'''Symbolic Computation Software Composability Protocol''',
"wnn6-ds":'''wnn6-ds''',
"ezproxy":'''eZproxy''',
"ezmeeting":'''eZmeeting''',
"k3software-svr":'''K3 Software-Server''',
"k3software-cli":'''K3 Software-Client''',
"exoline-udp":'''EXOline-UDP''',
"exoconfig":'''EXOconfig''',
"exonet":'''EXOnet''',
"imagepump":'''ImagePump''',
"jesmsjc":'''Job controller service''',
"kopek-httphead":'''Kopek HTTP Head Port''',
"ars-vista":'''ARS VISTA Application''',
"tw-auth-key":'''Attribute Certificate Services''',
"nxlmd":'''NX License Manager''',
"siemensgsm":'''Siemens GSM''',
"a27-ran-ran":'''A27 cdma2000 RAN Management''',
"otmp":'''ObTools Message Protocol''',
"pago-services1":'''Pago Services 1''',
"pago-services2":'''Pago Services 2''',
"kingdomsonline":'''Kingdoms Online (CraigAvenue)''',
"ovobs":'''OpenView Service Desk Client''',
"yawn":'''YaWN - Yet Another Windows Notifier''',
"xqosd":'''XQoS network monitor''',
"tetrinet":'''TetriNET Protocol''',
"lm-mon":'''lm mon''',
"gamesmith-port":'''GameSmith Port''',
"iceedcp-tx":'''Embedded Device Configuration Protocol TX
IANA assigned this well-formed service name as a replacement for "iceedcp_tx".''',
"iceedcp_tx":'''Embedded Device Configuration Protocol TX''',
"iceedcp-rx":'''Embedded Device Configuration Protocol RX
IANA assigned this well-formed service name as a replacement for "iceedcp_rx".''',
"iceedcp_rx":'''Embedded Device Configuration Protocol RX''',
"iracinghelper":'''iRacing helper service''',
"t1distproc60":'''T1 Distributed Processor''',
"apm-link":'''Access Point Manager Link''',
"sec-ntb-clnt":'''SecureNotebook-CLNT''',
"DMExpress":'''DMExpress''',
"filenet-powsrm":'''FileNet BPM WS-ReliableMessaging Client''',
"filenet-tms":'''Filenet TMS''',
"filenet-rpc":'''Filenet RPC''',
"filenet-nch":'''Filenet NCH''',
"filenet-rmi":'''FileNet RMI''',
"filenet-pa":'''FileNET Process Analyzer''',
"filenet-cm":'''FileNET Component Manager''',
"filenet-re":'''FileNET Rules Engine''',
"filenet-pch":'''Performance Clearinghouse''',
"filenet-peior":'''FileNET BPM IOR''',
"filenet-obrok":'''FileNet BPM CORBA''',
"mlsn":'''Multiple Listing Service Network''',
"idmgratm":'''Attachmate ID Manager''',
"aurora-balaena":'''Aurora (Balaena Ltd)''',
"diamondport":'''DiamondCentral Interface''',
"speedtrace-disc":'''SpeedTrace TraceAgent Discovery''',
"traceroute":'''traceroute use''',
"snip-slave":'''SNIP Slave''',
"turbonote-2":'''TurboNote Relay Server Default Port''',
"p-net-local":'''P-Net on IP local''',
"p-net-remote":'''P-Net on IP remote''',
"profinet-rt":'''PROFInet RT Unicast''',
"profinet-rtm":'''PROFInet RT Multicast''',
"profinet-cm":'''PROFInet Context Manager''',
"ethercat":'''EhterCAT Port''',
"altova-lm-disc":'''Altova License Management Discovery''',
"allpeers":'''AllPeers Network''',
"kastenxpipe":'''KastenX Pipe''',
"neckar":'''science + computing's Venus Administration Port''',
"unisys-eportal":'''Unisys ClearPath ePortal''',
"galaxy7-data":'''Galaxy7 Data Tunnel''',
"fairview":'''Fairview Message Service''',
"agpolicy":'''AppGate Policy Server''',
"turbonote-1":'''TurboNote Default Port''',
"safetynetp":'''SafetyNET p''',
"cscp":'''CSCP''',
"csccredir":'''CSCCREDIR''',
"csccfirewall":'''CSCCFIREWALL''',
"ortec-disc":'''ORTEC Service Discovery''',
"fs-qos":'''Foursticks QoS Protocol''',
"crestron-cip":'''Crestron Control Port''',
"crestron-ctp":'''Crestron Terminal Port''',
"candp":'''Computer Associates network discovery protocol''',
"candrp":'''CA discovery response''',
"caerpc":'''CA eTrust RPC''',
"reachout":'''REACHOUT''',
"ndm-agent-port":'''NDM-AGENT-PORT''',
"ip-provision":'''IP-PROVISION''',
"shaperai-disc":'''Shaper Automation Server Management Discovery''',
"eq3-config":'''EQ3 discovery and configuration''',
"ew-disc-cmd":'''Cisco EnergyWise Discovery and Command Flooding''',
"ciscocsdb":'''Cisco NetMgmt DB Ports''',
"pmcd":'''PCP server (pmcd)''',
"pmcdproxy":'''PCP server (pmcd) proxy''',
"pcp":'''Port Control Protocol''',
"domiq":'''DOMIQ Building Automation''',
"rbr-debug":'''REALbasic Remote Debug''',
"asihpi":'''AudioScience HPI''',
"EtherNet-IP-2":'''EtherNet/IP messaging
IANA assigned this well-formed service name as a replacement for "EtherNet/IP-2".''',
"EtherNet/IP-2":'''EtherNet/IP messaging''',
"asmp-mon":'''NSi AutoStore Status Monitoring Protocol device monitoring''',
"invision-ag":'''InVision AG''',
"eba":'''EBA PRISE''',
"qdb2service":'''Qpuncture Data Access Service''',
"ssr-servermgr":'''SSRServerMgr''',
"mediabox":'''MediaBox Server''',
"mbus":'''Message Bus''',
"dbbrowse":'''Databeam Corporation''',
"directplaysrvr":'''Direct Play Server''',
"ap":'''ALC Protocol''',
"bacnet":'''Building Automation and Control Networks''',
"nimcontroller":'''Nimbus Controller''',
"nimspooler":'''Nimbus Spooler''',
"nimhub":'''Nimbus Hub''',
"nimgtw":'''Nimbus Gateway''',
"isnetserv":'''Image Systems Network Services''',
"blp5":'''Bloomberg locator''',
"com-bardac-dw":'''com-bardac-dw''',
"iqobject":'''iqobject''',
"acs-ctl-ds":'''Access Control Device''',
"acs-ctl-gw":'''Access Control Gateway''',
"amba-cam":'''Ambarella Cameras''',
"apple-midi":'''Apple MIDI''',
"arcnet":'''Arcturus Networks Inc. Hardware Services''',
"astnotify":'''Asterisk Caller-ID Notification Service''',
"bluevertise":'''BlueVertise Network Protocol (BNP)''',
"boundaryscan":'''Proprietary''',
"clique":'''Clique Link-Local Multicast Chat Room''',
"dbaudio":'''d&b audiotechnik remote network''',
"dltimesync":'''Local Area Dynamic Time Synchronisation Protocol''',
"dns-update":'''DNS Dynamic Update Service''',
"edcp":'''LaCie Ethernet Disk Configuration Protocol''',
"fl-purr":'''FilmLight Cluster Power Control Service''',
"fv-cert":'''Fairview Certificate''',
"fv-key":'''Fairview Key''',
"fv-time":'''Fairview Time/Date''',
"honeywell-vid":'''Honeywell Video Systems''',
"htvncconf":'''HomeTouch Vnc Configuration''',
"labyrinth":'''Labyrinth local multiplayer protocol''',
"logicnode":'''Logic Pro Distributed Audio''',
"macfoh-audio":'''MacFOH audio stream''',
"macfoh-events":'''MacFOH show control events''',
"macfoh-data":'''MacFOH realtime data''',
"neoriders":'''NeoRiders Client Discovery Protocol''',
"nextcap":'''Proprietary communication protocol for NextCap capture solution''',
"ntx":'''Tenasys''',
"olpc-activity1":'''One Laptop per Child activity''',
"opencu":'''Conferencing Protocol''',
"oscit":'''Open Sound Control Interface Transfer''',
"p2pchat":'''Peer-to-Peer Chat (Sample Java Bonjour application)''',
"parity":'''PA-R-I-Ty (Public Address - Radio - Intercom - Telefony)''',
"psap":'''Progal Service Advertising Protocol''',
"radioport":'''RadioPort Message Service''',
"recolive-cc":'''Remote Camera Control''',
"sip":'''Session Initiation Protocol, signalling protocol for VoIP''',
"sleep-proxy":'''Sleep Proxy Server''',
"teleport":'''teleport''',
"wicop":'''WiFi Control Platform''',
"x-plane9":'''x-plane9''',
"yakumo":'''Yakumo iPhone OS Device Control Protocol''',
"z-wave":'''Z-Wave Service Discovery''',
"zeromq":'''High performance brokerless messaging''',
}
TCP_SERVICES = {
"tcpmux":'''TCP Port Service Multiplexer''',
"compressnet":'''Management Utility''',
"compressnet":'''Compression Process''',
"rje":'''Remote Job Entry''',
"echo":'''Echo''',
"discard":'''Discard''',
"systat":'''Active Users''',
"daytime":'''Daytime''',
"qotd":'''Quote of the Day''',
"msp":'''Message Send Protocol (historic)''',
"chargen":'''Character Generator''',
"ftp-data":'''File Transfer [Default Data]''',
"ftp":'''File Transfer [Control]''',
"ssh":'''The Secure Shell (SSH) Protocol''',
"telnet":'''Telnet''',
"smtp":'''Simple Mail Transfer''',
"nsw-fe":'''NSW User System FE''',
"msg-icp":'''MSG ICP''',
"msg-auth":'''MSG Authentication''',
"dsp":'''Display Support Protocol''',
"time":'''Time''',
"rap":'''Route Access Protocol''',
"rlp":'''Resource Location Protocol''',
"graphics":'''Graphics''',
"name":'''Host Name Server''',
"nameserver":'''Host Name Server''',
"nicname":'''Who Is''',
"mpm-flags":'''MPM FLAGS Protocol''',
"mpm":'''Message Processing Module [recv]''',
"mpm-snd":'''MPM [default send]''',
"ni-ftp":'''NI FTP''',
"auditd":'''Digital Audit Daemon''',
"tacacs":'''Login Host Protocol (TACACS)''',
"re-mail-ck":'''Remote Mail Checking Protocol''',
"la-maint":'''IMP Logical Address Maintenance''',
"xns-time":'''XNS Time Protocol''',
"domain":'''Domain Name Server''',
"xns-ch":'''XNS Clearinghouse''',
"isi-gl":'''ISI Graphics Language''',
"xns-auth":'''XNS Authentication''',
"xns-mail":'''XNS Mail''',
"ni-mail":'''NI MAIL''',
"acas":'''ACA Services''',
"whoispp":'''whois++
IANA assigned this well-formed service name as a replacement for "whois++".''',
"whois++":'''whois++''',
"covia":'''Communications Integrator (CI)''',
"tacacs-ds":'''TACACS-Database Service''',
"sql-net":'''Oracle SQL*NET
IANA assigned this well-formed service name as a replacement for "sql*net".''',
"sql*net":'''Oracle SQL*NET''',
"bootps":'''Bootstrap Protocol Server''',
"bootpc":'''Bootstrap Protocol Client''',
"tftp":'''Trivial File Transfer''',
"gopher":'''Gopher''',
"netrjs-1":'''Remote Job Service''',
"netrjs-2":'''Remote Job Service''',
"netrjs-3":'''Remote Job Service''',
"netrjs-4":'''Remote Job Service''',
"deos":'''Distributed External Object Store''',
"vettcp":'''vettcp''',
"finger":'''Finger''',
"http":'''World Wide Web HTTP''',
"www":'''World Wide Web HTTP''',
"www-http":'''World Wide Web HTTP''',
"xfer":'''XFER Utility''',
"mit-ml-dev":'''MIT ML Device''',
"ctf":'''Common Trace Facility''',
"mit-ml-dev":'''MIT ML Device''',
"mfcobol":'''Micro Focus Cobol''',
"kerberos":'''Kerberos''',
"su-mit-tg":'''SU/MIT Telnet Gateway''',
"dnsix":'''DNSIX Securit Attribute Token Map''',
"mit-dov":'''MIT Dover Spooler''',
"npp":'''Network Printing Protocol''',
"dcp":'''Device Control Protocol''',
"objcall":'''Tivoli Object Dispatcher''',
"supdup":'''SUPDUP''',
"dixie":'''DIXIE Protocol Specification''',
"swift-rvf":'''Swift Remote Virtural File Protocol''',
"tacnews":'''TAC News''',
"metagram":'''Metagram Relay''',
"hostname":'''NIC Host Name Server''',
"iso-tsap":'''ISO-TSAP Class 0''',
"gppitnp":'''Genesis Point-to-Point Trans Net''',
"acr-nema":'''ACR-NEMA Digital Imag. & Comm. 300''',
"cso":'''CCSO name server protocol''',
"csnet-ns":'''Mailbox Name Nameserver''',
"3com-tsmux":'''3COM-TSMUX''',
"rtelnet":'''Remote Telnet Service''',
"snagas":'''SNA Gateway Access Server''',
"pop2":'''Post Office Protocol - Version 2''',
"pop3":'''Post Office Protocol - Version 3''',
"sunrpc":'''SUN Remote Procedure Call''',
"mcidas":'''McIDAS Data Transmission Protocol''',
"ident":'''''',
"auth":'''Authentication Service''',
"sftp":'''Simple File Transfer Protocol''',
"ansanotify":'''ANSA REX Notify''',
"uucp-path":'''UUCP Path Service''',
"sqlserv":'''SQL Services''',
"nntp":'''Network News Transfer Protocol''',
"cfdptkt":'''CFDPTKT''',
"erpc":'''Encore Expedited Remote Pro.Call''',
"smakynet":'''SMAKYNET''',
"ntp":'''Network Time Protocol''',
"ansatrader":'''ANSA REX Trader''',
"locus-map":'''Locus PC-Interface Net Map Ser''',
"nxedit":'''NXEdit''',
"locus-con":'''Locus PC-Interface Conn Server''',
"gss-xlicen":'''GSS X License Verification''',
"pwdgen":'''Password Generator Protocol''',
"cisco-fna":'''cisco FNATIVE''',
"cisco-tna":'''cisco TNATIVE''',
"cisco-sys":'''cisco SYSMAINT''',
"statsrv":'''Statistics Service''',
"ingres-net":'''INGRES-NET Service''',
"epmap":'''DCE endpoint resolution''',
"profile":'''PROFILE Naming System''',
"netbios-ns":'''NETBIOS Name Service''',
"netbios-dgm":'''NETBIOS Datagram Service''',
"netbios-ssn":'''NETBIOS Session Service''',
"emfis-data":'''EMFIS Data Service''',
"emfis-cntl":'''EMFIS Control Service''',
"bl-idm":'''Britton-Lee IDM''',
"imap":'''Internet Message Access Protocol''',
"uma":'''Universal Management Architecture''',
"uaac":'''UAAC Protocol''',
"iso-tp0":'''ISO-IP0''',
"iso-ip":'''ISO-IP''',
"jargon":'''Jargon''',
"aed-512":'''AED 512 Emulation Service''',
"sql-net":'''SQL-NET''',
"hems":'''HEMS''',
"bftp":'''Background File Transfer Program''',
"sgmp":'''SGMP''',
"netsc-prod":'''NETSC''',
"netsc-dev":'''NETSC''',
"sqlsrv":'''SQL Service''',
"knet-cmp":'''KNET/VM Command/Message Protocol''',
"pcmail-srv":'''PCMail Server''',
"nss-routing":'''NSS-Routing''',
"sgmp-traps":'''SGMP-TRAPS''',
"snmp":'''SNMP''',
"snmptrap":'''SNMPTRAP''',
"cmip-man":'''CMIP/TCP Manager''',
"cmip-agent":'''CMIP/TCP Agent''',
"xns-courier":'''Xerox''',
"s-net":'''Sirius Systems''',
"namp":'''NAMP''',
"rsvd":'''RSVD''',
"send":'''SEND''',
"print-srv":'''Network PostScript''',
"multiplex":'''Network Innovations Multiplex''',
"cl-1":'''Network Innovations CL/1
IANA assigned this well-formed service name as a replacement for "cl/1".''',
"cl/1":'''Network Innovations CL/1''',
"xyplex-mux":'''Xyplex''',
"mailq":'''MAILQ''',
"vmnet":'''VMNET''',
"genrad-mux":'''GENRAD-MUX''',
"xdmcp":'''X Display Manager Control Protocol''',
"nextstep":'''NextStep Window Server''',
"bgp":'''Border Gateway Protocol''',
"ris":'''Intergraph''',
"unify":'''Unify''',
"audit":'''Unisys Audit SITP''',
"ocbinder":'''OCBinder''',
"ocserver":'''OCServer''',
"remote-kis":'''Remote-KIS''',
"kis":'''KIS Protocol''',
"aci":'''Application Communication Interface''',
"mumps":'''Plus Five's MUMPS''',
"qft":'''Queued File Transport''',
"gacp":'''Gateway Access Control Protocol''',
"prospero":'''Prospero Directory Service''',
"osu-nms":'''OSU Network Monitoring System''',
"srmp":'''Spider Remote Monitoring Protocol''',
"irc":'''Internet Relay Chat Protocol''',
"dn6-nlm-aud":'''DNSIX Network Level Module Audit''',
"dn6-smm-red":'''DNSIX Session Mgt Module Audit Redir''',
"dls":'''Directory Location Service''',
"dls-mon":'''Directory Location Service Monitor''',
"smux":'''SMUX''',
"src":'''IBM System Resource Controller''',
"at-rtmp":'''AppleTalk Routing Maintenance''',
"at-nbp":'''AppleTalk Name Binding''',
"at-3":'''AppleTalk Unused''',
"at-echo":'''AppleTalk Echo''',
"at-5":'''AppleTalk Unused''',
"at-zis":'''AppleTalk Zone Information''',
"at-7":'''AppleTalk Unused''',
"at-8":'''AppleTalk Unused''',
"qmtp":'''The Quick Mail Transfer Protocol''',
"z39-50":'''ANSI Z39.50
IANA assigned this well-formed service name as a replacement for "z39.50".''',
"z39.50":'''ANSI Z39.50''',
"914c-g":'''Texas Instruments 914C/G Terminal
IANA assigned this well-formed service name as a replacement for "914c/g".''',
"914c/g":'''Texas Instruments 914C/G Terminal''',
"anet":'''ATEXSSTR''',
"ipx":'''IPX''',
"vmpwscs":'''VM PWSCS''',
"softpc":'''Insignia Solutions''',
"CAIlic":'''Computer Associates Int'l License Server''',
"dbase":'''dBASE Unix''',
"mpp":'''Netix Message Posting Protocol''',
"uarps":'''Unisys ARPs''',
"imap3":'''Interactive Mail Access Protocol v3''',
"fln-spx":'''Berkeley rlogind with SPX auth''',
"rsh-spx":'''Berkeley rshd with SPX auth''',
"cdc":'''Certificate Distribution Center''',
"masqdialer":'''masqdialer''',
"direct":'''Direct''',
"sur-meas":'''Survey Measurement''',
"inbusiness":'''inbusiness''',
"link":'''LINK''',
"dsp3270":'''Display Systems Protocol''',
"subntbcst-tftp":'''SUBNTBCST_TFTP
IANA assigned this well-formed service name as a replacement for "subntbcst_tftp".''',
"subntbcst_tftp":'''SUBNTBCST_TFTP''',
"bhfhs":'''bhfhs''',
"rap":'''RAP''',
"set":'''Secure Electronic Transaction''',
"esro-gen":'''Efficient Short Remote Operations''',
"openport":'''Openport''',
"nsiiops":'''IIOP Name Service over TLS/SSL''',
"arcisdms":'''Arcisdms''',
"hdap":'''HDAP''',
"bgmp":'''BGMP''',
"x-bone-ctl":'''X-Bone CTL''',
"sst":'''SCSI on ST''',
"td-service":'''Tobit David Service Layer''',
"td-replica":'''Tobit David Replica''',
"manet":'''MANET Protocols''',
"pt-tls":'''IETF Network Endpoint Assessment (NEA) Posture Transport Protocol over TLS (PT-TLS)''',
"http-mgmt":'''http-mgmt''',
"personal-link":'''Personal Link''',
"cableport-ax":'''Cable Port A/X''',
"rescap":'''rescap''',
"corerjd":'''corerjd''',
"fxp":'''FXP Communication''',
"k-block":'''K-BLOCK''',
"novastorbakcup":'''Novastor Backup''',
"entrusttime":'''EntrustTime''',
"bhmds":'''bhmds''',
"asip-webadmin":'''AppleShare IP WebAdmin''',
"vslmp":'''VSLMP''',
"magenta-logic":'''Magenta Logic''',
"opalis-robot":'''Opalis Robot''',
"dpsi":'''DPSI''',
"decauth":'''decAuth''',
"zannet":'''Zannet''',
"pkix-timestamp":'''PKIX TimeStamp''',
"ptp-event":'''PTP Event''',
"ptp-general":'''PTP General''',
"pip":'''PIP''',
"rtsps":'''RTSPS''',
"rpki-rtr":'''Resource PKI to Router Protocol''',
"rpki-rtr-tls":'''Resource PKI to Router Protocol over TLS''',
"texar":'''Texar Security Port''',
"pdap":'''Prospero Data Access Protocol''',
"pawserv":'''Perf Analysis Workbench''',
"zserv":'''Zebra server''',
"fatserv":'''Fatmen Server''',
"csi-sgwp":'''Cabletron Management Protocol''',
"mftp":'''mftp''',
"matip-type-a":'''MATIP Type A''',
"matip-type-b":'''MATIP Type B''',
"bhoetty":'''bhoetty''',
"dtag-ste-sb":'''DTAG''',
"bhoedap4":'''bhoedap4''',
"ndsauth":'''NDSAUTH''',
"bh611":'''bh611''',
"datex-asn":'''DATEX-ASN''',
"cloanto-net-1":'''Cloanto Net 1''',
"bhevent":'''bhevent''',
"shrinkwrap":'''Shrinkwrap''',
"nsrmp":'''Network Security Risk Management Protocol''',
"scoi2odialog":'''scoi2odialog''',
"semantix":'''Semantix''',
"srssend":'''SRS Send''',
"rsvp-tunnel":'''RSVP Tunnel
IANA assigned this well-formed service name as a replacement for "rsvp_tunnel".''',
"rsvp_tunnel":'''RSVP Tunnel''',
"aurora-cmgr":'''Aurora CMGR''',
"dtk":'''DTK''',
"odmr":'''ODMR''',
"mortgageware":'''MortgageWare''',
"qbikgdp":'''QbikGDP''',
"rpc2portmap":'''rpc2portmap''',
"codaauth2":'''codaauth2''',
"clearcase":'''Clearcase''',
"ulistproc":'''ListProcessor''',
"legent-1":'''Legent Corporation''',
"legent-2":'''Legent Corporation''',
"hassle":'''Hassle''',
"nip":'''Amiga Envoy Network Inquiry Proto''',
"tnETOS":'''NEC Corporation''',
"dsETOS":'''NEC Corporation''',
"is99c":'''TIA/EIA/IS-99 modem client''',
"is99s":'''TIA/EIA/IS-99 modem server''',
"hp-collector":'''hp performance data collector''',
"hp-managed-node":'''hp performance data managed node''',
"hp-alarm-mgr":'''hp performance data alarm manager''',
"arns":'''A Remote Network Server System''',
"ibm-app":'''IBM Application''',
"asa":'''ASA Message Router Object Def.''',
"aurp":'''Appletalk Update-Based Routing Pro.''',
"unidata-ldm":'''Unidata LDM''',
"ldap":'''Lightweight Directory Access Protocol''',
"uis":'''UIS''',
"synotics-relay":'''SynOptics SNMP Relay Port''',
"synotics-broker":'''SynOptics Port Broker Port''',
"meta5":'''Meta5''',
"embl-ndt":'''EMBL Nucleic Data Transfer''',
"netcp":'''NetScout Control Protocol''',
"netware-ip":'''Novell Netware over IP''',
"mptn":'''Multi Protocol Trans. Net.''',
"kryptolan":'''Kryptolan''',
"iso-tsap-c2":'''ISO Transport Class 2 Non-Control over TCP''',
"osb-sd":'''Oracle Secure Backup''',
"ups":'''Uninterruptible Power Supply''',
"genie":'''Genie Protocol''',
"decap":'''decap''',
"nced":'''nced''',
"ncld":'''ncld''',
"imsp":'''Interactive Mail Support Protocol''',
"timbuktu":'''Timbuktu''',
"prm-sm":'''Prospero Resource Manager Sys. Man.''',
"prm-nm":'''Prospero Resource Manager Node Man.''',
"decladebug":'''DECLadebug Remote Debug Protocol''',
"rmt":'''Remote MT Protocol''',
"synoptics-trap":'''Trap Convention Port''',
"smsp":'''Storage Management Services Protocol''',
"infoseek":'''InfoSeek''',
"bnet":'''BNet''',
"silverplatter":'''Silverplatter''',
"onmux":'''Onmux''',
"hyper-g":'''Hyper-G''',
"ariel1":'''Ariel 1''',
"smpte":'''SMPTE''',
"ariel2":'''Ariel 2''',
"ariel3":'''Ariel 3''',
"opc-job-start":'''IBM Operations Planning and Control Start''',
"opc-job-track":'''IBM Operations Planning and Control Track''',
"icad-el":'''ICAD''',
"smartsdp":'''smartsdp''',
"svrloc":'''Server Location''',
"ocs-cmu":'''OCS_CMU
IANA assigned this well-formed service name as a replacement for "ocs_cmu".''',
"ocs_cmu":'''OCS_CMU''',
"ocs-amu":'''OCS_AMU
IANA assigned this well-formed service name as a replacement for "ocs_amu".''',
"ocs_amu":'''OCS_AMU''',
"utmpsd":'''UTMPSD''',
"utmpcd":'''UTMPCD''',
"iasd":'''IASD''',
"nnsp":'''NNSP''',
"mobileip-agent":'''MobileIP-Agent''',
"mobilip-mn":'''MobilIP-MN''',
"dna-cml":'''DNA-CML''',
"comscm":'''comscm''',
"dsfgw":'''dsfgw''',
"dasp":'''dasp''',
"sgcp":'''sgcp''',
"decvms-sysmgt":'''decvms-sysmgt''',
"cvc-hostd":'''cvc_hostd
IANA assigned this well-formed service name as a replacement for "cvc_hostd".''',
"cvc_hostd":'''cvc_hostd''',
"https":'''http protocol over TLS/SSL''',
"snpp":'''Simple Network Paging Protocol''',
"microsoft-ds":'''Microsoft-DS''',
"ddm-rdb":'''DDM-Remote Relational Database Access''',
"ddm-dfm":'''DDM-Distributed File Management''',
"ddm-ssl":'''DDM-Remote DB Access Using Secure Sockets''',
"as-servermap":'''AS Server Mapper''',
"tserver":'''Computer Supported Telecomunication Applications''',
"sfs-smp-net":'''Cray Network Semaphore server''',
"sfs-config":'''Cray SFS config server''',
"creativeserver":'''CreativeServer''',
"contentserver":'''ContentServer''',
"creativepartnr":'''CreativePartnr''',
"macon-tcp":'''macon-tcp''',
"scohelp":'''scohelp''',
"appleqtc":'''apple quick time''',
"ampr-rcmd":'''ampr-rcmd''',
"skronk":'''skronk''',
"datasurfsrv":'''DataRampSrv''',
"datasurfsrvsec":'''DataRampSrvSec''',
"alpes":'''alpes''',
"kpasswd":'''kpasswd''',
"urd":'''URL Rendesvous Directory for SSM''',
"digital-vrc":'''digital-vrc''',
"mylex-mapd":'''mylex-mapd''',
"photuris":'''proturis''',
"rcp":'''Radio Control Protocol''',
"scx-proxy":'''scx-proxy''',
"mondex":'''Mondex''',
"ljk-login":'''ljk-login''',
"hybrid-pop":'''hybrid-pop''',
"tn-tl-w1":'''tn-tl-w1''',
"tcpnethaspsrv":'''tcpnethaspsrv''',
"tn-tl-fd1":'''tn-tl-fd1''',
"ss7ns":'''ss7ns''',
"spsc":'''spsc''',
"iafserver":'''iafserver''',
"iafdbase":'''iafdbase''',
"ph":'''Ph service''',
"bgs-nsi":'''bgs-nsi''',
"ulpnet":'''ulpnet''',
"integra-sme":'''Integra Software Management Environment''',
"powerburst":'''Air Soft Power Burst''',
"avian":'''avian''',
"saft":'''saft Simple Asynchronous File Transfer''',
"gss-http":'''gss-http''',
"nest-protocol":'''nest-protocol''',
"micom-pfs":'''micom-pfs''',
"go-login":'''go-login''',
"ticf-1":'''Transport Independent Convergence for FNA''',
"ticf-2":'''Transport Independent Convergence for FNA''',
"pov-ray":'''POV-Ray''',
"intecourier":'''intecourier''',
"pim-rp-disc":'''PIM-RP-DISC''',
"retrospect":'''Retrospect backup and restore service''',
"siam":'''siam''',
"iso-ill":'''ISO ILL Protocol''',
"isakmp":'''isakmp''',
"stmf":'''STMF''',
"asa-appl-proto":'''asa-appl-proto''',
"intrinsa":'''Intrinsa''',
"citadel":'''citadel''',
"mailbox-lm":'''mailbox-lm''',
"ohimsrv":'''ohimsrv''',
"crs":'''crs''',
"xvttp":'''xvttp''',
"snare":'''snare''',
"fcp":'''FirstClass Protocol''',
"passgo":'''PassGo''',
"exec":'''remote process execution; authentication performed using passwords and UNIX login names''',
"login":'''remote login a la telnet; automatic authentication performed based on priviledged port numbers and distributed data bases which identify "authentication domains"''',
"shell":'''cmd like exec, but automatic authentication is performed as for login server''',
"printer":'''spooler''',
"videotex":'''videotex''',
"talk":'''like tenex link, but across machine - unfortunately, doesn't use link protocol (this is actually just a rendezvous port from which a tcp connection is established)''',
"ntalk":'''''',
"utime":'''unixtime''',
"efs":'''extended file name server''',
"ripng":'''ripng''',
"ulp":'''ULP''',
"ibm-db2":'''IBM-DB2''',
"ncp":'''NCP''',
"timed":'''timeserver''',
"tempo":'''newdate''',
"stx":'''Stock IXChange''',
"custix":'''Customer IXChange''',
"irc-serv":'''IRC-SERV''',
"courier":'''rpc''',
"conference":'''chat''',
"netnews":'''readnews''',
"netwall":'''for emergency broadcasts''',
"windream":'''windream Admin''',
"iiop":'''iiop''',
"opalis-rdv":'''opalis-rdv''',
"nmsp":'''Networked Media Streaming Protocol''',
"gdomap":'''gdomap''',
"apertus-ldp":'''Apertus Technologies Load Determination''',
"uucp":'''uucpd''',
"uucp-rlogin":'''uucp-rlogin''',
"commerce":'''commerce''',
"klogin":'''''',
"kshell":'''krcmd''',
"appleqtcsrvr":'''appleqtcsrvr''',
"dhcpv6-client":'''DHCPv6 Client''',
"dhcpv6-server":'''DHCPv6 Server''',
"afpovertcp":'''AFP over TCP''',
"idfp":'''IDFP''',
"new-rwho":'''new-who''',
"cybercash":'''cybercash''',
"devshr-nts":'''DeviceShare''',
"pirp":'''pirp''',
"rtsp":'''Real Time Streaming Protocol (RTSP)''',
"dsf":'''''',
"remotefs":'''rfs server''',
"openvms-sysipc":'''openvms-sysipc''',
"sdnskmp":'''SDNSKMP''',
"teedtap":'''TEEDTAP''',
"rmonitor":'''rmonitord''',
"monitor":'''''',
"chshell":'''chcmd''',
"nntps":'''nntp protocol over TLS/SSL (was snntp)''',
"9pfs":'''plan 9 file service''',
"whoami":'''whoami''',
"streettalk":'''streettalk''',
"banyan-rpc":'''banyan-rpc''',
"ms-shuttle":'''microsoft shuttle''',
"ms-rome":'''microsoft rome''',
"meter":'''demon''',
"meter":'''udemon''',
"sonar":'''sonar''',
"banyan-vip":'''banyan-vip''',
"ftp-agent":'''FTP Software Agent System''',
"vemmi":'''VEMMI''',
"ipcd":'''ipcd''',
"vnas":'''vnas''',
"ipdd":'''ipdd''',
"decbsrv":'''decbsrv''',
"sntp-heartbeat":'''SNTP HEARTBEAT''',
"bdp":'''Bundle Discovery Protocol''',
"scc-security":'''SCC Security''',
"philips-vc":'''Philips Video-Conferencing''',
"keyserver":'''Key Server''',
"password-chg":'''Password Change''',
"submission":'''Message Submission''',
"cal":'''CAL''',
"eyelink":'''EyeLink''',
"tns-cml":'''TNS CML''',
"http-alt":'''FileMaker, Inc. - HTTP Alternate (see Port 80)''',
"eudora-set":'''Eudora Set''',
"http-rpc-epmap":'''HTTP RPC Ep Map''',
"tpip":'''TPIP''',
"cab-protocol":'''CAB Protocol''',
"smsd":'''SMSD''',
"ptcnameservice":'''PTC Name Service''',
"sco-websrvrmg3":'''SCO Web Server Manager 3''',
"acp":'''Aeolon Core Protocol''',
"ipcserver":'''Sun IPC server''',
"syslog-conn":'''Reliable Syslog Service''',
"xmlrpc-beep":'''XML-RPC over BEEP''',
"idxp":'''IDXP''',
"tunnel":'''TUNNEL''',
"soap-beep":'''SOAP over BEEP''',
"urm":'''Cray Unified Resource Manager''',
"nqs":'''nqs''',
"sift-uft":'''Sender-Initiated/Unsolicited File Transfer''',
"npmp-trap":'''npmp-trap''',
"npmp-local":'''npmp-local''',
"npmp-gui":'''npmp-gui''',
"hmmp-ind":'''HMMP Indication''',
"hmmp-op":'''HMMP Operation''',
"sshell":'''SSLshell''',
"sco-inetmgr":'''Internet Configuration Manager''',
"sco-sysmgr":'''SCO System Administration Server''',
"sco-dtmgr":'''SCO Desktop Administration Server''',
"dei-icda":'''DEI-ICDA''',
"compaq-evm":'''Compaq EVM''',
"sco-websrvrmgr":'''SCO WebServer Manager''',
"escp-ip":'''ESCP''',
"collaborator":'''Collaborator''',
"oob-ws-http":'''DMTF out-of-band web services management protocol''',
"cryptoadmin":'''Crypto Admin''',
"dec-dlm":'''DEC DLM
IANA assigned this well-formed service name as a replacement for "dec_dlm".''',
"dec_dlm":'''DEC DLM''',
"asia":'''ASIA''',
"passgo-tivoli":'''PassGo Tivoli''',
"qmqp":'''QMQP''',
"3com-amp3":'''3Com AMP3''',
"rda":'''RDA''',
"ipp":'''IPP (Internet Printing Protocol)''',
"bmpp":'''bmpp''',
"servstat":'''Service Status update (Sterling Software)''',
"ginad":'''ginad''',
"rlzdbase":'''RLZ DBase''',
"ldaps":'''ldap protocol over TLS/SSL (was sldap)''',
"lanserver":'''lanserver''',
"mcns-sec":'''mcns-sec''',
"msdp":'''MSDP''',
"entrust-sps":'''entrust-sps''',
"repcmd":'''repcmd''',
"esro-emsdp":'''ESRO-EMSDP V1.3''',
"sanity":'''SANity''',
"dwr":'''dwr''',
"pssc":'''PSSC''',
"ldp":'''LDP''',
"dhcp-failover":'''DHCP Failover''',
"rrp":'''Registry Registrar Protocol (RRP)''',
"cadview-3d":'''Cadview-3d - streaming 3d models over the internet''',
"obex":'''OBEX''',
"ieee-mms":'''IEEE MMS''',
"hello-port":'''HELLO_PORT''',
"repscmd":'''RepCmd''',
"aodv":'''AODV''',
"tinc":'''TINC''',
"spmp":'''SPMP''',
"rmc":'''RMC''',
"tenfold":'''TenFold''',
"mac-srvr-admin":'''MacOS Server Admin''',
"hap":'''HAP''',
"pftp":'''PFTP''',
"purenoise":'''PureNoise''',
"oob-ws-https":'''DMTF out-of-band secure web services management protocol''',
"sun-dr":'''Sun DR''',
"mdqs":'''''',
"doom":'''doom Id Software''',
"disclose":'''campaign contribution disclosures - SDR Technologies''',
"mecomm":'''MeComm''',
"meregister":'''MeRegister''',
"vacdsm-sws":'''VACDSM-SWS''',
"vacdsm-app":'''VACDSM-APP''',
"vpps-qua":'''VPPS-QUA''',
"cimplex":'''CIMPLEX''',
"acap":'''ACAP''',
"dctp":'''DCTP''',
"vpps-via":'''VPPS Via''',
"vpp":'''Virtual Presence Protocol''',
"ggf-ncp":'''GNU Generation Foundation NCP''',
"mrm":'''MRM''',
"entrust-aaas":'''entrust-aaas''',
"entrust-aams":'''entrust-aams''',
"xfr":'''XFR''',
"corba-iiop":'''CORBA IIOP''',
"corba-iiop-ssl":'''CORBA IIOP SSL''',
"mdc-portmapper":'''MDC Port Mapper''',
"hcp-wismar":'''Hardware Control Protocol Wismar''',
"asipregistry":'''asipregistry''',
"realm-rusd":'''ApplianceWare managment protocol''',
"nmap":'''NMAP''',
"vatp":'''Velazquez Application Transfer Protocol''',
"msexch-routing":'''MS Exchange Routing''',
"hyperwave-isp":'''Hyperwave-ISP''',
"connendp":'''almanid Connection Endpoint''',
"ha-cluster":'''ha-cluster''',
"ieee-mms-ssl":'''IEEE-MMS-SSL''',
"rushd":'''RUSHD''',
"uuidgen":'''UUIDGEN''',
"olsr":'''OLSR''',
"accessnetwork":'''Access Network''',
"epp":'''Extensible Provisioning Protocol''',
"lmp":'''Link Management Protocol (LMP)''',
"iris-beep":'''IRIS over BEEP''',
"elcsd":'''errlog copy/server daemon''',
"agentx":'''AgentX''',
"silc":'''SILC''',
"borland-dsj":'''Borland DSJ''',
"entrust-kmsh":'''Entrust Key Management Service Handler''',
"entrust-ash":'''Entrust Administration Service Handler''',
"cisco-tdp":'''Cisco TDP''',
"tbrpf":'''TBRPF''',
"iris-xpc":'''IRIS over XPC''',
"iris-xpcs":'''IRIS over XPCS''',
"iris-lwz":'''IRIS-LWZ''',
"netviewdm1":'''IBM NetView DM/6000 Server/Client''',
"netviewdm2":'''IBM NetView DM/6000 send/tcp''',
"netviewdm3":'''IBM NetView DM/6000 receive/tcp''',
"netgw":'''netGW''',
"netrcs":'''Network based Rev. Cont. Sys.''',
"flexlm":'''Flexible License Manager''',
"fujitsu-dev":'''Fujitsu Device Control''',
"ris-cm":'''Russell Info Sci Calendar Manager''',
"kerberos-adm":'''kerberos administration''',
"rfile":'''''',
"pump":'''''',
"qrh":'''''',
"rrh":'''''',
"tell":'''send''',
"nlogin":'''''',
"con":'''''',
"ns":'''''',
"rxe":'''''',
"quotad":'''''',
"cycleserv":'''''',
"omserv":'''''',
"webster":'''''',
"phonebook":'''phone''',
"vid":'''''',
"cadlock":'''''',
"rtip":'''''',
"cycleserv2":'''''',
"submit":'''''',
"rpasswd":'''''',
"entomb":'''''',
"wpages":'''''',
"multiling-http":'''Multiling HTTP''',
"wpgs":'''''',
"mdbs-daemon":'''
IANA assigned this well-formed service name as a replacement for "mdbs_daemon".''',
"mdbs_daemon":'''''',
"device":'''''',
"fcp-udp":'''FCP''',
"itm-mcell-s":'''itm-mcell-s''',
"pkix-3-ca-ra":'''PKIX-3 CA/RA''',
"netconf-ssh":'''NETCONF over SSH''',
"netconf-beep":'''NETCONF over BEEP''',
"netconfsoaphttp":'''NETCONF for SOAP over HTTPS''',
"netconfsoapbeep":'''NETCONF for SOAP over BEEP''',
"dhcp-failover2":'''dhcp-failover 2''',
"gdoi":'''GDOI''',
"iscsi":'''iSCSI''',
"owamp-control":'''OWAMP-Control''',
"twamp-control":'''Two-way Active Measurement Protocol (TWAMP) Control''',
"rsync":'''rsync''',
"iclcnet-locate":'''ICL coNETion locate server''',
"iclcnet-svinfo":'''ICL coNETion server info
IANA assigned this well-formed service name as a replacement for "iclcnet_svinfo".''',
"iclcnet_svinfo":'''ICL coNETion server info''',
"accessbuilder":'''AccessBuilder''',
"cddbp":'''CD Database Protocol''',
"omginitialrefs":'''OMG Initial Refs''',
"smpnameres":'''SMPNAMERES''',
"ideafarm-door":'''self documenting Telnet Door''',
"ideafarm-panic":'''self documenting Telnet Panic Door''',
"kink":'''Kerberized Internet Negotiation of Keys (KINK)''',
"xact-backup":'''xact-backup''',
"apex-mesh":'''APEX relay-relay service''',
"apex-edge":'''APEX endpoint-relay service''',
"ftps-data":'''ftp protocol, data, over TLS/SSL''',
"ftps":'''ftp protocol, control, over TLS/SSL''',
"nas":'''Netnews Administration System''',
"telnets":'''telnet protocol over TLS/SSL''',
"imaps":'''imap4 protocol over TLS/SSL''',
"pop3s":'''pop3 protocol over TLS/SSL (was spop3)''',
"vsinet":'''vsinet''',
"maitrd":'''''',
"busboy":'''''',
"garcon":'''''',
"puprouter":'''''',
"cadlock2":'''''',
"surf":'''surf''',
"exp1":'''RFC3692-style Experiment 1''',
"exp2":'''RFC3692-style Experiment 2''',
"blackjack":'''network blackjack''',
"cap":'''Calendar Access Protocol''',
"solid-mux":'''Solid Mux Server''',
"iad1":'''BBN IAD''',
"iad2":'''BBN IAD''',
"iad3":'''BBN IAD''',
"netinfo-local":'''local netinfo port''',
"activesync":'''ActiveSync Notifications''',
"mxxrlogin":'''MX-XR RPC''',
"nsstp":'''Nebula Secure Segment Transfer Protocol''',
"ams":'''AMS''',
"mtqp":'''Message Tracking Query Protocol''',
"sbl":'''Streamlined Blackhole''',
"netarx":'''Netarx Netcare''',
"danf-ak2":'''AK2 Product''',
"afrog":'''Subnet Roaming''',
"boinc-client":'''BOINC Client Control''',
"dcutility":'''Dev Consortium Utility''',
"fpitp":'''Fingerprint Image Transfer Protocol''',
"wfremotertm":'''WebFilter Remote Monitor''',
"neod1":'''Sun's NEO Object Request Broker''',
"neod2":'''Sun's NEO Object Request Broker''',
"td-postman":'''Tobit David Postman VPMN''',
"cma":'''CORBA Management Agent''',
"optima-vnet":'''Optima VNET''',
"ddt":'''Dynamic DNS Tools''',
"remote-as":'''Remote Assistant (RA)''',
"brvread":'''BRVREAD''',
"ansyslmd":'''ANSYS - License Manager''',
"vfo":'''VFO''',
"startron":'''STARTRON''',
"nim":'''nim''',
"nimreg":'''nimreg''',
"polestar":'''POLESTAR''',
"kiosk":'''KIOSK''',
"veracity":'''Veracity''',
"kyoceranetdev":'''KyoceraNetDev''',
"jstel":'''JSTEL''',
"syscomlan":'''SYSCOMLAN''',
"fpo-fns":'''FPO-FNS''',
"instl-boots":'''Installation Bootstrap Proto. Serv.
IANA assigned this well-formed service name as a replacement for "instl_boots".''',
"instl_boots":'''Installation Bootstrap Proto. Serv.''',
"instl-bootc":'''Installation Bootstrap Proto. Cli.
IANA assigned this well-formed service name as a replacement for "instl_bootc".''',
"instl_bootc":'''Installation Bootstrap Proto. Cli.''',
"cognex-insight":'''COGNEX-INSIGHT''',
"gmrupdateserv":'''GMRUpdateSERV''',
"bsquare-voip":'''BSQUARE-VOIP''',
"cardax":'''CARDAX''',
"bridgecontrol":'''Bridge Control''',
"warmspotMgmt":'''Warmspot Management Protocol''',
"rdrmshc":'''RDRMSHC''',
"dab-sti-c":'''DAB STI-C''',
"imgames":'''IMGames''',
"avocent-proxy":'''Avocent Proxy Protocol''',
"asprovatalk":'''ASPROVATalk''',
"socks":'''Socks''',
"pvuniwien":'''PVUNIWIEN''',
"amt-esd-prot":'''AMT-ESD-PROT''',
"ansoft-lm-1":'''Anasoft License Manager''',
"ansoft-lm-2":'''Anasoft License Manager''',
"webobjects":'''Web Objects''',
"cplscrambler-lg":'''CPL Scrambler Logging''',
"cplscrambler-in":'''CPL Scrambler Internal''',
"cplscrambler-al":'''CPL Scrambler Alarm Log''',
"ff-annunc":'''FF Annunciation''',
"ff-fms":'''FF Fieldbus Message Specification''',
"ff-sm":'''FF System Management''',
"obrpd":'''Open Business Reporting Protocol''',
"proofd":'''PROOFD''',
"rootd":'''ROOTD''',
"nicelink":'''NICELink''',
"cnrprotocol":'''Common Name Resolution Protocol''',
"sunclustermgr":'''Sun Cluster Manager''',
"rmiactivation":'''RMI Activation''',
"rmiregistry":'''RMI Registry''',
"mctp":'''MCTP''',
"pt2-discover":'''PT2-DISCOVER''',
"adobeserver-1":'''ADOBE SERVER 1''',
"adobeserver-2":'''ADOBE SERVER 2''',
"xrl":'''XRL''',
"ftranhc":'''FTRANHC''',
"isoipsigport-1":'''ISOIPSIGPORT-1''',
"isoipsigport-2":'''ISOIPSIGPORT-2''',
"ratio-adp":'''ratio-adp''',
"webadmstart":'''Start web admin server''',
"lmsocialserver":'''LM Social Server''',
"icp":'''Intelligent Communication Protocol''',
"ltp-deepspace":'''Licklider Transmission Protocol''',
"mini-sql":'''Mini SQL''',
"ardus-trns":'''ARDUS Transfer''',
"ardus-cntl":'''ARDUS Control''',
"ardus-mtrns":'''ARDUS Multicast Transfer''',
"sacred":'''SACRED''',
"bnetgame":'''Battle.net Chat/Game Protocol''',
"bnetfile":'''Battle.net File Transfer Protocol''',
"rmpp":'''Datalode RMPP''',
"availant-mgr":'''availant-mgr''',
"murray":'''Murray''',
"hpvmmcontrol":'''HP VMM Control''',
"hpvmmagent":'''HP VMM Agent''',
"hpvmmdata":'''HP VMM Agent''',
"kwdb-commn":'''KWDB Remote Communication''',
"saphostctrl":'''SAPHostControl over SOAP/HTTP''',
"saphostctrls":'''SAPHostControl over SOAP/HTTPS''',
"casp":'''CAC App Service Protocol''',
"caspssl":'''CAC App Service Protocol Encripted''',
"kvm-via-ip":'''KVM-via-IP Management Service''',
"dfn":'''Data Flow Network''',
"aplx":'''MicroAPL APLX''',
"omnivision":'''OmniVision Communication Service''',
"hhb-gateway":'''HHB Gateway Control''',
"trim":'''TRIM Workgroup Service''',
"encrypted-admin":'''encrypted admin requests
IANA assigned this well-formed service name as a replacement for "encrypted_admin".''',
"encrypted_admin":'''encrypted admin requests''',
"evm":'''Enterprise Virtual Manager''',
"autonoc":'''AutoNOC Network Operations Protocol''',
"mxomss":'''User Message Service''',
"edtools":'''User Discovery Service''',
"imyx":'''Infomatryx Exchange''',
"fuscript":'''Fusion Script''',
"x9-icue":'''X9 iCue Show Control''',
"audit-transfer":'''audit transfer''',
"capioverlan":'''CAPIoverLAN''',
"elfiq-repl":'''Elfiq Replication Service''',
"bvtsonar":'''BVT Sonar Service''',
"blaze":'''Blaze File Server''',
"unizensus":'''Unizensus Login Server''',
"winpoplanmess":'''Winpopup LAN Messenger''',
"c1222-acse":'''ANSI C12.22 Port''',
"resacommunity":'''Community Service''',
"nfa":'''Network File Access''',
"iascontrol-oms":'''iasControl OMS''',
"iascontrol":'''Oracle iASControl''',
"dbcontrol-oms":'''dbControl OMS''',
"oracle-oms":'''Oracle OMS''',
"olsv":'''DB Lite Mult-User Server''',
"health-polling":'''Health Polling''',
"health-trap":'''Health Trap''',
"sddp":'''SmartDialer Data Protocol''',
"qsm-proxy":'''QSM Proxy Service''',
"qsm-gui":'''QSM GUI Service''',
"qsm-remote":'''QSM RemoteExec''',
"cisco-ipsla":'''Cisco IP SLAs Control Protocol''',
"vchat":'''VChat Conference Service''',
"tripwire":'''TRIPWIRE''',
"atc-lm":'''AT+C License Manager''',
"atc-appserver":'''AT+C FmiApplicationServer''',
"dnap":'''DNA Protocol''',
"d-cinema-rrp":'''D-Cinema Request-Response''',
"fnet-remote-ui":'''FlashNet Remote Admin''',
"dossier":'''Dossier Server''',
"indigo-server":'''Indigo Home Server''',
"dkmessenger":'''DKMessenger Protocol''',
"sgi-storman":'''SGI Storage Manager''',
"b2n":'''Backup To Neighbor''',
"mc-client":'''Millicent Client Proxy''',
"3comnetman":'''3Com Net Management''',
"accelenet":'''AcceleNet Control''',
"llsurfup-http":'''LL Surfup HTTP''',
"llsurfup-https":'''LL Surfup HTTPS''',
"catchpole":'''Catchpole port''',
"mysql-cluster":'''MySQL Cluster Manager''',
"alias":'''Alias Service''',
"hp-webadmin":'''HP Web Admin''',
"unet":'''Unet Connection''',
"commlinx-avl":'''CommLinx GPS / AVL System''',
"gpfs":'''General Parallel File System''',
"caids-sensor":'''caids sensors channel''',
"fiveacross":'''Five Across Server''',
"openvpn":'''OpenVPN''',
"rsf-1":'''RSF-1 clustering''',
"netmagic":'''Network Magic''',
"carrius-rshell":'''Carrius Remote Access''',
"cajo-discovery":'''cajo reference discovery''',
"dmidi":'''DMIDI''',
"scol":'''SCOL''',
"nucleus-sand":'''Nucleus Sand Database Server''',
"caiccipc":'''caiccipc''',
"ssslic-mgr":'''License Validation''',
"ssslog-mgr":'''Log Request Listener''',
"accord-mgc":'''Accord-MGC''',
"anthony-data":'''Anthony Data''',
"metasage":'''MetaSage''',
"seagull-ais":'''SEAGULL AIS''',
"ipcd3":'''IPCD3''',
"eoss":'''EOSS''',
"groove-dpp":'''Groove DPP''',
"lupa":'''lupa''',
"mpc-lifenet":'''MPC LIFENET''',
"kazaa":'''KAZAA''',
"scanstat-1":'''scanSTAT 1.0''',
"etebac5":'''ETEBAC 5''',
"hpss-ndapi":'''HPSS NonDCE Gateway''',
"aeroflight-ads":'''AeroFlight-ADs''',
"aeroflight-ret":'''AeroFlight-Ret''',
"qt-serveradmin":'''QT SERVER ADMIN''',
"sweetware-apps":'''SweetWARE Apps''',
"nerv":'''SNI R&D network''',
"tgp":'''TrulyGlobal Protocol''',
"vpnz":'''VPNz''',
"slinkysearch":'''SLINKYSEARCH''',
"stgxfws":'''STGXFWS''',
"dns2go":'''DNS2Go''',
"florence":'''FLORENCE''',
"zented":'''ZENworks Tiered Electronic Distribution''',
"periscope":'''Periscope''',
"menandmice-lpm":'''menandmice-lpm''',
"univ-appserver":'''Universal App Server''',
"search-agent":'''Infoseek Search Agent''',
"mosaicsyssvc1":'''mosaicsyssvc1''',
"bvcontrol":'''bvcontrol''',
"tsdos390":'''tsdos390''',
"hacl-qs":'''hacl-qs''',
"nmsd":'''NMSD''',
"instantia":'''Instantia''',
"nessus":'''nessus''',
"nmasoverip":'''NMAS over IP''',
"serialgateway":'''SerialGateway''',
"isbconference1":'''isbconference1''',
"isbconference2":'''isbconference2''',
"payrouter":'''payrouter''',
"visionpyramid":'''VisionPyramid''',
"hermes":'''hermes''',
"mesavistaco":'''Mesa Vista Co''',
"swldy-sias":'''swldy-sias''',
"servergraph":'''servergraph''',
"bspne-pcc":'''bspne-pcc''',
"q55-pcc":'''q55-pcc''',
"de-noc":'''de-noc''',
"de-cache-query":'''de-cache-query''',
"de-server":'''de-server''',
"shockwave2":'''Shockwave 2''',
"opennl":'''Open Network Library''',
"opennl-voice":'''Open Network Library Voice''',
"ibm-ssd":'''ibm-ssd''',
"mpshrsv":'''mpshrsv''',
"qnts-orb":'''QNTS-ORB''',
"dka":'''dka''',
"prat":'''PRAT''',
"dssiapi":'''DSSIAPI''',
"dellpwrappks":'''DELLPWRAPPKS''',
"epc":'''eTrust Policy Compliance''',
"propel-msgsys":'''PROPEL-MSGSYS''',
"watilapp":'''WATiLaPP''',
"opsmgr":'''Microsoft Operations Manager''',
"excw":'''eXcW''',
"cspmlockmgr":'''CSPMLockMgr''',
"emc-gateway":'''EMC-Gateway''',
"t1distproc":'''t1distproc''',
"ivcollector":'''ivcollector''',
"ivmanager":'''ivmanager''',
"miva-mqs":'''mqs''',
"dellwebadmin-1":'''Dell Web Admin 1''',
"dellwebadmin-2":'''Dell Web Admin 2''',
"pictrography":'''Pictrography''',
"healthd":'''healthd''',
"emperion":'''Emperion''',
"productinfo":'''Product Information''',
"iee-qfx":'''IEE-QFX''',
"neoiface":'''neoiface''',
"netuitive":'''netuitive''',
"routematch":'''RouteMatch Com''',
"navbuddy":'''NavBuddy''',
"jwalkserver":'''JWalkServer''',
"winjaserver":'''WinJaServer''',
"seagulllms":'''SEAGULLLMS''',
"dsdn":'''dsdn''',
"pkt-krb-ipsec":'''PKT-KRB-IPSec''',
"cmmdriver":'''CMMdriver''',
"ehtp":'''End-by-Hop Transmission Protocol''',
"dproxy":'''dproxy''',
"sdproxy":'''sdproxy''',
"lpcp":'''lpcp''',
"hp-sci":'''hp-sci''',
"h323hostcallsc":'''H323 Host Call Secure''',
"ci3-software-1":'''CI3-Software-1''',
"ci3-software-2":'''CI3-Software-2''',
"sftsrv":'''sftsrv''',
"boomerang":'''Boomerang''',
"pe-mike":'''pe-mike''',
"re-conn-proto":'''RE-Conn-Proto''',
"pacmand":'''Pacmand''',
"odsi":'''Optical Domain Service Interconnect (ODSI)''',
"jtag-server":'''JTAG server''',
"husky":'''Husky''',
"rxmon":'''RxMon''',
"sti-envision":'''STI Envision''',
"bmc-patroldb":'''BMC_PATROLDB
IANA assigned this well-formed service name as a replacement for "bmc_patroldb".''',
"bmc_patroldb":'''BMC_PATROLDB''',
"pdps":'''Photoscript Distributed Printing System''',
"els":'''E.L.S., Event Listener Service''',
"exbit-escp":'''Exbit-ESCP''',
"vrts-ipcserver":'''vrts-ipcserver''',
"krb5gatekeeper":'''krb5gatekeeper''',
"amx-icsp":'''AMX-ICSP''',
"amx-axbnet":'''AMX-AXBNET''',
"pip":'''PIP''',
"novation":'''Novation''',
"brcd":'''brcd''',
"delta-mcp":'''delta-mcp''',
"dx-instrument":'''DX-Instrument''',
"wimsic":'''WIMSIC''',
"ultrex":'''Ultrex''',
"ewall":'''EWALL''',
"netdb-export":'''netdb-export''',
"streetperfect":'''StreetPerfect''',
"intersan":'''intersan''',
"pcia-rxp-b":'''PCIA RXP-B''',
"passwrd-policy":'''Password Policy''',
"writesrv":'''writesrv''',
"digital-notary":'''Digital Notary Protocol''',
"ischat":'''Instant Service Chat''',
"menandmice-dns":'''menandmice DNS''',
"wmc-log-svc":'''WMC-log-svr''',
"kjtsiteserver":'''kjtsiteserver''',
"naap":'''NAAP''',
"qubes":'''QuBES''',
"esbroker":'''ESBroker''',
"re101":'''re101''',
"icap":'''ICAP''',
"vpjp":'''VPJP''',
"alta-ana-lm":'''Alta Analytics License Manager''',
"bbn-mmc":'''multi media conferencing''',
"bbn-mmx":'''multi media conferencing''',
"sbook":'''Registration Network Protocol''',
"editbench":'''Registration Network Protocol''',
"equationbuilder":'''Digital Tool Works (MIT)''',
"lotusnote":'''Lotus Note''',
"relief":'''Relief Consulting''',
"XSIP-network":'''Five Across XSIP Network''',
"intuitive-edge":'''Intuitive Edge''',
"cuillamartin":'''CuillaMartin Company''',
"pegboard":'''Electronic PegBoard''',
"connlcli":'''CONNLCLI''',
"ftsrv":'''FTSRV''',
"mimer":'''MIMER''',
"linx":'''LinX''',
"timeflies":'''TimeFlies''',
"ndm-requester":'''Network DataMover Requester''',
"ndm-server":'''Network DataMover Server''',
"adapt-sna":'''Network Software Associates''',
"netware-csp":'''Novell NetWare Comm Service Platform''',
"dcs":'''DCS''',
"screencast":'''ScreenCast''',
"gv-us":'''GlobalView to Unix Shell''',
"us-gv":'''Unix Shell to GlobalView''',
"fc-cli":'''Fujitsu Config Protocol''',
"fc-ser":'''Fujitsu Config Protocol''',
"chromagrafx":'''Chromagrafx''',
"molly":'''EPI Software Systems''',
"bytex":'''Bytex''',
"ibm-pps":'''IBM Person to Person Software''',
"cichlid":'''Cichlid License Manager''',
"elan":'''Elan License Manager''',
"dbreporter":'''Integrity Solutions''',
"telesis-licman":'''Telesis Network License Manager''',
"apple-licman":'''Apple Network License Manager''',
"udt-os":'''udt_os
IANA assigned this well-formed service name as a replacement for "udt_os".''',
"udt_os":'''udt_os''',
"gwha":'''GW Hannaway Network License Manager''',
"os-licman":'''Objective Solutions License Manager''',
"atex-elmd":'''Atex Publishing License Manager
IANA assigned this well-formed service name as a replacement for "atex_elmd".''',
"atex_elmd":'''Atex Publishing License Manager''',
"checksum":'''CheckSum License Manager''',
"cadsi-lm":'''Computer Aided Design Software Inc LM''',
"objective-dbc":'''Objective Solutions DataBase Cache''',
"iclpv-dm":'''Document Manager''',
"iclpv-sc":'''Storage Controller''',
"iclpv-sas":'''Storage Access Server''',
"iclpv-pm":'''Print Manager''',
"iclpv-nls":'''Network Log Server''',
"iclpv-nlc":'''Network Log Client''',
"iclpv-wsm":'''PC Workstation Manager software''',
"dvl-activemail":'''DVL Active Mail''',
"audio-activmail":'''Audio Active Mail''',
"video-activmail":'''Video Active Mail''',
"cadkey-licman":'''Cadkey License Manager''',
"cadkey-tablet":'''Cadkey Tablet Daemon''',
"goldleaf-licman":'''Goldleaf License Manager''',
"prm-sm-np":'''Prospero Resource Manager''',
"prm-nm-np":'''Prospero Resource Manager''',
"igi-lm":'''Infinite Graphics License Manager''',
"ibm-res":'''IBM Remote Execution Starter''',
"netlabs-lm":'''NetLabs License Manager''',
"dbsa-lm":'''DBSA License Manager''',
"sophia-lm":'''Sophia License Manager''',
"here-lm":'''Here License Manager''',
"hiq":'''HiQ License Manager''',
"af":'''AudioFile''',
"innosys":'''InnoSys''',
"innosys-acl":'''Innosys-ACL''',
"ibm-mqseries":'''IBM MQSeries''',
"dbstar":'''DBStar''',
"novell-lu6-2":'''Novell LU6.2
IANA assigned this well-formed service name as a replacement for "novell-lu6.2".''',
"novell-lu6.2":'''Novell LU6.2''',
"timbuktu-srv1":'''Timbuktu Service 1 Port''',
"timbuktu-srv2":'''Timbuktu Service 2 Port''',
"timbuktu-srv3":'''Timbuktu Service 3 Port''',
"timbuktu-srv4":'''Timbuktu Service 4 Port''',
"gandalf-lm":'''Gandalf License Manager''',
"autodesk-lm":'''Autodesk License Manager''',
"essbase":'''Essbase Arbor Software''',
"hybrid":'''Hybrid Encryption Protocol''',
"zion-lm":'''Zion Software License Manager''',
"sais":'''Satellite-data Acquisition System 1''',
"mloadd":'''mloadd monitoring tool''',
"informatik-lm":'''Informatik License Manager''',
"nms":'''Hypercom NMS''',
"tpdu":'''Hypercom TPDU''',
"rgtp":'''Reverse Gossip Transport''',
"blueberry-lm":'''Blueberry Software License Manager''',
"ms-sql-s":'''Microsoft-SQL-Server''',
"ms-sql-m":'''Microsoft-SQL-Monitor''',
"ibm-cics":'''IBM CICS''',
"saism":'''Satellite-data Acquisition System 2''',
"tabula":'''Tabula''',
"eicon-server":'''Eicon Security Agent/Server''',
"eicon-x25":'''Eicon X25/SNA Gateway''',
"eicon-slp":'''Eicon Service Location Protocol''',
"cadis-1":'''Cadis License Management''',
"cadis-2":'''Cadis License Management''',
"ies-lm":'''Integrated Engineering Software''',
"marcam-lm":'''Marcam License Management''',
"proxima-lm":'''Proxima License Manager''',
"ora-lm":'''Optical Research Associates License Manager''',
"apri-lm":'''Applied Parallel Research LM''',
"oc-lm":'''OpenConnect License Manager''',
"peport":'''PEport''',
"dwf":'''Tandem Distributed Workbench Facility''',
"infoman":'''IBM Information Management''',
"gtegsc-lm":'''GTE Government Systems License Man''',
"genie-lm":'''Genie License Manager''',
"interhdl-elmd":'''interHDL License Manager
IANA assigned this well-formed service name as a replacement for "interhdl_elmd".''',
"interhdl_elmd":'''interHDL License Manager''',
"esl-lm":'''ESL License Manager''',
"dca":'''DCA''',
"valisys-lm":'''Valisys License Manager''',
"nrcabq-lm":'''Nichols Research Corp.''',
"proshare1":'''Proshare Notebook Application''',
"proshare2":'''Proshare Notebook Application''',
"ibm-wrless-lan":'''IBM Wireless LAN
IANA assigned this well-formed service name as a replacement for "ibm_wrless_lan".''',
"ibm_wrless_lan":'''IBM Wireless LAN''',
"world-lm":'''World License Manager''',
"nucleus":'''Nucleus''',
"msl-lmd":'''MSL License Manager
IANA assigned this well-formed service name as a replacement for "msl_lmd".''',
"msl_lmd":'''MSL License Manager''',
"pipes":'''Pipes Platform''',
"oceansoft-lm":'''Ocean Software License Manager''',
"csdmbase":'''CSDMBASE''',
"csdm":'''CSDM''',
"aal-lm":'''Active Analysis Limited License Manager''',
"uaiact":'''Universal Analytics''',
"csdmbase":'''csdmbase''',
"csdm":'''csdm''',
"openmath":'''OpenMath''',
"telefinder":'''Telefinder''',
"taligent-lm":'''Taligent License Manager''',
"clvm-cfg":'''clvm-cfg''',
"ms-sna-server":'''ms-sna-server''',
"ms-sna-base":'''ms-sna-base''',
"dberegister":'''dberegister''',
"pacerforum":'''PacerForum''',
"airs":'''AIRS''',
"miteksys-lm":'''Miteksys License Manager''',
"afs":'''AFS License Manager''',
"confluent":'''Confluent License Manager''',
"lansource":'''LANSource''',
"nms-topo-serv":'''nms_topo_serv
IANA assigned this well-formed service name as a replacement for "nms_topo_serv".''',
"nms_topo_serv":'''nms_topo_serv''',
"localinfosrvr":'''LocalInfoSrvr''',
"docstor":'''DocStor''',
"dmdocbroker":'''dmdocbroker''',
"insitu-conf":'''insitu-conf''',
"stone-design-1":'''stone-design-1''',
"netmap-lm":'''netmap_lm
IANA assigned this well-formed service name as a replacement for "netmap_lm".''',
"netmap_lm":'''netmap_lm''',
"ica":'''ica''',
"cvc":'''cvc''',
"liberty-lm":'''liberty-lm''',
"rfx-lm":'''rfx-lm''',
"sybase-sqlany":'''Sybase SQL Any''',
"fhc":'''Federico Heinz Consultora''',
"vlsi-lm":'''VLSI License Manager''',
"saiscm":'''Satellite-data Acquisition System 3''',
"shivadiscovery":'''Shiva''',
"imtc-mcs":'''Databeam''',
"evb-elm":'''EVB Software Engineering License Manager''',
"funkproxy":'''Funk Software, Inc.''',
"utcd":'''Universal Time daemon (utcd)''',
"symplex":'''symplex''',
"diagmond":'''diagmond''',
"robcad-lm":'''Robcad, Ltd. License Manager''',
"mvx-lm":'''Midland Valley Exploration Ltd. Lic. Man.''',
"3l-l1":'''3l-l1''',
"wins":'''Microsoft's Windows Internet Name Service''',
"fujitsu-dtc":'''Fujitsu Systems Business of America, Inc''',
"fujitsu-dtcns":'''Fujitsu Systems Business of America, Inc''',
"ifor-protocol":'''ifor-protocol''',
"vpad":'''Virtual Places Audio data''',
"vpac":'''Virtual Places Audio control''',
"vpvd":'''Virtual Places Video data''',
"vpvc":'''Virtual Places Video control''',
"atm-zip-office":'''atm zip office''',
"ncube-lm":'''nCube License Manager''',
"ricardo-lm":'''Ricardo North America License Manager''',
"cichild-lm":'''cichild''',
"ingreslock":'''ingres''',
"orasrv":'''oracle''',
"prospero-np":'''Prospero Directory Service non-priv''',
"pdap-np":'''Prospero Data Access Prot non-priv''',
"tlisrv":'''oracle''',
"coauthor":'''oracle''',
"rap-service":'''rap-service''',
"rap-listen":'''rap-listen''',
"miroconnect":'''miroconnect''',
"virtual-places":'''Virtual Places Software''',
"micromuse-lm":'''micromuse-lm''',
"ampr-info":'''ampr-info''',
"ampr-inter":'''ampr-inter''',
"sdsc-lm":'''isi-lm''',
"3ds-lm":'''3ds-lm''',
"intellistor-lm":'''Intellistor License Manager''',
"rds":'''rds''',
"rds2":'''rds2''',
"gridgen-elmd":'''gridgen-elmd''',
"simba-cs":'''simba-cs''',
"aspeclmd":'''aspeclmd''',
"vistium-share":'''vistium-share''',
"abbaccuray":'''abbaccuray''',
"laplink":'''laplink''',
"axon-lm":'''Axon License Manager''',
"shivahose":'''Shiva Hose''',
"3m-image-lm":'''Image Storage license manager 3M Company''',
"hecmtl-db":'''HECMTL-DB''',
"pciarray":'''pciarray''',
"sna-cs":'''sna-cs''',
"caci-lm":'''CACI Products Company License Manager''',
"livelan":'''livelan''',
"veritas-pbx":'''VERITAS Private Branch Exchange
IANA assigned this well-formed service name as a replacement for "veritas_pbx".''',
"veritas_pbx":'''VERITAS Private Branch Exchange''',
"arbortext-lm":'''ArborText License Manager''',
"xingmpeg":'''xingmpeg''',
"web2host":'''web2host''',
"asci-val":'''ASCI-RemoteSHADOW''',
"facilityview":'''facilityview''',
"pconnectmgr":'''pconnectmgr''',
"cadabra-lm":'''Cadabra License Manager''',
"pay-per-view":'''Pay-Per-View''',
"winddlb":'''WinDD''',
"corelvideo":'''CORELVIDEO''',
"jlicelmd":'''jlicelmd''',
"tsspmap":'''tsspmap''',
"ets":'''ets''',
"orbixd":'''orbixd''',
"rdb-dbs-disp":'''Oracle Remote Data Base''',
"chip-lm":'''Chipcom License Manager''',
"itscomm-ns":'''itscomm-ns''',
"mvel-lm":'''mvel-lm''',
"oraclenames":'''oraclenames''',
"moldflow-lm":'''Moldflow License Manager''',
"hypercube-lm":'''hypercube-lm''',
"jacobus-lm":'''Jacobus License Manager''',
"ioc-sea-lm":'''ioc-sea-lm''',
"tn-tl-r1":'''tn-tl-r1''',
"mil-2045-47001":'''MIL-2045-47001''',
"msims":'''MSIMS''',
"simbaexpress":'''simbaexpress''',
"tn-tl-fd2":'''tn-tl-fd2''',
"intv":'''intv''',
"ibm-abtact":'''ibm-abtact''',
"pra-elmd":'''pra_elmd
IANA assigned this well-formed service name as a replacement for "pra_elmd".''',
"pra_elmd":'''pra_elmd''',
"triquest-lm":'''triquest-lm''',
"vqp":'''VQP''',
"gemini-lm":'''gemini-lm''',
"ncpm-pm":'''ncpm-pm''',
"commonspace":'''commonspace''',
"mainsoft-lm":'''mainsoft-lm''',
"sixtrak":'''sixtrak''',
"radio":'''radio''',
"radio-sm":'''radio-sm''',
"orbplus-iiop":'''orbplus-iiop''',
"picknfs":'''picknfs''',
"simbaservices":'''simbaservices''',
"issd":'''issd''',
"aas":'''aas''',
"inspect":'''inspect''',
"picodbc":'''pickodbc''',
"icabrowser":'''icabrowser''',
"slp":'''Salutation Manager (Salutation Protocol)''',
"slm-api":'''Salutation Manager (SLM-API)''',
"stt":'''stt''',
"smart-lm":'''Smart Corp. License Manager''',
"isysg-lm":'''isysg-lm''',
"taurus-wh":'''taurus-wh''',
"ill":'''Inter Library Loan''',
"netbill-trans":'''NetBill Transaction Server''',
"netbill-keyrep":'''NetBill Key Repository''',
"netbill-cred":'''NetBill Credential Server''',
"netbill-auth":'''NetBill Authorization Server''',
"netbill-prod":'''NetBill Product Server''',
"nimrod-agent":'''Nimrod Inter-Agent Communication''',
"skytelnet":'''skytelnet''',
"xs-openstorage":'''xs-openstorage''',
"faxportwinport":'''faxportwinport''',
"softdataphone":'''softdataphone''',
"ontime":'''ontime''',
"jaleosnd":'''jaleosnd''',
"udp-sr-port":'''udp-sr-port''',
"svs-omagent":'''svs-omagent''',
"shockwave":'''Shockwave''',
"t128-gateway":'''T.128 Gateway''',
"lontalk-norm":'''LonTalk normal''',
"lontalk-urgnt":'''LonTalk urgent''',
"oraclenet8cman":'''Oracle Net8 Cman''',
"visitview":'''Visit view''',
"pammratc":'''PAMMRATC''',
"pammrpc":'''PAMMRPC''',
"loaprobe":'''Log On America Probe''',
"edb-server1":'''EDB Server 1''',
"isdc":'''ISP shared public data control''',
"islc":'''ISP shared local data control''',
"ismc":'''ISP shared management control''',
"cert-initiator":'''cert-initiator''',
"cert-responder":'''cert-responder''',
"invision":'''InVision''',
"isis-am":'''isis-am''',
"isis-ambc":'''isis-ambc''',
"saiseh":'''Satellite-data Acquisition System 4''',
"sightline":'''SightLine''',
"sa-msg-port":'''sa-msg-port''',
"rsap":'''rsap''',
"concurrent-lm":'''concurrent-lm''',
"kermit":'''kermit''',
"nkd":'''nkdn''',
"shiva-confsrvr":'''shiva_confsrvr
IANA assigned this well-formed service name as a replacement for "shiva_confsrvr".''',
"shiva_confsrvr":'''shiva_confsrvr''',
"xnmp":'''xnmp''',
"alphatech-lm":'''alphatech-lm''',
"stargatealerts":'''stargatealerts''',
"dec-mbadmin":'''dec-mbadmin''',
"dec-mbadmin-h":'''dec-mbadmin-h''',
"fujitsu-mmpdc":'''fujitsu-mmpdc''',
"sixnetudr":'''sixnetudr''',
"sg-lm":'''Silicon Grail License Manager''',
"skip-mc-gikreq":'''skip-mc-gikreq''',
"netview-aix-1":'''netview-aix-1''',
"netview-aix-2":'''netview-aix-2''',
"netview-aix-3":'''netview-aix-3''',
"netview-aix-4":'''netview-aix-4''',
"netview-aix-5":'''netview-aix-5''',
"netview-aix-6":'''netview-aix-6''',
"netview-aix-7":'''netview-aix-7''',
"netview-aix-8":'''netview-aix-8''',
"netview-aix-9":'''netview-aix-9''',
"netview-aix-10":'''netview-aix-10''',
"netview-aix-11":'''netview-aix-11''',
"netview-aix-12":'''netview-aix-12''',
"proshare-mc-1":'''Intel Proshare Multicast''',
"proshare-mc-2":'''Intel Proshare Multicast''',
"pdp":'''Pacific Data Products''',
"netcomm1":'''netcomm1''',
"groupwise":'''groupwise''',
"prolink":'''prolink''',
"darcorp-lm":'''darcorp-lm''',
"microcom-sbp":'''microcom-sbp''',
"sd-elmd":'''sd-elmd''',
"lanyon-lantern":'''lanyon-lantern''',
"ncpm-hip":'''ncpm-hip''',
"snaresecure":'''SnareSecure''',
"n2nremote":'''n2nremote''',
"cvmon":'''cvmon''',
"nsjtp-ctrl":'''nsjtp-ctrl''',
"nsjtp-data":'''nsjtp-data''',
"firefox":'''firefox''',
"ng-umds":'''ng-umds''',
"empire-empuma":'''empire-empuma''',
"sstsys-lm":'''sstsys-lm''',
"rrirtr":'''rrirtr''',
"rrimwm":'''rrimwm''',
"rrilwm":'''rrilwm''',
"rrifmm":'''rrifmm''',
"rrisat":'''rrisat''',
"rsvp-encap-1":'''RSVP-ENCAPSULATION-1''',
"rsvp-encap-2":'''RSVP-ENCAPSULATION-2''',
"mps-raft":'''mps-raft''',
"l2f":'''l2f''',
"l2tp":'''l2tp''',
"deskshare":'''deskshare''',
"hb-engine":'''hb-engine''',
"bcs-broker":'''bcs-broker''',
"slingshot":'''slingshot''',
"jetform":'''jetform''',
"vdmplay":'''vdmplay''',
"gat-lmd":'''gat-lmd''',
"centra":'''centra''',
"impera":'''impera''',
"pptconference":'''pptconference''',
"registrar":'''resource monitoring service''',
"conferencetalk":'''ConferenceTalk''',
"sesi-lm":'''sesi-lm''',
"houdini-lm":'''houdini-lm''',
"xmsg":'''xmsg''',
"fj-hdnet":'''fj-hdnet''',
"h323gatedisc":'''h323gatedisc''',
"h323gatestat":'''h323gatestat''',
"h323hostcall":'''h323hostcall''',
"caicci":'''caicci''',
"hks-lm":'''HKS License Manager''',
"pptp":'''pptp''',
"csbphonemaster":'''csbphonemaster''',
"iden-ralp":'''iden-ralp''',
"iberiagames":'''IBERIAGAMES''',
"winddx":'''winddx''',
"telindus":'''TELINDUS''',
"citynl":'''CityNL License Management''',
"roketz":'''roketz''',
"msiccp":'''MSICCP''',
"proxim":'''proxim''',
"siipat":'''SIMS - SIIPAT Protocol for Alarm Transmission''',
"cambertx-lm":'''Camber Corporation License Management''',
"privatechat":'''PrivateChat''',
"street-stream":'''street-stream''',
"ultimad":'''ultimad''',
"gamegen1":'''GameGen1''',
"webaccess":'''webaccess''',
"encore":'''encore''',
"cisco-net-mgmt":'''cisco-net-mgmt''',
"3Com-nsd":'''3Com-nsd''',
"cinegrfx-lm":'''Cinema Graphics License Manager''',
"ncpm-ft":'''ncpm-ft''',
"remote-winsock":'''remote-winsock''',
"ftrapid-1":'''ftrapid-1''',
"ftrapid-2":'''ftrapid-2''',
"oracle-em1":'''oracle-em1''',
"aspen-services":'''aspen-services''',
"sslp":'''Simple Socket Library's PortMaster''',
"swiftnet":'''SwiftNet''',
"lofr-lm":'''Leap of Faith Research License Manager''',
"predatar-comms":'''Predatar Comms Service''',
"oracle-em2":'''oracle-em2''',
"ms-streaming":'''ms-streaming''',
"capfast-lmd":'''capfast-lmd''',
"cnhrp":'''cnhrp''',
"tftp-mcast":'''tftp-mcast''',
"spss-lm":'''SPSS License Manager''',
"www-ldap-gw":'''www-ldap-gw''',
"cft-0":'''cft-0''',
"cft-1":'''cft-1''',
"cft-2":'''cft-2''',
"cft-3":'''cft-3''',
"cft-4":'''cft-4''',
"cft-5":'''cft-5''',
"cft-6":'''cft-6''',
"cft-7":'''cft-7''',
"bmc-net-adm":'''bmc-net-adm''',
"bmc-net-svc":'''bmc-net-svc''',
"vaultbase":'''vaultbase''',
"essweb-gw":'''EssWeb Gateway''',
"kmscontrol":'''KMSControl''',
"global-dtserv":'''global-dtserv''',
"femis":'''Federal Emergency Management Information System''',
"powerguardian":'''powerguardian''',
"prodigy-intrnet":'''prodigy-internet''',
"pharmasoft":'''pharmasoft''',
"dpkeyserv":'''dpkeyserv''',
"answersoft-lm":'''answersoft-lm''',
"hp-hcip":'''hp-hcip''',
"finle-lm":'''Finle License Manager''',
"windlm":'''Wind River Systems License Manager''',
"funk-logger":'''funk-logger''',
"funk-license":'''funk-license''',
"psmond":'''psmond''',
"hello":'''hello''',
"nmsp":'''Narrative Media Streaming Protocol''',
"ea1":'''EA1''',
"ibm-dt-2":'''ibm-dt-2''',
"rsc-robot":'''rsc-robot''',
"cera-bcm":'''cera-bcm''',
"dpi-proxy":'''dpi-proxy''',
"vocaltec-admin":'''Vocaltec Server Administration''',
"uma":'''UMA''',
"etp":'''Event Transfer Protocol''',
"netrisk":'''NETRISK''',
"ansys-lm":'''ANSYS-License manager''',
"msmq":'''Microsoft Message Que''',
"concomp1":'''ConComp1''',
"hp-hcip-gwy":'''HP-HCIP-GWY''',
"enl":'''ENL''',
"enl-name":'''ENL-Name''',
"musiconline":'''Musiconline''',
"fhsp":'''Fujitsu Hot Standby Protocol''',
"oracle-vp2":'''Oracle-VP2''',
"oracle-vp1":'''Oracle-VP1''',
"jerand-lm":'''Jerand License Manager''',
"scientia-sdb":'''Scientia-SDB''',
"radius":'''RADIUS''',
"radius-acct":'''RADIUS Accounting''',
"tdp-suite":'''TDP Suite''',
"mmpft":'''MMPFT''',
"harp":'''HARP''',
"rkb-oscs":'''RKB-OSCS''',
"etftp":'''Enhanced Trivial File Transfer Protocol''',
"plato-lm":'''Plato License Manager''',
"mcagent":'''mcagent''',
"donnyworld":'''donnyworld''',
"es-elmd":'''es-elmd''',
"unisys-lm":'''Unisys Natural Language License Manager''',
"metrics-pas":'''metrics-pas''',
"direcpc-video":'''DirecPC Video''',
"ardt":'''ARDT''',
"asi":'''ASI''',
"itm-mcell-u":'''itm-mcell-u''',
"optika-emedia":'''Optika eMedia''',
"net8-cman":'''Oracle Net8 CMan Admin''',
"myrtle":'''Myrtle''',
"tht-treasure":'''ThoughtTreasure''',
"udpradio":'''udpradio''',
"ardusuni":'''ARDUS Unicast''',
"ardusmul":'''ARDUS Multicast''',
"ste-smsc":'''ste-smsc''',
"csoft1":'''csoft1''',
"talnet":'''TALNET''',
"netopia-vo1":'''netopia-vo1''',
"netopia-vo2":'''netopia-vo2''',
"netopia-vo3":'''netopia-vo3''',
"netopia-vo4":'''netopia-vo4''',
"netopia-vo5":'''netopia-vo5''',
"direcpc-dll":'''DirecPC-DLL''',
"altalink":'''altalink''',
"tunstall-pnc":'''Tunstall PNC''',
"slp-notify":'''SLP Notification''',
"fjdocdist":'''fjdocdist''',
"alpha-sms":'''ALPHA-SMS''',
"gsi":'''GSI''',
"ctcd":'''ctcd''',
"virtual-time":'''Virtual Time''',
"vids-avtp":'''VIDS-AVTP''',
"buddy-draw":'''Buddy Draw''',
"fiorano-rtrsvc":'''Fiorano RtrSvc''',
"fiorano-msgsvc":'''Fiorano MsgSvc''',
"datacaptor":'''DataCaptor''',
"privateark":'''PrivateArk''',
"gammafetchsvr":'''Gamma Fetcher Server''',
"sunscalar-svc":'''SunSCALAR Services''',
"lecroy-vicp":'''LeCroy VICP''',
"mysql-cm-agent":'''MySQL Cluster Manager Agent''',
"msnp":'''MSNP''',
"paradym-31port":'''Paradym 31 Port''',
"entp":'''ENTP''',
"swrmi":'''swrmi''',
"udrive":'''UDRIVE''',
"viziblebrowser":'''VizibleBrowser''',
"transact":'''TransAct''',
"sunscalar-dns":'''SunSCALAR DNS Service''',
"canocentral0":'''Cano Central 0''',
"canocentral1":'''Cano Central 1''',
"fjmpjps":'''Fjmpjps''',
"fjswapsnp":'''Fjswapsnp''',
"westell-stats":'''westell stats''',
"ewcappsrv":'''ewcappsrv''',
"hp-webqosdb":'''hp-webqosdb''',
"drmsmc":'''drmsmc''',
"nettgain-nms":'''NettGain NMS''',
"vsat-control":'''Gilat VSAT Control''',
"ibm-mqseries2":'''IBM WebSphere MQ Everyplace''',
"ecsqdmn":'''CA eTrust Common Services''',
"ibm-mqisdp":'''IBM MQSeries SCADA''',
"idmaps":'''Internet Distance Map Svc''',
"vrtstrapserver":'''Veritas Trap Server''',
"leoip":'''Leonardo over IP''',
"filex-lport":'''FileX Listening Port''',
"ncconfig":'''NC Config Port''',
"unify-adapter":'''Unify Web Adapter Service''',
"wilkenlistener":'''wilkenListener''',
"childkey-notif":'''ChildKey Notification''',
"childkey-ctrl":'''ChildKey Control''',
"elad":'''ELAD Protocol''',
"o2server-port":'''O2Server Port''',
"b-novative-ls":'''b-novative license server''',
"metaagent":'''MetaAgent''',
"cymtec-port":'''Cymtec secure management''',
"mc2studios":'''MC2Studios''',
"ssdp":'''SSDP''',
"fjicl-tep-a":'''Fujitsu ICL Terminal Emulator Program A''',
"fjicl-tep-b":'''Fujitsu ICL Terminal Emulator Program B''',
"linkname":'''Local Link Name Resolution''',
"fjicl-tep-c":'''Fujitsu ICL Terminal Emulator Program C''',
"sugp":'''Secure UP.Link Gateway Protocol''',
"tpmd":'''TPortMapperReq''',
"intrastar":'''IntraSTAR''',
"dawn":'''Dawn''',
"global-wlink":'''Global World Link''',
"ultrabac":'''UltraBac Software communications port''',
"mtp":'''Starlight Networks Multimedia Transport Protocol''',
"rhp-iibp":'''rhp-iibp''',
"armadp":'''armadp''',
"elm-momentum":'''Elm-Momentum''',
"facelink":'''FACELINK''',
"persona":'''Persoft Persona''',
"noagent":'''nOAgent''',
"can-nds":'''IBM Tivole Directory Service - NDS''',
"can-dch":'''IBM Tivoli Directory Service - DCH''',
"can-ferret":'''IBM Tivoli Directory Service - FERRET''',
"noadmin":'''NoAdmin''',
"tapestry":'''Tapestry''',
"spice":'''SPICE''',
"xiip":'''XIIP''',
"discovery-port":'''Surrogate Discovery Port''',
"egs":'''Evolution Game Server''',
"videte-cipc":'''Videte CIPC Port''',
"emsd-port":'''Expnd Maui Srvr Dscovr''',
"bandwiz-system":'''Bandwiz System - Server''',
"driveappserver":'''Drive AppServer''',
"amdsched":'''AMD SCHED''',
"ctt-broker":'''CTT Broker''',
"xmapi":'''IBM LM MT Agent''',
"xaapi":'''IBM LM Appl Agent''',
"macromedia-fcs":'''Macromedia Flash Communications Server MX''',
"jetcmeserver":'''JetCmeServer Server Port''',
"jwserver":'''JetVWay Server Port''',
"jwclient":'''JetVWay Client Port''',
"jvserver":'''JetVision Server Port''',
"jvclient":'''JetVision Client Port''',
"dic-aida":'''DIC-Aida''',
"res":'''Real Enterprise Service''',
"beeyond-media":'''Beeyond Media''',
"close-combat":'''close-combat''',
"dialogic-elmd":'''dialogic-elmd''',
"tekpls":'''tekpls''',
"sentinelsrm":'''SentinelSRM''',
"eye2eye":'''eye2eye''',
"ismaeasdaqlive":'''ISMA Easdaq Live''',
"ismaeasdaqtest":'''ISMA Easdaq Test''',
"bcs-lmserver":'''bcs-lmserver''',
"mpnjsc":'''mpnjsc''',
"rapidbase":'''Rapid Base''',
"abr-api":'''ABR-API (diskbridge)''',
"abr-secure":'''ABR-Secure Data (diskbridge)''',
"vrtl-vmf-ds":'''Vertel VMF DS''',
"unix-status":'''unix-status''',
"dxadmind":'''CA Administration Daemon''',
"simp-all":'''SIMP Channel''',
"nasmanager":'''Merit DAC NASmanager''',
"bts-appserver":'''BTS APPSERVER''',
"biap-mp":'''BIAP-MP''',
"webmachine":'''WebMachine''',
"solid-e-engine":'''SOLID E ENGINE''',
"tivoli-npm":'''Tivoli NPM''',
"slush":'''Slush''',
"sns-quote":'''SNS Quote''',
"lipsinc":'''LIPSinc''',
"lipsinc1":'''LIPSinc 1''',
"netop-rc":'''NetOp Remote Control''',
"netop-school":'''NetOp School''',
"intersys-cache":'''Cache''',
"dlsrap":'''Data Link Switching Remote Access Protocol''',
"drp":'''DRP''',
"tcoflashagent":'''TCO Flash Agent''',
"tcoregagent":'''TCO Reg Agent''',
"tcoaddressbook":'''TCO Address Book''',
"unisql":'''UniSQL''',
"unisql-java":'''UniSQL Java''',
"pearldoc-xact":'''PearlDoc XACT''',
"p2pq":'''p2pQ''',
"estamp":'''Evidentiary Timestamp''',
"lhtp":'''Loophole Test Protocol''',
"bb":'''BB''',
"hsrp":'''Hot Standby Router Protocol''',
"licensedaemon":'''cisco license management''',
"tr-rsrb-p1":'''cisco RSRB Priority 1 port''',
"tr-rsrb-p2":'''cisco RSRB Priority 2 port''',
"tr-rsrb-p3":'''cisco RSRB Priority 3 port''',
"mshnet":'''MHSnet system''',
"stun-p1":'''cisco STUN Priority 1 port''',
"stun-p2":'''cisco STUN Priority 2 port''',
"stun-p3":'''cisco STUN Priority 3 port''',
"ipsendmsg":'''IPsendmsg''',
"snmp-tcp-port":'''cisco SNMP TCP port''',
"stun-port":'''cisco serial tunnel port''',
"perf-port":'''cisco perf port''',
"tr-rsrb-port":'''cisco Remote SRB port''',
"gdp-port":'''cisco Gateway Discovery Protocol''',
"x25-svc-port":'''cisco X.25 service (XOT)''',
"tcp-id-port":'''cisco identification port''',
"cisco-sccp":'''Cisco SCCP''',
"dc":'''''',
"globe":'''''',
"brutus":'''Brutus Server''',
"mailbox":'''''',
"berknet":'''''',
"invokator":'''''',
"dectalk":'''''',
"conf":'''''',
"news":'''''',
"search":'''''',
"raid-cc":'''raid''',
"ttyinfo":'''''',
"raid-am":'''''',
"troff":'''''',
"cypress":'''''',
"bootserver":'''''',
"cypress-stat":'''''',
"terminaldb":'''''',
"whosockami":'''''',
"xinupageserver":'''''',
"servexec":'''''',
"down":'''''',
"xinuexpansion3":'''''',
"xinuexpansion4":'''''',
"ellpack":'''''',
"scrabble":'''''',
"shadowserver":'''''',
"submitserver":'''''',
"hsrpv6":'''Hot Standby Router Protocol IPv6''',
"device2":'''''',
"mobrien-chat":'''mobrien-chat''',
"blackboard":'''''',
"glogger":'''''',
"scoremgr":'''''',
"imsldoc":'''''',
"e-dpnet":'''Ethernet WS DP network''',
"applus":'''APplus Application Server''',
"objectmanager":'''''',
"prizma":'''Prizma Monitoring Service''',
"lam":'''''',
"interbase":'''''',
"isis":'''isis''',
"isis-bcast":'''isis-bcast''',
"rimsl":'''''',
"cdfunc":'''''',
"sdfunc":'''''',
"dls":'''''',
"dls-monitor":'''''',
"shilp":'''''',
"nfs":'''Network File System - Sun Microsystems''',
"av-emb-config":'''Avaya EMB Config Port''',
"epnsdp":'''EPNSDP''',
"clearvisn":'''clearVisn Services Port''',
"lot105-ds-upd":'''Lot105 DSuper Updates''',
"weblogin":'''Weblogin Port''',
"iop":'''Iliad-Odyssey Protocol''',
"omnisky":'''OmniSky Port''',
"rich-cp":'''Rich Content Protocol''',
"newwavesearch":'''NewWaveSearchables RMI''',
"bmc-messaging":'''BMC Messaging Service''',
"teleniumdaemon":'''Telenium Daemon IF''',
"netmount":'''NetMount''',
"icg-swp":'''ICG SWP Port''',
"icg-bridge":'''ICG Bridge Port''',
"icg-iprelay":'''ICG IP Relay Port''',
"dlsrpn":'''Data Link Switch Read Port Number''',
"aura":'''AVM USB Remote Architecture''',
"dlswpn":'''Data Link Switch Write Port Number''',
"avauthsrvprtcl":'''Avocent AuthSrv Protocol''',
"event-port":'''HTTP Event Port''',
"ah-esp-encap":'''AH and ESP Encapsulated in UDP packet''',
"acp-port":'''Axon Control Protocol''',
"msync":'''GlobeCast mSync''',
"gxs-data-port":'''DataReel Database Socket''',
"vrtl-vmf-sa":'''Vertel VMF SA''',
"newlixengine":'''Newlix ServerWare Engine''',
"newlixconfig":'''Newlix JSPConfig''',
"tsrmagt":'''Old Tivoli Storage Manager''',
"tpcsrvr":'''IBM Total Productivity Center Server''',
"idware-router":'''IDWARE Router Port''',
"autodesk-nlm":'''Autodesk NLM (FLEXlm)''',
"kme-trap-port":'''KME PRINTER TRAP PORT''',
"infowave":'''Infowave Mobility Server''',
"radsec":'''Secure Radius Service''',
"sunclustergeo":'''SunCluster Geographic''',
"ada-cip":'''ADA Control''',
"gnunet":'''GNUnet''',
"eli":'''ELI - Event Logging Integration''',
"ip-blf":'''IP Busy Lamp Field''',
"sep":'''Security Encapsulation Protocol - SEP''',
"lrp":'''Load Report Protocol''',
"prp":'''PRP''',
"descent3":'''Descent 3''',
"nbx-cc":'''NBX CC''',
"nbx-au":'''NBX AU''',
"nbx-ser":'''NBX SER''',
"nbx-dir":'''NBX DIR''',
"jetformpreview":'''Jet Form Preview''',
"dialog-port":'''Dialog Port''',
"h2250-annex-g":'''H.225.0 Annex G''',
"amiganetfs":'''Amiga Network Filesystem''',
"rtcm-sc104":'''rtcm-sc104''',
"zephyr-srv":'''Zephyr server''',
"zephyr-clt":'''Zephyr serv-hm connection''',
"zephyr-hm":'''Zephyr hostmanager''',
"minipay":'''MiniPay''',
"mzap":'''MZAP''',
"bintec-admin":'''BinTec Admin''',
"comcam":'''Comcam''',
"ergolight":'''Ergolight''',
"umsp":'''UMSP''',
"dsatp":'''OPNET Dynamic Sampling Agent Transaction Protocol''',
"idonix-metanet":'''Idonix MetaNet''',
"hsl-storm":'''HSL StoRM''',
"newheights":'''NEWHEIGHTS''',
"kdm":'''Key Distribution Manager''',
"ccowcmr":'''CCOWCMR''',
"mentaclient":'''MENTACLIENT''',
"mentaserver":'''MENTASERVER''',
"gsigatekeeper":'''GSIGATEKEEPER''',
"qencp":'''Quick Eagle Networks CP''',
"scientia-ssdb":'''SCIENTIA-SSDB''',
"caupc-remote":'''CauPC Remote Control''',
"gtp-control":'''GTP-Control Plane (3GPP)''',
"elatelink":'''ELATELINK''',
"lockstep":'''LOCKSTEP''',
"pktcable-cops":'''PktCable-COPS''',
"index-pc-wb":'''INDEX-PC-WB''',
"net-steward":'''Net Steward Control''',
"cs-live":'''cs-live.com''',
"xds":'''XDS''',
"avantageb2b":'''Avantageb2b''',
"solera-epmap":'''SoleraTec End Point Map''',
"zymed-zpp":'''ZYMED-ZPP''',
"avenue":'''AVENUE''',
"gris":'''Grid Resource Information Server''',
"appworxsrv":'''APPWORXSRV''',
"connect":'''CONNECT''',
"unbind-cluster":'''UNBIND-CLUSTER''',
"ias-auth":'''IAS-AUTH''',
"ias-reg":'''IAS-REG''',
"ias-admind":'''IAS-ADMIND''',
"tdmoip":'''TDM OVER IP''',
"lv-jc":'''Live Vault Job Control''',
"lv-ffx":'''Live Vault Fast Object Transfer''',
"lv-pici":'''Live Vault Remote Diagnostic Console Support''',
"lv-not":'''Live Vault Admin Event Notification''',
"lv-auth":'''Live Vault Authentication''',
"veritas-ucl":'''VERITAS UNIVERSAL COMMUNICATION LAYER''',
"acptsys":'''ACPTSYS''',
"dynamic3d":'''DYNAMIC3D''',
"docent":'''DOCENT''',
"gtp-user":'''GTP-User Plane (3GPP)''',
"ctlptc":'''Control Protocol''',
"stdptc":'''Standard Protocol''',
"brdptc":'''Bridge Protocol''',
"trp":'''Talari Reliable Protocol''',
"xnds":'''Xerox Network Document Scan Protocol''',
"touchnetplus":'''TouchNetPlus Service''',
"gdbremote":'''GDB Remote Debug Port''',
"apc-2160":'''APC 2160''',
"apc-2161":'''APC 2161''',
"navisphere":'''Navisphere''',
"navisphere-sec":'''Navisphere Secure''',
"ddns-v3":'''Dynamic DNS Version 3''',
"x-bone-api":'''X-Bone API''',
"iwserver":'''iwserver''',
"raw-serial":'''Raw Async Serial Link''',
"easy-soft-mux":'''easy-soft Multiplexer''',
"brain":'''Backbone for Academic Information Notification (BRAIN)''',
"eyetv":'''EyeTV Server Port''',
"msfw-storage":'''MS Firewall Storage''',
"msfw-s-storage":'''MS Firewall SecureStorage''',
"msfw-replica":'''MS Firewall Replication''',
"msfw-array":'''MS Firewall Intra Array''',
"airsync":'''Microsoft Desktop AirSync Protocol''',
"rapi":'''Microsoft ActiveSync Remote API''',
"qwave":'''qWAVE Bandwidth Estimate''',
"bitspeer":'''Peer Services for BITS''',
"vmrdp":'''Microsoft RDP for virtual machines''',
"mc-gt-srv":'''Millicent Vendor Gateway Server''',
"eforward":'''eforward''',
"cgn-stat":'''CGN status''',
"cgn-config":'''Code Green configuration''',
"nvd":'''NVD User''',
"onbase-dds":'''OnBase Distributed Disk Services''',
"gtaua":'''Guy-Tek Automated Update Applications''',
"ssmc":'''Sepehr System Management Control''',
"radware-rpm":'''Radware Resource Pool Manager''',
"radware-rpm-s":'''Secure Radware Resource Pool Manager''',
"tivoconnect":'''TiVoConnect Beacon''',
"tvbus":'''TvBus Messaging''',
"asdis":'''ASDIS software management''',
"drwcs":'''Dr.Web Enterprise Management Service''',
"mnp-exchange":'''MNP data exchange''',
"onehome-remote":'''OneHome Remote Access''',
"onehome-help":'''OneHome Service Port''',
"ici":'''ICI''',
"ats":'''Advanced Training System Program''',
"imtc-map":'''Int. Multimedia Teleconferencing Cosortium''',
"b2-runtime":'''b2 Runtime Protocol''',
"b2-license":'''b2 License Server''',
"jps":'''Java Presentation Server''',
"hpocbus":'''HP OpenCall bus''',
"hpssd":'''HP Status and Services''',
"hpiod":'''HP I/O Backend''',
"rimf-ps":'''HP RIM for Files Portal Service''',
"noaaport":'''NOAAPORT Broadcast Network''',
"emwin":'''EMWIN''',
"leecoposserver":'''LeeCO POS Server Service''',
"kali":'''Kali''',
"rpi":'''RDQ Protocol Interface''',
"ipcore":'''IPCore.co.za GPRS''',
"vtu-comms":'''VTU data service''',
"gotodevice":'''GoToDevice Device Management''',
"bounzza":'''Bounzza IRC Proxy''',
"netiq-ncap":'''NetIQ NCAP Protocol''',
"netiq":'''NetIQ End2End''',
"rockwell-csp1":'''Rockwell CSP1''',
"EtherNet-IP-1":'''EtherNet/IP I/O
IANA assigned this well-formed service name as a replacement for "EtherNet/IP-1".''',
"EtherNet/IP-1":'''EtherNet/IP I/O''',
"rockwell-csp2":'''Rockwell CSP2''',
"efi-mg":'''Easy Flexible Internet/Multiplayer Games''',
"rcip-itu":'''Resource Connection Initiation Protocol''',
"di-drm":'''Digital Instinct DRM''',
"di-msg":'''DI Messaging Service''',
"ehome-ms":'''eHome Message Server''',
"datalens":'''DataLens Service''',
"queueadm":'''MetaSoft Job Queue Administration Service''',
"wimaxasncp":'''WiMAX ASN Control Plane Protocol''',
"ivs-video":'''IVS Video default''',
"infocrypt":'''INFOCRYPT''',
"directplay":'''DirectPlay''',
"sercomm-wlink":'''Sercomm-WLink''',
"nani":'''Nani''',
"optech-port1-lm":'''Optech Port1 License Manager''',
"aviva-sna":'''AVIVA SNA SERVER''',
"imagequery":'''Image Query''',
"recipe":'''RECIPe''',
"ivsd":'''IVS Daemon''',
"foliocorp":'''Folio Remote Server''',
"magicom":'''Magicom Protocol''',
"nmsserver":'''NMS Server''',
"hao":'''HaO''',
"pc-mta-addrmap":'''PacketCable MTA Addr Map''',
"antidotemgrsvr":'''Antidote Deployment Manager Service''',
"ums":'''User Management Service''',
"rfmp":'''RISO File Manager Protocol''',
"remote-collab":'''remote-collab''',
"dif-port":'''Distributed Framework Port''',
"njenet-ssl":'''NJENET using SSL''',
"dtv-chan-req":'''DTV Channel Request''',
"seispoc":'''Seismic P.O.C. Port''',
"vrtp":'''VRTP - ViRtue Transfer Protocol''',
"pcc-mfp":'''PCC MFP''',
"simple-tx-rx":'''simple text/file transfer''',
"rcts":'''Rotorcraft Communications Test System''',
"apc-2260":'''APC 2260''',
"comotionmaster":'''CoMotion Master Server''',
"comotionback":'''CoMotion Backup Server''',
"ecwcfg":'''ECweb Configuration Service''',
"apx500api-1":'''Audio Precision Apx500 API Port 1''',
"apx500api-2":'''Audio Precision Apx500 API Port 2''',
"mfserver":'''M-Files Server''',
"ontobroker":'''OntoBroker''',
"amt":'''AMT''',
"mikey":'''MIKEY''',
"starschool":'''starSchool''',
"mmcals":'''Secure Meeting Maker Scheduling''',
"mmcal":'''Meeting Maker Scheduling''',
"mysql-im":'''MySQL Instance Manager''',
"pcttunnell":'''PCTTunneller''',
"ibridge-data":'''iBridge Conferencing''',
"ibridge-mgmt":'''iBridge Management''',
"bluectrlproxy":'''Bt device control proxy''',
"s3db":'''Simple Stacked Sequences Database''',
"xmquery":'''xmquery''',
"lnvpoller":'''LNVPOLLER''',
"lnvconsole":'''LNVCONSOLE''',
"lnvalarm":'''LNVALARM''',
"lnvstatus":'''LNVSTATUS''',
"lnvmaps":'''LNVMAPS''',
"lnvmailmon":'''LNVMAILMON''',
"nas-metering":'''NAS-Metering''',
"dna":'''DNA''',
"netml":'''NETML''',
"dict-lookup":'''Lookup dict server''',
"sonus-logging":'''Sonus Logging Services''',
"eapsp":'''EPSON Advanced Printer Share Protocol''',
"mib-streaming":'''Sonus Element Management Services''',
"npdbgmngr":'''Network Platform Debug Manager''',
"konshus-lm":'''Konshus License Manager (FLEX)''',
"advant-lm":'''Advant License Manager''',
"theta-lm":'''Theta License Manager (Rainbow)''',
"d2k-datamover1":'''D2K DataMover 1''',
"d2k-datamover2":'''D2K DataMover 2''',
"pc-telecommute":'''PC Telecommute''',
"cvmmon":'''CVMMON''',
"cpq-wbem":'''Compaq HTTP''',
"binderysupport":'''Bindery Support''',
"proxy-gateway":'''Proxy Gateway''',
"attachmate-uts":'''Attachmate UTS''',
"mt-scaleserver":'''MT ScaleServer''',
"tappi-boxnet":'''TAPPI BoxNet''',
"pehelp":'''pehelp''',
"sdhelp":'''sdhelp''',
"sdserver":'''SD Server''',
"sdclient":'''SD Client''',
"messageservice":'''Message Service''',
"wanscaler":'''WANScaler Communication Service''',
"iapp":'''IAPP (Inter Access Point Protocol)''',
"cr-websystems":'''CR WebSystems''',
"precise-sft":'''Precise Sft.''',
"sent-lm":'''SENT License Manager''',
"attachmate-g32":'''Attachmate G32''',
"cadencecontrol":'''Cadence Control''',
"infolibria":'''InfoLibria''',
"siebel-ns":'''Siebel NS''',
"rdlap":'''RDLAP''',
"ofsd":'''ofsd''',
"3d-nfsd":'''3d-nfsd''',
"cosmocall":'''Cosmocall''',
"ansysli":'''ANSYS Licensing Interconnect''',
"idcp":'''IDCP''',
"xingcsm":'''xingcsm''',
"netrix-sftm":'''Netrix SFTM''',
"nvd":'''NVD''',
"tscchat":'''TSCCHAT''',
"agentview":'''AGENTVIEW''',
"rcc-host":'''RCC Host''',
"snapp":'''SNAPP''',
"ace-client":'''ACE Client Auth''',
"ace-proxy":'''ACE Proxy''',
"appleugcontrol":'''Apple UG Control''',
"ideesrv":'''ideesrv''',
"norton-lambert":'''Norton Lambert''',
"3com-webview":'''3Com WebView''',
"wrs-registry":'''WRS Registry
IANA assigned this well-formed service name as a replacement for "wrs_registry".''',
"wrs_registry":'''WRS Registry''',
"xiostatus":'''XIO Status''',
"manage-exec":'''Seagate Manage Exec''',
"nati-logos":'''nati logos''',
"fcmsys":'''fcmsys''',
"dbm":'''dbm''',
"redstorm-join":'''Game Connection Port
IANA assigned this well-formed service name as a replacement for "redstorm_join".''',
"redstorm_join":'''Game Connection Port''',
"redstorm-find":'''Game Announcement and Location
IANA assigned this well-formed service name as a replacement for "redstorm_find".''',
"redstorm_find":'''Game Announcement and Location''',
"redstorm-info":'''Information to query for game status
IANA assigned this well-formed service name as a replacement for "redstorm_info".''',
"redstorm_info":'''Information to query for game status''',
"redstorm-diag":'''Diagnostics Port
IANA assigned this well-formed service name as a replacement for "redstorm_diag".''',
"redstorm_diag":'''Diagnostics Port''',
"psbserver":'''Pharos Booking Server''',
"psrserver":'''psrserver''',
"pslserver":'''pslserver''',
"pspserver":'''pspserver''',
"psprserver":'''psprserver''',
"psdbserver":'''psdbserver''',
"gxtelmd":'''GXT License Managemant''',
"unihub-server":'''UniHub Server''',
"futrix":'''Futrix''',
"flukeserver":'''FlukeServer''',
"nexstorindltd":'''NexstorIndLtd''',
"tl1":'''TL1''',
"digiman":'''digiman''',
"mediacntrlnfsd":'''Media Central NFSD''',
"oi-2000":'''OI-2000''',
"dbref":'''dbref''',
"qip-login":'''qip-login''',
"service-ctrl":'''Service Control''',
"opentable":'''OpenTable''',
"l3-hbmon":'''L3-HBMon''',
"worldwire":'''Compaq WorldWire Port''',
"lanmessenger":'''LanMessenger''',
"remographlm":'''Remograph License Manager''',
"hydra":'''Hydra RPC''',
"compaq-https":'''Compaq HTTPS''',
"ms-olap3":'''Microsoft OLAP''',
"ms-olap4":'''Microsoft OLAP''',
"sd-request":'''SD-REQUEST''',
"sd-data":'''SD-DATA''',
"virtualtape":'''Virtual Tape''',
"vsamredirector":'''VSAM Redirector''',
"mynahautostart":'''MYNAH AutoStart''',
"ovsessionmgr":'''OpenView Session Mgr''',
"rsmtp":'''RSMTP''',
"3com-net-mgmt":'''3COM Net Management''',
"tacticalauth":'''Tactical Auth''',
"ms-olap1":'''MS OLAP 1''',
"ms-olap2":'''MS OLAP 2''',
"lan900-remote":'''LAN900 Remote
IANA assigned this well-formed service name as a replacement for "lan900_remote".''',
"lan900_remote":'''LAN900 Remote''',
"wusage":'''Wusage''',
"ncl":'''NCL''',
"orbiter":'''Orbiter''',
"fmpro-fdal":'''FileMaker, Inc. - Data Access Layer''',
"opequus-server":'''OpEquus Server''',
"cvspserver":'''cvspserver''',
"taskmaster2000":'''TaskMaster 2000 Server''',
"taskmaster2000":'''TaskMaster 2000 Web''',
"iec-104":'''IEC 60870-5-104 process control over IP''',
"trc-netpoll":'''TRC Netpoll''',
"jediserver":'''JediServer''',
"orion":'''Orion''',
"railgun-webaccl":'''CloudFlare Railgun Web Acceleration Protocol''',
"sns-protocol":'''SNS Protocol''',
"vrts-registry":'''VRTS Registry''',
"netwave-ap-mgmt":'''Netwave AP Management''',
"cdn":'''CDN''',
"orion-rmi-reg":'''orion-rmi-reg''',
"beeyond":'''Beeyond''',
"codima-rtp":'''Codima Remote Transaction Protocol''',
"rmtserver":'''RMT Server''',
"composit-server":'''Composit Server''',
"cas":'''cas''',
"attachmate-s2s":'''Attachmate S2S''',
"dslremote-mgmt":'''DSL Remote Management''',
"g-talk":'''G-Talk''',
"crmsbits":'''CRMSBITS''',
"rnrp":'''RNRP''',
"kofax-svr":'''KOFAX-SVR''',
"fjitsuappmgr":'''Fujitsu App Manager''',
"mgcp-gateway":'''Media Gateway Control Protocol Gateway''',
"ott":'''One Way Trip Time''',
"ft-role":'''FT-ROLE''',
"venus":'''venus''',
"venus-se":'''venus-se''',
"codasrv":'''codasrv''',
"codasrv-se":'''codasrv-se''',
"pxc-epmap":'''pxc-epmap''',
"optilogic":'''OptiLogic''',
"topx":'''TOP/X''',
"unicontrol":'''UniControl''',
"msp":'''MSP''',
"sybasedbsynch":'''SybaseDBSynch''',
"spearway":'''Spearway Lockers''',
"pvsw-inet":'''Pervasive I*net Data Server''',
"netangel":'''Netangel''',
"powerclientcsf":'''PowerClient Central Storage Facility''',
"btpp2sectrans":'''BT PP2 Sectrans''',
"dtn1":'''DTN1''',
"bues-service":'''bues_service
IANA assigned this well-formed service name as a replacement for "bues_service".''',
"bues_service":'''bues_service''',
"ovwdb":'''OpenView NNM daemon''',
"hpppssvr":'''hpppsvr''',
"ratl":'''RATL''',
"netadmin":'''netadmin''',
"netchat":'''netchat''',
"snifferclient":'''SnifferClient''',
"madge-ltd":'''madge ltd''',
"indx-dds":'''IndX-DDS''',
"wago-io-system":'''WAGO-IO-SYSTEM''',
"altav-remmgt":'''altav-remmgt''',
"rapido-ip":'''Rapido_IP''',
"griffin":'''griffin''',
"community":'''Community''',
"ms-theater":'''ms-theater''',
"qadmifoper":'''qadmifoper''',
"qadmifevent":'''qadmifevent''',
"lsi-raid-mgmt":'''LSI RAID Management''',
"direcpc-si":'''DirecPC SI''',
"lbm":'''Load Balance Management''',
"lbf":'''Load Balance Forwarding''',
"high-criteria":'''High Criteria''',
"qip-msgd":'''qip_msgd''',
"mti-tcs-comm":'''MTI-TCS-COMM''',
"taskman-port":'''taskman port''',
"seaodbc":'''SeaODBC''',
"c3":'''C3''',
"aker-cdp":'''Aker-cdp''',
"vitalanalysis":'''Vital Analysis''',
"ace-server":'''ACE Server''',
"ace-svr-prop":'''ACE Server Propagation''',
"ssm-cvs":'''SecurSight Certificate Valifation Service''',
"ssm-cssps":'''SecurSight Authentication Server (SSL)''',
"ssm-els":'''SecurSight Event Logging Server (SSL)''',
"powerexchange":'''Informatica PowerExchange Listener''',
"giop":'''Oracle GIOP''',
"giop-ssl":'''Oracle GIOP SSL''',
"ttc":'''Oracle TTC''',
"ttc-ssl":'''Oracle TTC SSL''',
"netobjects1":'''Net Objects1''',
"netobjects2":'''Net Objects2''',
"pns":'''Policy Notice Service''',
"moy-corp":'''Moy Corporation''',
"tsilb":'''TSILB''',
"qip-qdhcp":'''qip_qdhcp''',
"conclave-cpp":'''Conclave CPP''',
"groove":'''GROOVE''',
"talarian-mqs":'''Talarian MQS''',
"bmc-ar":'''BMC AR''',
"fast-rem-serv":'''Fast Remote Services''',
"dirgis":'''DIRGIS''',
"quaddb":'''Quad DB''',
"odn-castraq":'''ODN-CasTraq''',
"unicontrol":'''UniControl''',
"rtsserv":'''Resource Tracking system server''',
"rtsclient":'''Resource Tracking system client''',
"kentrox-prot":'''Kentrox Protocol''',
"nms-dpnss":'''NMS-DPNSS''',
"wlbs":'''WLBS''',
"ppcontrol":'''PowerPlay Control''',
"jbroker":'''jbroker''',
"spock":'''spock''',
"jdatastore":'''JDataStore''',
"fjmpss":'''fjmpss''',
"fjappmgrbulk":'''fjappmgrbulk''',
"metastorm":'''Metastorm''',
"citrixima":'''Citrix IMA''',
"citrixadmin":'''Citrix ADMIN''',
"facsys-ntp":'''Facsys NTP''',
"facsys-router":'''Facsys Router''',
"maincontrol":'''Main Control''',
"call-sig-trans":'''H.323 Annex E call signaling transport''',
"willy":'''Willy''',
"globmsgsvc":'''globmsgsvc''',
"pvsw":'''Pervasive Listener''',
"adaptecmgr":'''Adaptec Manager''',
"windb":'''WinDb''',
"qke-llc-v3":'''Qke LLC V.3''',
"optiwave-lm":'''Optiwave License Management''',
"ms-v-worlds":'''MS V-Worlds''',
"ema-sent-lm":'''EMA License Manager''',
"iqserver":'''IQ Server''',
"ncr-ccl":'''NCR CCL
IANA assigned this well-formed service name as a replacement for "ncr_ccl".''',
"ncr_ccl":'''NCR CCL''',
"utsftp":'''UTS FTP''',
"vrcommerce":'''VR Commerce''',
"ito-e-gui":'''ITO-E GUI''',
"ovtopmd":'''OVTOPMD''',
"snifferserver":'''SnifferServer''',
"combox-web-acc":'''Combox Web Access''',
"madcap":'''MADCAP''',
"btpp2audctr1":'''btpp2audctr1''',
"upgrade":'''Upgrade Protocol''',
"vnwk-prapi":'''vnwk-prapi''',
"vsiadmin":'''VSI Admin''',
"lonworks":'''LonWorks''',
"lonworks2":'''LonWorks2''',
"udrawgraph":'''uDraw(Graph)''',
"reftek":'''REFTEK''',
"novell-zen":'''Management Daemon Refresh''',
"sis-emt":'''sis-emt''',
"vytalvaultbrtp":'''vytalvaultbrtp''',
"vytalvaultvsmp":'''vytalvaultvsmp''',
"vytalvaultpipe":'''vytalvaultpipe''',
"ipass":'''IPASS''',
"ads":'''ADS''',
"isg-uda-server":'''ISG UDA Server''',
"call-logging":'''Call Logging''',
"efidiningport":'''efidiningport''',
"vcnet-link-v10":'''VCnet-Link v10''',
"compaq-wcp":'''Compaq WCP''',
"nicetec-nmsvc":'''nicetec-nmsvc''',
"nicetec-mgmt":'''nicetec-mgmt''',
"pclemultimedia":'''PCLE Multi Media''',
"lstp":'''LSTP''',
"labrat":'''labrat''',
"mosaixcc":'''MosaixCC''',
"delibo":'''Delibo''',
"cti-redwood":'''CTI Redwood''',
"hp-3000-telnet":'''HP 3000 NS/VT block mode telnet''',
"coord-svr":'''Coordinator Server''',
"pcs-pcw":'''pcs-pcw''',
"clp":'''Cisco Line Protocol''',
"spamtrap":'''SPAM TRAP''',
"sonuscallsig":'''Sonus Call Signal''',
"hs-port":'''HS Port''',
"cecsvc":'''CECSVC''',
"ibp":'''IBP''',
"trustestablish":'''Trust Establish''',
"blockade-bpsp":'''Blockade BPSP''',
"hl7":'''HL7''',
"tclprodebugger":'''TCL Pro Debugger''',
"scipticslsrvr":'''Scriptics Lsrvr''',
"rvs-isdn-dcp":'''RVS ISDN DCP''',
"mpfoncl":'''mpfoncl''',
"tributary":'''Tributary''',
"argis-te":'''ARGIS TE''',
"argis-ds":'''ARGIS DS''',
"mon":'''MON''',
"cyaserv":'''cyaserv''',
"netx-server":'''NETX Server''',
"netx-agent":'''NETX Agent''',
"masc":'''MASC''',
"privilege":'''Privilege''',
"quartus-tcl":'''quartus tcl''',
"idotdist":'''idotdist''',
"maytagshuffle":'''Maytag Shuffle''',
"netrek":'''netrek''',
"mns-mail":'''MNS Mail Notice Service''',
"dts":'''Data Base Server''',
"worldfusion1":'''World Fusion 1''',
"worldfusion2":'''World Fusion 2''',
"homesteadglory":'''Homestead Glory''',
"citriximaclient":'''Citrix MA Client''',
"snapd":'''Snap Discovery''',
"hpstgmgr":'''HPSTGMGR''',
"discp-client":'''discp client''',
"discp-server":'''discp server''',
"servicemeter":'''Service Meter''',
"nsc-ccs":'''NSC CCS''',
"nsc-posa":'''NSC POSA''',
"netmon":'''Dell Netmon''',
"connection":'''Dell Connection''',
"wag-service":'''Wag Service''',
"system-monitor":'''System Monitor''',
"versa-tek":'''VersaTek''',
"lionhead":'''LIONHEAD''',
"qpasa-agent":'''Qpasa Agent''',
"smntubootstrap":'''SMNTUBootstrap''',
"neveroffline":'''Never Offline''',
"firepower":'''firepower''',
"appswitch-emp":'''appswitch-emp''',
"cmadmin":'''Clinical Context Managers''',
"priority-e-com":'''Priority E-Com''',
"bruce":'''bruce''',
"lpsrecommender":'''LPSRecommender''',
"miles-apart":'''Miles Apart Jukebox Server''',
"metricadbc":'''MetricaDBC''',
"lmdp":'''LMDP''',
"aria":'''Aria''',
"blwnkl-port":'''Blwnkl Port''',
"gbjd816":'''gbjd816''',
"moshebeeri":'''Moshe Beeri''',
"dict":'''DICT''',
"sitaraserver":'''Sitara Server''',
"sitaramgmt":'''Sitara Management''',
"sitaradir":'''Sitara Dir''',
"irdg-post":'''IRdg Post''',
"interintelli":'''InterIntelli''',
"pk-electronics":'''PK Electronics''',
"backburner":'''Back Burner''',
"solve":'''Solve''',
"imdocsvc":'''Import Document Service''',
"sybaseanywhere":'''Sybase Anywhere''',
"aminet":'''AMInet''',
"sai-sentlm":'''Sabbagh Associates Licence Manager
IANA assigned this well-formed service name as a replacement for "sai_sentlm".''',
"sai_sentlm":'''Sabbagh Associates Licence Manager''',
"hdl-srv":'''HDL Server''',
"tragic":'''Tragic''',
"gte-samp":'''GTE-SAMP''',
"travsoft-ipx-t":'''Travsoft IPX Tunnel''',
"novell-ipx-cmd":'''Novell IPX CMD''',
"and-lm":'''AND License Manager''',
"syncserver":'''SyncServer''',
"upsnotifyprot":'''Upsnotifyprot''',
"vpsipport":'''VPSIPPORT''',
"eristwoguns":'''eristwoguns''',
"ebinsite":'''EBInSite''',
"interpathpanel":'''InterPathPanel''',
"sonus":'''Sonus''',
"corel-vncadmin":'''Corel VNC Admin
IANA assigned this well-formed service name as a replacement for "corel_vncadmin".''',
"corel_vncadmin":'''Corel VNC Admin''',
"unglue":'''UNIX Nt Glue''',
"kana":'''Kana''',
"sns-dispatcher":'''SNS Dispatcher''',
"sns-admin":'''SNS Admin''',
"sns-query":'''SNS Query''',
"gcmonitor":'''GC Monitor''',
"olhost":'''OLHOST''',
"bintec-capi":'''BinTec-CAPI''',
"bintec-tapi":'''BinTec-TAPI''',
"patrol-mq-gm":'''Patrol for MQ GM''',
"patrol-mq-nm":'''Patrol for MQ NM''',
"extensis":'''extensis''',
"alarm-clock-s":'''Alarm Clock Server''',
"alarm-clock-c":'''Alarm Clock Client''',
"toad":'''TOAD''',
"tve-announce":'''TVE Announce''',
"newlixreg":'''newlixreg''',
"nhserver":'''nhserver''',
"firstcall42":'''First Call 42''',
"ewnn":'''ewnn''',
"ttc-etap":'''TTC ETAP''',
"simslink":'''SIMSLink''',
"gadgetgate1way":'''Gadget Gate 1 Way''',
"gadgetgate2way":'''Gadget Gate 2 Way''',
"syncserverssl":'''Sync Server SSL''',
"pxc-sapxom":'''pxc-sapxom''',
"mpnjsomb":'''mpnjsomb''',
"ncdloadbalance":'''NCDLoadBalance''',
"mpnjsosv":'''mpnjsosv''',
"mpnjsocl":'''mpnjsocl''',
"mpnjsomg":'''mpnjsomg''',
"pq-lic-mgmt":'''pq-lic-mgmt''',
"md-cg-http":'''md-cf-http''',
"fastlynx":'''FastLynx''',
"hp-nnm-data":'''HP NNM Embedded Database''',
"itinternet":'''ITInternet ISM Server''',
"admins-lms":'''Admins LMS''',
"pwrsevent":'''pwrsevent''',
"vspread":'''VSPREAD''',
"unifyadmin":'''Unify Admin''',
"oce-snmp-trap":'''Oce SNMP Trap Port''',
"mck-ivpip":'''MCK-IVPIP''',
"csoft-plusclnt":'''Csoft Plus Client''',
"tqdata":'''tqdata''',
"sms-rcinfo":'''SMS RCINFO''',
"sms-xfer":'''SMS XFER''',
"sms-chat":'''SMS CHAT''',
"sms-remctrl":'''SMS REMCTRL''',
"sds-admin":'''SDS Admin''',
"ncdmirroring":'''NCD Mirroring''',
"emcsymapiport":'''EMCSYMAPIPORT''',
"banyan-net":'''Banyan-Net''',
"supermon":'''Supermon''',
"sso-service":'''SSO Service''',
"sso-control":'''SSO Control''',
"aocp":'''Axapta Object Communication Protocol''',
"raventbs":'''Raven Trinity Broker Service''',
"raventdm":'''Raven Trinity Data Mover''',
"hpstgmgr2":'''HPSTGMGR2''',
"inova-ip-disco":'''Inova IP Disco''',
"pn-requester":'''PN REQUESTER''',
"pn-requester2":'''PN REQUESTER 2''',
"scan-change":'''Scan & Change''',
"wkars":'''wkars''',
"smart-diagnose":'''Smart Diagnose''',
"proactivesrvr":'''Proactive Server''',
"watchdog-nt":'''WatchDog NT Protocol''',
"qotps":'''qotps''',
"msolap-ptp2":'''MSOLAP PTP2''',
"tams":'''TAMS''',
"mgcp-callagent":'''Media Gateway Control Protocol Call Agent''',
"sqdr":'''SQDR''',
"tcim-control":'''TCIM Control''',
"nec-raidplus":'''NEC RaidPlus''',
"fyre-messanger":'''Fyre Messanger''',
"g5m":'''G5M''',
"signet-ctf":'''Signet CTF''',
"ccs-software":'''CCS Software''',
"netiq-mc":'''NetIQ Monitor Console''',
"radwiz-nms-srv":'''RADWIZ NMS SRV''',
"srp-feedback":'''SRP Feedback''',
"ndl-tcp-ois-gw":'''NDL TCP-OSI Gateway''',
"tn-timing":'''TN Timing''',
"alarm":'''Alarm''',
"tsb":'''TSB''',
"tsb2":'''TSB2''',
"murx":'''murx''',
"honyaku":'''honyaku''',
"urbisnet":'''URBISNET''',
"cpudpencap":'''CPUDPENCAP''',
"fjippol-swrly":'''''',
"fjippol-polsvr":'''''',
"fjippol-cnsl":'''''',
"fjippol-port1":'''''',
"fjippol-port2":'''''',
"rsisysaccess":'''RSISYS ACCESS''',
"de-spot":'''de-spot''',
"apollo-cc":'''APOLLO CC''',
"expresspay":'''Express Pay''',
"simplement-tie":'''simplement-tie''',
"cnrp":'''CNRP''',
"apollo-status":'''APOLLO Status''',
"apollo-gms":'''APOLLO GMS''',
"sabams":'''Saba MS''',
"dicom-iscl":'''DICOM ISCL''',
"dicom-tls":'''DICOM TLS''',
"desktop-dna":'''Desktop DNA''',
"data-insurance":'''Data Insurance''',
"qip-audup":'''qip-audup''',
"compaq-scp":'''Compaq SCP''',
"uadtc":'''UADTC''',
"uacs":'''UACS''',
"exce":'''eXcE''',
"veronica":'''Veronica''',
"vergencecm":'''Vergence CM''',
"auris":'''auris''',
"rbakcup1":'''RBackup Remote Backup''',
"rbakcup2":'''RBackup Remote Backup''',
"smpp":'''SMPP''',
"ridgeway1":'''Ridgeway Systems & Software''',
"ridgeway2":'''Ridgeway Systems & Software''',
"gwen-sonya":'''Gwen-Sonya''',
"lbc-sync":'''LBC Sync''',
"lbc-control":'''LBC Control''',
"whosells":'''whosells''',
"everydayrc":'''everydayrc''',
"aises":'''AISES''',
"www-dev":'''world wide web - development''',
"aic-np":'''aic-np''',
"aic-oncrpc":'''aic-oncrpc - Destiny MCD database''',
"piccolo":'''piccolo - Cornerstone Software''',
"fryeserv":'''NetWare Loadable Module - Seagate Software''',
"media-agent":'''Media Agent''',
"plgproxy":'''PLG Proxy''',
"mtport-regist":'''MT Port Registrator''',
"f5-globalsite":'''f5-globalsite''',
"initlsmsad":'''initlsmsad''',
"livestats":'''LiveStats''',
"ac-tech":'''ac-tech''',
"esp-encap":'''esp-encap''',
"tmesis-upshot":'''TMESIS-UPShot''',
"icon-discover":'''ICON Discover''',
"acc-raid":'''ACC RAID''',
"igcp":'''IGCP''',
"veritas-tcp1":'''Veritas TCP1''',
"btprjctrl":'''btprjctrl''',
"dvr-esm":'''March Networks Digital Video Recorders and Enterprise Service Manager products''',
"wta-wsp-s":'''WTA WSP-S''',
"cspuni":'''cspuni''',
"cspmulti":'''cspmulti''',
"j-lan-p":'''J-LAN-P''',
"corbaloc":'''CORBA LOC''',
"netsteward":'''Active Net Steward''',
"gsiftp":'''GSI FTP''',
"atmtcp":'''atmtcp''',
"llm-pass":'''llm-pass''',
"llm-csv":'''llm-csv''',
"lbc-measure":'''LBC Measurement''',
"lbc-watchdog":'''LBC Watchdog''',
"nmsigport":'''NMSig Port''',
"rmlnk":'''rmlnk''',
"fc-faultnotify":'''FC Fault Notification''',
"univision":'''UniVision''',
"vrts-at-port":'''VERITAS Authentication Service''',
"ka0wuc":'''ka0wuc''',
"cqg-netlan":'''CQG Net/LAN''',
"cqg-netlan-1":'''CQG Net/LAN 1''',
"slc-systemlog":'''slc systemlog''',
"slc-ctrlrloops":'''slc ctrlrloops''',
"itm-lm":'''ITM License Manager''',
"silkp1":'''silkp1''',
"silkp2":'''silkp2''',
"silkp3":'''silkp3''',
"silkp4":'''silkp4''',
"glishd":'''glishd''',
"evtp":'''EVTP''',
"evtp-data":'''EVTP-DATA''',
"catalyst":'''catalyst''',
"repliweb":'''Repliweb''',
"starbot":'''Starbot''',
"nmsigport":'''NMSigPort''',
"l3-exprt":'''l3-exprt''',
"l3-ranger":'''l3-ranger''',
"l3-hawk":'''l3-hawk''',
"pdnet":'''PDnet''',
"bpcp-poll":'''BPCP POLL''',
"bpcp-trap":'''BPCP TRAP''',
"aimpp-hello":'''AIMPP Hello''',
"aimpp-port-req":'''AIMPP Port Req''',
"amt-blc-port":'''AMT-BLC-PORT''',
"fxp":'''FXP''',
"metaconsole":'''MetaConsole''',
"webemshttp":'''webemshttp''',
"bears-01":'''bears-01''',
"ispipes":'''ISPipes''',
"infomover":'''InfoMover''',
"msrp":'''MSRP over TCP''',
"cesdinv":'''cesdinv''',
"simctlp":'''SimCtIP''',
"ecnp":'''ECNP''',
"activememory":'''Active Memory''',
"dialpad-voice1":'''Dialpad Voice 1''',
"dialpad-voice2":'''Dialpad Voice 2''',
"ttg-protocol":'''TTG Protocol''',
"sonardata":'''Sonar Data''',
"astromed-main":'''main 5001 cmd''',
"pit-vpn":'''pit-vpn''',
"iwlistener":'''iwlistener''',
"esps-portal":'''esps-portal''',
"npep-messaging":'''NPEP Messaging''',
"icslap":'''ICSLAP''',
"daishi":'''daishi''',
"msi-selectplay":'''MSI Select Play''',
"radix":'''RADIX''',
"dxmessagebase1":'''DX Message Base Transport Protocol''',
"dxmessagebase2":'''DX Message Base Transport Protocol''',
"sps-tunnel":'''SPS Tunnel''',
"bluelance":'''BLUELANCE''',
"aap":'''AAP''',
"ucentric-ds":'''ucentric-ds''',
"synapse":'''Synapse Transport''',
"ndsp":'''NDSP''',
"ndtp":'''NDTP''',
"ndnp":'''NDNP''',
"flashmsg":'''Flash Msg''',
"topflow":'''TopFlow''',
"responselogic":'''RESPONSELOGIC''',
"aironetddp":'''aironet''',
"spcsdlobby":'''SPCSDLOBBY''',
"rsom":'''RSOM''',
"cspclmulti":'''CSPCLMULTI''',
"cinegrfx-elmd":'''CINEGRFX-ELMD License Manager''',
"snifferdata":'''SNIFFERDATA''',
"vseconnector":'''VSECONNECTOR''',
"abacus-remote":'''ABACUS-REMOTE''',
"natuslink":'''NATUS LINK''',
"ecovisiong6-1":'''ECOVISIONG6-1''',
"citrix-rtmp":'''Citrix RTMP''',
"appliance-cfg":'''APPLIANCE-CFG''',
"powergemplus":'''POWERGEMPLUS''',
"quicksuite":'''QUICKSUITE''',
"allstorcns":'''ALLSTORCNS''',
"netaspi":'''NET ASPI''',
"suitcase":'''SUITCASE''',
"m2ua":'''M2UA''',
"m3ua":'''M3UA''',
"caller9":'''CALLER9''',
"webmethods-b2b":'''WEBMETHODS B2B''',
"mao":'''mao''',
"funk-dialout":'''Funk Dialout''',
"tdaccess":'''TDAccess''',
"blockade":'''Blockade''',
"epicon":'''Epicon''',
"boosterware":'''Booster Ware''',
"gamelobby":'''Game Lobby''',
"tksocket":'''TK Socket''',
"elvin-server":'''Elvin Server
IANA assigned this well-formed service name as a replacement for "elvin_server".''',
"elvin_server":'''Elvin Server''',
"elvin-client":'''Elvin Client
IANA assigned this well-formed service name as a replacement for "elvin_client".''',
"elvin_client":'''Elvin Client''',
"kastenchasepad":'''Kasten Chase Pad''',
"roboer":'''roboER''',
"roboeda":'''roboEDA''',
"cesdcdman":'''CESD Contents Delivery Management''',
"cesdcdtrn":'''CESD Contents Delivery Data Transfer''',
"wta-wsp-wtp-s":'''WTA-WSP-WTP-S''',
"precise-vip":'''PRECISE-VIP''',
"mobile-file-dl":'''MOBILE-FILE-DL''',
"unimobilectrl":'''UNIMOBILECTRL''',
"redstone-cpss":'''REDSTONE-CPSS''',
"amx-webadmin":'''AMX-WEBADMIN''',
"amx-weblinx":'''AMX-WEBLINX''',
"circle-x":'''Circle-X''',
"incp":'''INCP''',
"4-tieropmgw":'''4-TIER OPM GW''',
"4-tieropmcli":'''4-TIER OPM CLI''',
"qtp":'''QTP''',
"otpatch":'''OTPatch''',
"pnaconsult-lm":'''PNACONSULT-LM''',
"sm-pas-1":'''SM-PAS-1''',
"sm-pas-2":'''SM-PAS-2''',
"sm-pas-3":'''SM-PAS-3''',
"sm-pas-4":'''SM-PAS-4''',
"sm-pas-5":'''SM-PAS-5''',
"ttnrepository":'''TTNRepository''',
"megaco-h248":'''Megaco H-248''',
"h248-binary":'''H248 Binary''',
"fjsvmpor":'''FJSVmpor''',
"gpsd":'''GPS Daemon request/response protocol''',
"wap-push":'''WAP PUSH''',
"wap-pushsecure":'''WAP PUSH SECURE''',
"esip":'''ESIP''',
"ottp":'''OTTP''',
"mpfwsas":'''MPFWSAS''',
"ovalarmsrv":'''OVALARMSRV''',
"ovalarmsrv-cmd":'''OVALARMSRV-CMD''',
"csnotify":'''CSNOTIFY''',
"ovrimosdbman":'''OVRIMOSDBMAN''',
"jmact5":'''JAMCT5''',
"jmact6":'''JAMCT6''',
"rmopagt":'''RMOPAGT''',
"dfoxserver":'''DFOXSERVER''',
"boldsoft-lm":'''BOLDSOFT-LM''',
"iph-policy-cli":'''IPH-POLICY-CLI''',
"iph-policy-adm":'''IPH-POLICY-ADM''',
"bullant-srap":'''BULLANT SRAP''',
"bullant-rap":'''BULLANT RAP''',
"idp-infotrieve":'''IDP-INFOTRIEVE''',
"ssc-agent":'''SSC-AGENT''',
"enpp":'''ENPP''',
"essp":'''ESSP''',
"index-net":'''INDEX-NET''',
"netclip":'''NetClip clipboard daemon''',
"pmsm-webrctl":'''PMSM Webrctl''',
"svnetworks":'''SV Networks''',
"signal":'''Signal''',
"fjmpcm":'''Fujitsu Configuration Management Service''',
"cns-srv-port":'''CNS Server Port''',
"ttc-etap-ns":'''TTCs Enterprise Test Access Protocol - NS''',
"ttc-etap-ds":'''TTCs Enterprise Test Access Protocol - DS''',
"h263-video":'''H.263 Video Streaming''',
"wimd":'''Instant Messaging Service''',
"mylxamport":'''MYLXAMPORT''',
"iwb-whiteboard":'''IWB-WHITEBOARD''',
"netplan":'''NETPLAN''',
"hpidsadmin":'''HPIDSADMIN''',
"hpidsagent":'''HPIDSAGENT''',
"stonefalls":'''STONEFALLS''',
"identify":'''identify''',
"hippad":'''HIPPA Reporting Protocol''',
"zarkov":'''ZARKOV Intelligent Agent Communication''',
"boscap":'''BOSCAP''',
"wkstn-mon":'''WKSTN-MON''',
"avenyo":'''Avenyo Server''',
"veritas-vis1":'''VERITAS VIS1''',
"veritas-vis2":'''VERITAS VIS2''',
"idrs":'''IDRS''',
"vsixml":'''vsixml''',
"rebol":'''REBOL''',
"realsecure":'''Real Secure''',
"remoteware-un":'''RemoteWare Unassigned''',
"hbci":'''HBCI''',
"remoteware-cl":'''RemoteWare Client''',
"exlm-agent":'''EXLM Agent''',
"remoteware-srv":'''RemoteWare Server''',
"cgms":'''CGMS''',
"csoftragent":'''Csoft Agent''',
"geniuslm":'''Genius License Manager''',
"ii-admin":'''Instant Internet Admin''',
"lotusmtap":'''Lotus Mail Tracking Agent Protocol''',
"midnight-tech":'''Midnight Technologies''',
"pxc-ntfy":'''PXC-NTFY''',
"gw":'''Telerate Workstation''',
"trusted-web":'''Trusted Web''',
"twsdss":'''Trusted Web Client''',
"gilatskysurfer":'''Gilat Sky Surfer''',
"broker-service":'''Broker Service
IANA assigned this well-formed service name as a replacement for "broker_service".''',
"broker_service":'''Broker Service''',
"nati-dstp":'''NATI DSTP''',
"notify-srvr":'''Notify Server
IANA assigned this well-formed service name as a replacement for "notify_srvr".''',
"notify_srvr":'''Notify Server''',
"event-listener":'''Event Listener
IANA assigned this well-formed service name as a replacement for "event_listener".''',
"event_listener":'''Event Listener''',
"srvc-registry":'''Service Registry
IANA assigned this well-formed service name as a replacement for "srvc_registry".''',
"srvc_registry":'''Service Registry''',
"resource-mgr":'''Resource Manager
IANA assigned this well-formed service name as a replacement for "resource_mgr".''',
"resource_mgr":'''Resource Manager''',
"cifs":'''CIFS''',
"agriserver":'''AGRI Server''',
"csregagent":'''CSREGAGENT''',
"magicnotes":'''magicnotes''',
"nds-sso":'''NDS_SSO
IANA assigned this well-formed service name as a replacement for "nds_sso".''',
"nds_sso":'''NDS_SSO''',
"arepa-raft":'''Arepa Raft''',
"agri-gateway":'''AGRI Gateway''',
"LiebDevMgmt-C":'''LiebDevMgmt_C
IANA assigned this well-formed service name as a replacement for "LiebDevMgmt_C".''',
"LiebDevMgmt_C":'''LiebDevMgmt_C''',
"LiebDevMgmt-DM":'''LiebDevMgmt_DM
IANA assigned this well-formed service name as a replacement for "LiebDevMgmt_DM".''',
"LiebDevMgmt_DM":'''LiebDevMgmt_DM''',
"LiebDevMgmt-A":'''LiebDevMgmt_A
IANA assigned this well-formed service name as a replacement for "LiebDevMgmt_A".''',
"LiebDevMgmt_A":'''LiebDevMgmt_A''',
"arepa-cas":'''Arepa Cas''',
"eppc":'''Remote AppleEvents/PPC Toolbox''',
"redwood-chat":'''Redwood Chat''',
"pdb":'''PDB''',
"osmosis-aeea":'''Osmosis / Helix (R) AEEA Port''',
"fjsv-gssagt":'''FJSV gssagt''',
"hagel-dump":'''Hagel DUMP''',
"hp-san-mgmt":'''HP SAN Mgmt''',
"santak-ups":'''Santak UPS''',
"cogitate":'''Cogitate, Inc.''',
"tomato-springs":'''Tomato Springs''',
"di-traceware":'''di-traceware''',
"journee":'''journee''',
"brp":'''Broadcast Routing Protocol''',
"epp":'''EndPoint Protocol''',
"responsenet":'''ResponseNet''',
"di-ase":'''di-ase''',
"hlserver":'''Fast Security HL Server''',
"pctrader":'''Sierra Net PC Trader''',
"nsws":'''NSWS''',
"gds-db":'''gds_db
IANA assigned this well-formed service name as a replacement for "gds_db".''',
"gds_db":'''gds_db''',
"galaxy-server":'''Galaxy Server''',
"apc-3052":'''APC 3052''',
"dsom-server":'''dsom-server''',
"amt-cnf-prot":'''AMT CNF PROT''',
"policyserver":'''Policy Server''',
"cdl-server":'''CDL Server''',
"goahead-fldup":'''GoAhead FldUp''',
"videobeans":'''videobeans''',
"qsoft":'''qsoft''',
"interserver":'''interserver''',
"cautcpd":'''cautcpd''',
"ncacn-ip-tcp":'''ncacn-ip-tcp''',
"ncadg-ip-udp":'''ncadg-ip-udp''',
"rprt":'''Remote Port Redirector''',
"slinterbase":'''slinterbase''',
"netattachsdmp":'''NETATTACHSDMP''',
"fjhpjp":'''FJHPJP''',
"ls3bcast":'''ls3 Broadcast''',
"ls3":'''ls3''',
"mgxswitch":'''MGXSWITCH''',
"csd-mgmt-port":'''ContinuStor Manager Port''',
"csd-monitor":'''ContinuStor Monitor Port''',
"vcrp":'''Very simple chatroom prot''',
"xbox":'''Xbox game port''',
"orbix-locator":'''Orbix 2000 Locator''',
"orbix-config":'''Orbix 2000 Config''',
"orbix-loc-ssl":'''Orbix 2000 Locator SSL''',
"orbix-cfg-ssl":'''Orbix 2000 Locator SSL''',
"lv-frontpanel":'''LV Front Panel''',
"stm-pproc":'''stm_pproc
IANA assigned this well-formed service name as a replacement for "stm_pproc".''',
"stm_pproc":'''stm_pproc''',
"tl1-lv":'''TL1-LV''',
"tl1-raw":'''TL1-RAW''',
"tl1-telnet":'''TL1-TELNET''',
"itm-mccs":'''ITM-MCCS''',
"pcihreq":'''PCIHReq''',
"jdl-dbkitchen":'''JDL-DBKitchen''',
"asoki-sma":'''Asoki SMA''',
"xdtp":'''eXtensible Data Transfer Protocol''',
"ptk-alink":'''ParaTek Agent Linking''',
"stss":'''Senforce Session Services''',
"1ci-smcs":'''1Ci Server Management''',
"rapidmq-center":'''Jiiva RapidMQ Center''',
"rapidmq-reg":'''Jiiva RapidMQ Registry''',
"panasas":'''Panasas rendevous port''',
"ndl-aps":'''Active Print Server Port''',
"umm-port":'''Universal Message Manager''',
"chmd":'''CHIPSY Machine Daemon''',
"opcon-xps":'''OpCon/xps''',
"hp-pxpib":'''HP PolicyXpert PIB Server''',
"slslavemon":'''SoftlinK Slave Mon Port''',
"autocuesmi":'''Autocue SMI Protocol''',
"autocuelog":'''Autocue Logger Protocol''',
"cardbox":'''Cardbox''',
"cardbox-http":'''Cardbox HTTP''',
"business":'''Business protocol''',
"geolocate":'''Geolocate protocol''',
"personnel":'''Personnel protocol''',
"sim-control":'''simulator control port''',
"wsynch":'''Web Synchronous Services''',
"ksysguard":'''KDE System Guard''',
"cs-auth-svr":'''CS-Authenticate Svr Port''',
"ccmad":'''CCM AutoDiscover''',
"mctet-master":'''MCTET Master''',
"mctet-gateway":'''MCTET Gateway''',
"mctet-jserv":'''MCTET Jserv''',
"pkagent":'''PKAgent''',
"d2000kernel":'''D2000 Kernel Port''',
"d2000webserver":'''D2000 Webserver Port''',
"vtr-emulator":'''MTI VTR Emulator port''',
"edix":'''EDI Translation Protocol''',
"beacon-port":'''Beacon Port''',
"a13-an":'''A13-AN Interface''',
"ctx-bridge":'''CTX Bridge Port''',
"ndl-aas":'''Active API Server Port''',
"netport-id":'''NetPort Discovery Port''',
"icpv2":'''ICPv2''',
"netbookmark":'''Net Book Mark''',
"ms-rule-engine":'''Microsoft Business Rule Engine Update Service''',
"prism-deploy":'''Prism Deploy User Port''',
"ecp":'''Extensible Code Protocol''',
"peerbook-port":'''PeerBook Port''',
"grubd":'''Grub Server Port''',
"rtnt-1":'''rtnt-1 data packets''',
"rtnt-2":'''rtnt-2 data packets''',
"incognitorv":'''Incognito Rendez-Vous''',
"ariliamulti":'''Arilia Multiplexor''',
"vmodem":'''VMODEM''',
"rdc-wh-eos":'''RDC WH EOS''',
"seaview":'''Sea View''',
"tarantella":'''Tarantella''',
"csi-lfap":'''CSI-LFAP''',
"bears-02":'''bears-02''',
"rfio":'''RFIO''',
"nm-game-admin":'''NetMike Game Administrator''',
"nm-game-server":'''NetMike Game Server''',
"nm-asses-admin":'''NetMike Assessor Administrator''',
"nm-assessor":'''NetMike Assessor''',
"feitianrockey":'''FeiTian Port''',
"s8-client-port":'''S8Cargo Client Port''',
"ccmrmi":'''ON RMI Registry''',
"jpegmpeg":'''JpegMpeg Port''',
"indura":'''Indura Collector''',
"e3consultants":'''CCC Listener Port''',
"stvp":'''SmashTV Protocol''',
"navegaweb-port":'''NavegaWeb Tarification''',
"tip-app-server":'''TIP Application Server''',
"doc1lm":'''DOC1 License Manager''',
"sflm":'''SFLM''',
"res-sap":'''RES-SAP''',
"imprs":'''IMPRS''',
"newgenpay":'''Newgenpay Engine Service''',
"sossecollector":'''Quest Spotlight Out-Of-Process Collector''',
"nowcontact":'''Now Contact Public Server''',
"poweronnud":'''Now Up-to-Date Public Server''',
"serverview-as":'''SERVERVIEW-AS''',
"serverview-asn":'''SERVERVIEW-ASN''',
"serverview-gf":'''SERVERVIEW-GF''',
"serverview-rm":'''SERVERVIEW-RM''',
"serverview-icc":'''SERVERVIEW-ICC''',
"armi-server":'''ARMI Server''',
"t1-e1-over-ip":'''T1_E1_Over_IP''',
"ars-master":'''ARS Master''',
"phonex-port":'''Phonex Protocol''',
"radclientport":'''Radiance UltraEdge Port''',
"h2gf-w-2m":'''H2GF W.2m Handover prot.''',
"mc-brk-srv":'''Millicent Broker Server''',
"bmcpatrolagent":'''BMC Patrol Agent''',
"bmcpatrolrnvu":'''BMC Patrol Rendezvous''',
"cops-tls":'''COPS/TLS''',
"apogeex-port":'''ApogeeX Port''',
"smpppd":'''SuSE Meta PPPD''',
"iiw-port":'''IIW Monitor User Port''',
"odi-port":'''Open Design Listen Port''',
"brcm-comm-port":'''Broadcom Port''',
"pcle-infex":'''Pinnacle Sys InfEx Port''',
"csvr-proxy":'''ConServR Proxy''',
"csvr-sslproxy":'''ConServR SSL Proxy''',
"firemonrcc":'''FireMon Revision Control''',
"spandataport":'''SpanDataPort''',
"magbind":'''Rockstorm MAG protocol''',
"ncu-1":'''Network Control Unit''',
"ncu-2":'''Network Control Unit''',
"embrace-dp-s":'''Embrace Device Protocol Server''',
"embrace-dp-c":'''Embrace Device Protocol Client''',
"dmod-workspace":'''DMOD WorkSpace''',
"tick-port":'''Press-sense Tick Port''',
"cpq-tasksmart":'''CPQ-TaskSmart''',
"intraintra":'''IntraIntra''',
"netwatcher-mon":'''Network Watcher Monitor''',
"netwatcher-db":'''Network Watcher DB Access''',
"isns":'''iSNS Server Port''',
"ironmail":'''IronMail POP Proxy''',
"vx-auth-port":'''Veritas Authentication Port''',
"pfu-prcallback":'''PFU PR Callback''',
"netwkpathengine":'''HP OpenView Network Path Engine Server''',
"flamenco-proxy":'''Flamenco Networks Proxy''',
"avsecuremgmt":'''Avocent Secure Management''',
"surveyinst":'''Survey Instrument''',
"neon24x7":'''NEON 24X7 Mission Control''',
"jmq-daemon-1":'''JMQ Daemon Port 1''',
"jmq-daemon-2":'''JMQ Daemon Port 2''',
"ferrari-foam":'''Ferrari electronic FOAM''',
"unite":'''Unified IP & Telecom Environment''',
"smartpackets":'''EMC SmartPackets''',
"wms-messenger":'''WMS Messenger''',
"xnm-ssl":'''XML NM over SSL''',
"xnm-clear-text":'''XML NM over TCP''',
"glbp":'''Gateway Load Balancing Pr''',
"digivote":'''DIGIVOTE (R) Vote-Server''',
"aes-discovery":'''AES Discovery Port''',
"fcip-port":'''FCIP''',
"isi-irp":'''ISI Industry Software IRP''',
"dwnmshttp":'''DiamondWave NMS Server''',
"dwmsgserver":'''DiamondWave MSG Server''',
"global-cd-port":'''Global CD Port''',
"sftdst-port":'''Software Distributor Port''',
"vidigo":'''VidiGo communication (previous was: Delta Solutions Direct)''',
"mdtp":'''MDT port''',
"whisker":'''WhiskerControl main port''',
"alchemy":'''Alchemy Server''',
"mdap-port":'''MDAP port''',
"apparenet-ts":'''appareNet Test Server''',
"apparenet-tps":'''appareNet Test Packet Sequencer''',
"apparenet-as":'''appareNet Analysis Server''',
"apparenet-ui":'''appareNet User Interface''',
"triomotion":'''Trio Motion Control Port''',
"sysorb":'''SysOrb Monitoring Server''',
"sdp-id-port":'''Session Description ID''',
"timelot":'''Timelot Port''',
"onesaf":'''OneSAF''',
"vieo-fe":'''VIEO Fabric Executive''',
"dvt-system":'''DVT SYSTEM PORT''',
"dvt-data":'''DVT DATA LINK''',
"procos-lm":'''PROCOS LM''',
"ssp":'''State Sync Protocol''',
"hicp":'''HMS hicp port''',
"sysscanner":'''Sys Scanner''',
"dhe":'''DHE port''',
"pda-data":'''PDA Data''',
"pda-sys":'''PDA System''',
"semaphore":'''Semaphore Connection Port''',
"cpqrpm-agent":'''Compaq RPM Agent Port''',
"cpqrpm-server":'''Compaq RPM Server Port''',
"ivecon-port":'''Ivecon Server Port''',
"epncdp2":'''Epson Network Common Devi''',
"iscsi-target":'''iSCSI port''',
"winshadow":'''winShadow''',
"necp":'''NECP''',
"ecolor-imager":'''E-Color Enterprise Imager''',
"ccmail":'''cc:mail/lotus''',
"altav-tunnel":'''Altav Tunnel''',
"ns-cfg-server":'''NS CFG Server''',
"ibm-dial-out":'''IBM Dial Out''',
"msft-gc":'''Microsoft Global Catalog''',
"msft-gc-ssl":'''Microsoft Global Catalog with LDAP/SSL''',
"verismart":'''Verismart''',
"csoft-prev":'''CSoft Prev Port''',
"user-manager":'''Fujitsu User Manager''',
"sxmp":'''Simple Extensible Multiplexed Protocol''',
"ordinox-server":'''Ordinox Server''',
"samd":'''SAMD''',
"maxim-asics":'''Maxim ASICs''',
"awg-proxy":'''AWG Proxy''',
"lkcmserver":'''LKCM Server''',
"admind":'''admind''',
"vs-server":'''VS Server''',
"sysopt":'''SYSOPT''',
"datusorb":'''Datusorb''',
"Apple Remote Desktop (Net Assistant)":'''Net Assistant''',
"4talk":'''4Talk''',
"plato":'''Plato''',
"e-net":'''E-Net''',
"directvdata":'''DIRECTVDATA''',
"cops":'''COPS''',
"enpc":'''ENPC''',
"caps-lm":'''CAPS LOGISTICS TOOLKIT - LM''',
"sah-lm":'''S A Holditch & Associates - LM''',
"cart-o-rama":'''Cart O Rama''',
"fg-fps":'''fg-fps''',
"fg-gip":'''fg-gip''',
"dyniplookup":'''Dynamic IP Lookup''',
"rib-slm":'''Rib License Manager''',
"cytel-lm":'''Cytel License Manager''',
"deskview":'''DeskView''',
"pdrncs":'''pdrncs''',
"mcs-fastmail":'''MCS Fastmail''',
"opsession-clnt":'''OP Session Client''',
"opsession-srvr":'''OP Session Server''',
"odette-ftp":'''ODETTE-FTP''',
"mysql":'''MySQL''',
"opsession-prxy":'''OP Session Proxy''',
"tns-server":'''TNS Server''',
"tns-adv":'''TNS ADV''',
"dyna-access":'''Dyna Access''',
"mcns-tel-ret":'''MCNS Tel Ret''',
"appman-server":'''Application Management Server''',
"uorb":'''Unify Object Broker''',
"uohost":'''Unify Object Host''',
"cdid":'''CDID''',
"aicc-cmi":'''AICC/CMI''',
"vsaiport":'''VSAI PORT''',
"ssrip":'''Swith to Swith Routing Information Protocol''',
"sdt-lmd":'''SDT License Manager''',
"officelink2000":'''Office Link 2000''',
"vnsstr":'''VNSSTR''',
"sftu":'''SFTU''',
"bbars":'''BBARS''',
"egptlm":'''Eaglepoint License Manager''',
"hp-device-disc":'''HP Device Disc''',
"mcs-calypsoicf":'''MCS Calypso ICF''',
"mcs-messaging":'''MCS Messaging''',
"mcs-mailsvr":'''MCS Mail Server''',
"dec-notes":'''DEC Notes''',
"directv-web":'''Direct TV Webcasting''',
"directv-soft":'''Direct TV Software Updates''',
"directv-tick":'''Direct TV Tickers''',
"directv-catlg":'''Direct TV Data Catalog''',
"anet-b":'''OMF data b''',
"anet-l":'''OMF data l''',
"anet-m":'''OMF data m''',
"anet-h":'''OMF data h''',
"webtie":'''WebTIE''',
"ms-cluster-net":'''MS Cluster Net''',
"bnt-manager":'''BNT Manager''',
"influence":'''Influence''',
"trnsprntproxy":'''Trnsprnt Proxy''',
"phoenix-rpc":'''Phoenix RPC''',
"pangolin-laser":'''Pangolin Laser''',
"chevinservices":'''Chevin Services''',
"findviatv":'''FINDVIATV''',
"btrieve":'''Btrieve port''',
"ssql":'''Scalable SQL''',
"fatpipe":'''FATPIPE''',
"suitjd":'''SUITJD''',
"ordinox-dbase":'''Ordinox Dbase''',
"upnotifyps":'''UPNOTIFYPS''',
"adtech-test":'''Adtech Test IP''',
"mpsysrmsvr":'''Mp Sys Rmsvr''',
"wg-netforce":'''WG NetForce''',
"kv-server":'''KV Server''',
"kv-agent":'''KV Agent''',
"dj-ilm":'''DJ ILM''',
"nati-vi-server":'''NATI Vi Server''',
"creativeserver":'''Creative Server''',
"contentserver":'''Content Server''',
"creativepartnr":'''Creative Partner''',
"tip2":'''TIP 2''',
"lavenir-lm":'''Lavenir License Manager''',
"cluster-disc":'''Cluster Disc''',
"vsnm-agent":'''VSNM Agent''',
"cdbroker":'''CD Broker''',
"cogsys-lm":'''Cogsys Network License Manager''',
"wsicopy":'''WSICOPY''',
"socorfs":'''SOCORFS''',
"sns-channels":'''SNS Channels''',
"geneous":'''Geneous''',
"fujitsu-neat":'''Fujitsu Network Enhanced Antitheft function''',
"esp-lm":'''Enterprise Software Products License Manager''',
"hp-clic":'''Cluster Management Services''',
"qnxnetman":'''qnxnetman''',
"gprs-data":'''GPRS Data''',
"backroomnet":'''Back Room Net''',
"cbserver":'''CB Server''',
"ms-wbt-server":'''MS WBT Server''',
"dsc":'''Distributed Service Coordinator''',
"savant":'''SAVANT''',
"efi-lm":'''EFI License Management''',
"d2k-tapestry1":'''D2K Tapestry Client to Server''',
"d2k-tapestry2":'''D2K Tapestry Server to Server''',
"dyna-lm":'''Dyna License Manager (Elam)''',
"printer-agent":'''Printer Agent
IANA assigned this well-formed service name as a replacement for "printer_agent".''',
"printer_agent":'''Printer Agent''',
"cloanto-lm":'''Cloanto License Manager''',
"mercantile":'''Mercantile''',
"csms":'''CSMS''',
"csms2":'''CSMS2''',
"filecast":'''filecast''',
"fxaengine-net":'''FXa Engine Network Port''',
"nokia-ann-ch1":'''Nokia Announcement ch 1''',
"nokia-ann-ch2":'''Nokia Announcement ch 2''',
"ldap-admin":'''LDAP admin server port''',
"BESApi":'''BES Api Port''',
"networklens":'''NetworkLens Event Port''',
"networklenss":'''NetworkLens SSL Event''',
"biolink-auth":'''BioLink Authenteon server''',
"xmlblaster":'''xmlBlaster''',
"svnet":'''SpecView Networking''',
"wip-port":'''BroadCloud WIP Port''',
"bcinameservice":'''BCI Name Service''',
"commandport":'''AirMobile IS Command Port''',
"csvr":'''ConServR file translation''',
"rnmap":'''Remote nmap''',
"softaudit":'''Isogon SoftAudit''',
"ifcp-port":'''iFCP User Port''',
"bmap":'''Bull Apprise portmapper''',
"rusb-sys-port":'''Remote USB System Port''',
"xtrm":'''xTrade Reliable Messaging''',
"xtrms":'''xTrade over TLS/SSL''',
"agps-port":'''AGPS Access Port''',
"arkivio":'''Arkivio Storage Protocol''',
"websphere-snmp":'''WebSphere SNMP''',
"twcss":'''2Wire CSS''',
"gcsp":'''GCSP user port''',
"ssdispatch":'''Scott Studios Dispatch''',
"ndl-als":'''Active License Server Port''',
"osdcp":'''Secure Device Protocol''',
"opnet-smp":'''OPNET Service Management Platform''',
"opencm":'''OpenCM Server''',
"pacom":'''Pacom Security User Port''',
"gc-config":'''GuardControl Exchange Protocol''',
"autocueds":'''Autocue Directory Service''',
"spiral-admin":'''Spiralcraft Admin''',
"hri-port":'''HRI Interface Port''',
"ans-console":'''Net Steward Mgmt Console''',
"connect-client":'''OC Connect Client''',
"connect-server":'''OC Connect Server''',
"ov-nnm-websrv":'''OpenView Network Node Manager WEB Server''',
"denali-server":'''Denali Server''',
"monp":'''Media Object Network''',
"3comfaxrpc":'''3Com FAX RPC port''',
"directnet":'''DirectNet IM System''',
"dnc-port":'''Discovery and Net Config''',
"hotu-chat":'''HotU Chat''',
"castorproxy":'''CAStorProxy''',
"asam":'''ASAM Services''',
"sabp-signal":'''SABP-Signalling Protocol''',
"pscupd":'''PSC Update Port''',
"mira":'''Apple Remote Access Protocol''',
"prsvp":'''RSVP Port''',
"vat":'''VAT default data''',
"vat-control":'''VAT default control''',
"d3winosfi":'''D3WinOSFI''',
"integral":'''TIP Integral''',
"edm-manager":'''EDM Manger''',
"edm-stager":'''EDM Stager''',
"edm-std-notify":'''EDM STD Notify''',
"edm-adm-notify":'''EDM ADM Notify''',
"edm-mgr-sync":'''EDM MGR Sync''',
"edm-mgr-cntrl":'''EDM MGR Cntrl''',
"workflow":'''WORKFLOW''',
"rcst":'''RCST''',
"ttcmremotectrl":'''TTCM Remote Controll''',
"pluribus":'''Pluribus''',
"jt400":'''jt400''',
"jt400-ssl":'''jt400-ssl''',
"jaugsremotec-1":'''JAUGS N-G Remotec 1''',
"jaugsremotec-2":'''JAUGS N-G Remotec 2''',
"ttntspauto":'''TSP Automation''',
"genisar-port":'''Genisar Comm Port''',
"nppmp":'''NVIDIA Mgmt Protocol''',
"ecomm":'''eComm link port''',
"stun":'''Session Traversal Utilities for NAT (STUN) port''',
"turn":'''TURN over TCP''',
"stun-behavior":'''STUN Behavior Discovery over TCP''',
"twrpc":'''2Wire RPC''',
"plethora":'''Secure Virtual Workspace''',
"cleanerliverc":'''CleanerLive remote ctrl''',
"vulture":'''Vulture Monitoring System''',
"slim-devices":'''Slim Devices Protocol''',
"gbs-stp":'''GBS SnapTalk Protocol''',
"celatalk":'''CelaTalk''',
"ifsf-hb-port":'''IFSF Heartbeat Port''',
"ltctcp":'''LISA TCP Transfer Channel''',
"fs-rh-srv":'''FS Remote Host Server''',
"dtp-dia":'''DTP/DIA''',
"colubris":'''Colubris Management Port''',
"swr-port":'''SWR Port''',
"tvdumtray-port":'''TVDUM Tray Port''',
"nut":'''Network UPS Tools''',
"ibm3494":'''IBM 3494''',
"seclayer-tcp":'''securitylayer over tcp''',
"seclayer-tls":'''securitylayer over tls''',
"ipether232port":'''ipEther232Port''',
"dashpas-port":'''DASHPAS user port''',
"sccip-media":'''SccIP Media''',
"rtmp-port":'''RTMP Port''',
"isoft-p2p":'''iSoft-P2P''',
"avinstalldisc":'''Avocent Install Discovery''',
"lsp-ping":'''MPLS LSP-echo Port''',
"ironstorm":'''IronStorm game server''',
"ccmcomm":'''CCM communications port''',
"apc-3506":'''APC 3506''',
"nesh-broker":'''Nesh Broker Port''',
"interactionweb":'''Interaction Web''',
"vt-ssl":'''Virtual Token SSL Port''',
"xss-port":'''XSS Port''',
"webmail-2":'''WebMail/2''',
"aztec":'''Aztec Distribution Port''',
"arcpd":'''Adaptec Remote Protocol''',
"must-p2p":'''MUST Peer to Peer''',
"must-backplane":'''MUST Backplane''',
"smartcard-port":'''Smartcard Port''',
"802-11-iapp":'''IEEE 802.11 WLANs WG IAPP''',
"artifact-msg":'''Artifact Message Server''',
"nvmsgd":'''Netvion Messenger Port''',
"galileolog":'''Netvion Galileo Log Port''',
"mc3ss":'''Telequip Labs MC3SS''',
"nfs-domainroot":'''NFS service for the domain root, the root of an organization's published file namespace.''',
"nssocketport":'''DO over NSSocketPort''',
"odeumservlink":'''Odeum Serverlink''',
"ecmport":'''ECM Server port''',
"eisport":'''EIS Server port''',
"starquiz-port":'''starQuiz Port''',
"beserver-msg-q":'''VERITAS Backup Exec Server''',
"jboss-iiop":'''JBoss IIOP''',
"jboss-iiop-ssl":'''JBoss IIOP/SSL''',
"gf":'''Grid Friendly''',
"joltid":'''Joltid''',
"raven-rmp":'''Raven Remote Management Control''',
"raven-rdp":'''Raven Remote Management Data''',
"urld-port":'''URL Daemon Port''',
"ms-la":'''MS-LA''',
"snac":'''SNAC''',
"ni-visa-remote":'''Remote NI-VISA port''',
"ibm-diradm":'''IBM Directory Server''',
"ibm-diradm-ssl":'''IBM Directory Server SSL''',
"pnrp-port":'''PNRP User Port''',
"voispeed-port":'''VoiSpeed Port''',
"hacl-monitor":'''HA cluster monitor''',
"qftest-lookup":'''qftest Lookup Port''',
"teredo":'''Teredo Port''',
"camac":'''CAMAC equipment''',
"symantec-sim":'''Symantec SIM''',
"interworld":'''Interworld''',
"tellumat-nms":'''Tellumat MDR NMS''',
"ssmpp":'''Secure SMPP''',
"apcupsd":'''Apcupsd Information Port''',
"taserver":'''TeamAgenda Server Port''',
"rbr-discovery":'''Red Box Recorder ADP''',
"questnotify":'''Quest Notification Server''',
"razor":'''Vipul's Razor''',
"sky-transport":'''Sky Transport Protocol''',
"personalos-001":'''PersonalOS Comm Port''',
"mcp-port":'''MCP user port''',
"cctv-port":'''CCTV control port''',
"iniserve-port":'''INIServe port''',
"bmc-onekey":'''BMC-OneKey''',
"sdbproxy":'''SDBProxy''',
"watcomdebug":'''Watcom Debug''',
"esimport":'''Electromed SIM port''',
"m2pa":'''M2PA''',
"quest-data-hub":'''Quest Data Hub''',
"oap":'''Object Access Protocol''',
"oap-s":'''Object Access Protocol over SSL''',
"mbg-ctrl":'''Meinberg Control Service''',
"mccwebsvr-port":'''MCC Web Server Port''',
"megardsvr-port":'''MegaRAID Server Port''',
"megaregsvrport":'''Registration Server Port''',
"tag-ups-1":'''Advantage Group UPS Suite''',
"dmaf-server":'''DMAF Server''',
"ccm-port":'''Coalsere CCM Port''',
"cmc-port":'''Coalsere CMC Port''',
"config-port":'''Configuration Port''',
"data-port":'''Data Port''',
"ttat3lb":'''Tarantella Load Balancing''',
"nati-svrloc":'''NATI-ServiceLocator''',
"kfxaclicensing":'''Ascent Capture Licensing''',
"press":'''PEG PRESS Server''',
"canex-watch":'''CANEX Watch System''',
"u-dbap":'''U-DBase Access Protocol''',
"emprise-lls":'''Emprise License Server''',
"emprise-lsc":'''License Server Console''',
"p2pgroup":'''Peer to Peer Grouping''',
"sentinel":'''Sentinel Server''',
"isomair":'''isomair''',
"wv-csp-sms":'''WV CSP SMS Binding''',
"gtrack-server":'''LOCANIS G-TRACK Server''',
"gtrack-ne":'''LOCANIS G-TRACK NE Port''',
"bpmd":'''BP Model Debugger''',
"mediaspace":'''MediaSpace''',
"shareapp":'''ShareApp''',
"iw-mmogame":'''Illusion Wireless MMOG''',
"a14":'''A14 (AN-to-SC/MM)''',
"a15":'''A15 (AN-to-AN)''',
"quasar-server":'''Quasar Accounting Server''',
"trap-daemon":'''text relay-answer''',
"visinet-gui":'''Visinet Gui''',
"infiniswitchcl":'''InfiniSwitch Mgr Client''',
"int-rcv-cntrl":'''Integrated Rcvr Control''',
"bmc-jmx-port":'''BMC JMX Port''',
"comcam-io":'''ComCam IO Port''',
"splitlock":'''Splitlock Server''',
"precise-i3":'''Precise I3''',
"trendchip-dcp":'''Trendchip control protocol''',
"cpdi-pidas-cm":'''CPDI PIDAS Connection Mon''',
"echonet":'''ECHONET''',
"six-degrees":'''Six Degrees Port''',
"hp-dataprotect":'''HP Data Protector''',
"alaris-disc":'''Alaris Device Discovery''',
"sigma-port":'''Satchwell Sigma''',
"start-network":'''Start Messaging Network''',
"cd3o-protocol":'''cd3o Control Protocol''',
"sharp-server":'''ATI SHARP Logic Engine''',
"aairnet-1":'''AAIR-Network 1''',
"aairnet-2":'''AAIR-Network 2''',
"ep-pcp":'''EPSON Projector Control Port''',
"ep-nsp":'''EPSON Network Screen Port''',
"ff-lr-port":'''FF LAN Redundancy Port''',
"haipe-discover":'''HAIPIS Dynamic Discovery''',
"dist-upgrade":'''Distributed Upgrade Port''',
"volley":'''Volley''',
"bvcdaemon-port":'''bvControl Daemon''',
"jamserverport":'''Jam Server Port''',
"ept-machine":'''EPT Machine Interface''',
"escvpnet":'''ESC/VP.net''',
"cs-remote-db":'''C&S Remote Database Port''',
"cs-services":'''C&S Web Services Port''',
"distcc":'''distributed compiler''',
"wacp":'''Wyrnix AIS port''',
"hlibmgr":'''hNTSP Library Manager''',
"sdo":'''Simple Distributed Objects''',
"servistaitsm":'''SerVistaITSM''',
"scservp":'''Customer Service Port''',
"ehp-backup":'''EHP Backup Protocol''',
"xap-ha":'''Extensible Automation''',
"netplay-port1":'''Netplay Port 1''',
"netplay-port2":'''Netplay Port 2''',
"juxml-port":'''Juxml Replication port''',
"audiojuggler":'''AudioJuggler''',
"ssowatch":'''ssowatch''',
"cyc":'''Cyc''',
"xss-srv-port":'''XSS Server Port''',
"splitlock-gw":'''Splitlock Gateway''',
"fjcp":'''Fujitsu Cooperation Port''',
"nmmp":'''Nishioka Miyuki Msg Protocol''',
"prismiq-plugin":'''PRISMIQ VOD plug-in''',
"xrpc-registry":'''XRPC Registry''',
"vxcrnbuport":'''VxCR NBU Default Port''',
"tsp":'''Tunnel Setup Protocol''',
"vaprtm":'''VAP RealTime Messenger''',
"abatemgr":'''ActiveBatch Exec Agent''',
"abatjss":'''ActiveBatch Job Scheduler''',
"immedianet-bcn":'''ImmediaNet Beacon''',
"ps-ams":'''PlayStation AMS (Secure)''',
"apple-sasl":'''Apple SASL''',
"can-nds-ssl":'''IBM Tivoli Directory Service using SSL''',
"can-ferret-ssl":'''IBM Tivoli Directory Service using SSL''',
"pserver":'''pserver''',
"dtp":'''DIRECWAY Tunnel Protocol''',
"ups-engine":'''UPS Engine Port''',
"ent-engine":'''Enterprise Engine Port''',
"eserver-pap":'''IBM eServer PAP''',
"infoexch":'''IBM Information Exchange''',
"dell-rm-port":'''Dell Remote Management''',
"casanswmgmt":'''CA SAN Switch Management''',
"smile":'''SMILE TCP/UDP Interface''',
"efcp":'''e Field Control (EIBnet)''',
"lispworks-orb":'''LispWorks ORB''',
"mediavault-gui":'''Openview Media Vault GUI''',
"wininstall-ipc":'''WinINSTALL IPC Port''',
"calltrax":'''CallTrax Data Port''',
"va-pacbase":'''VisualAge Pacbase server''',
"roverlog":'''RoverLog IPC''',
"ipr-dglt":'''DataGuardianLT''',
"Escale (Newton Dock)":'''Newton Dock''',
"npds-tracker":'''NPDS Tracker''',
"bts-x73":'''BTS X73 Port''',
"cas-mapi":'''EMC SmartPackets-MAPI''',
"bmc-ea":'''BMC EDV/EA''',
"faxstfx-port":'''FAXstfX''',
"dsx-agent":'''DS Expert Agent''',
"tnmpv2":'''Trivial Network Management''',
"simple-push":'''simple-push''',
"simple-push-s":'''simple-push Secure''',
"daap":'''Digital Audio Access Protocol (iTunes)''',
"svn":'''Subversion''',
"magaya-network":'''Magaya Network Port''',
"intelsync":'''Brimstone IntelSync''',
"bmc-data-coll":'''BMC Data Collection''',
"telnetcpcd":'''Telnet Com Port Control''',
"nw-license":'''NavisWorks License System''',
"sagectlpanel":'''SAGECTLPANEL''',
"kpn-icw":'''Internet Call Waiting''',
"lrs-paging":'''LRS NetPage''',
"netcelera":'''NetCelera''',
"ws-discovery":'''Web Service Discovery''',
"adobeserver-3":'''Adobe Server 3''',
"adobeserver-4":'''Adobe Server 4''',
"adobeserver-5":'''Adobe Server 5''',
"rt-event":'''Real-Time Event Port''',
"rt-event-s":'''Real-Time Event Secure Port''',
"sun-as-iiops":'''Sun App Svr - Naming''',
"ca-idms":'''CA-IDMS Server''',
"portgate-auth":'''PortGate Authentication''',
"edb-server2":'''EBD Server 2''',
"sentinel-ent":'''Sentinel Enterprise''',
"tftps":'''TFTP over TLS''',
"delos-dms":'''DELOS Direct Messaging''',
"anoto-rendezv":'''Anoto Rendezvous Port''',
"wv-csp-sms-cir":'''WV CSP SMS CIR Channel''',
"wv-csp-udp-cir":'''WV CSP UDP/IP CIR Channel''',
"opus-services":'''OPUS Server Port''',
"itelserverport":'''iTel Server Port''',
"ufastro-instr":'''UF Astro. Instr. Services''',
"xsync":'''Xsync''',
"xserveraid":'''Xserve RAID''',
"sychrond":'''Sychron Service Daemon''',
"blizwow":'''World of Warcraft''',
"na-er-tip":'''Netia NA-ER Port''',
"array-manager":'''Xyratex Array Manager''',
"e-mdu":'''Ericsson Mobile Data Unit''',
"e-woa":'''Ericsson Web on Air''',
"fksp-audit":'''Fireking Audit Port''',
"client-ctrl":'''Client Control''',
"smap":'''Service Manager''',
"m-wnn":'''Mobile Wnn''',
"multip-msg":'''Multipuesto Msg Port''',
"synel-data":'''Synel Data Collection Port''',
"pwdis":'''Password Distribution''',
"rs-rmi":'''RealSpace RMI''',
"xpanel":'''XPanel Daemon''',
"versatalk":'''versaTalk Server Port''',
"launchbird-lm":'''Launchbird LicenseManager''',
"heartbeat":'''Heartbeat Protocol''',
"wysdma":'''WysDM Agent''',
"cst-port":'''CST - Configuration & Service Tracker''',
"ipcs-command":'''IP Control Systems Ltd.''',
"sasg":'''SASG''',
"gw-call-port":'''GWRTC Call Port''',
"linktest":'''LXPRO.COM LinkTest''',
"linktest-s":'''LXPRO.COM LinkTest SSL''',
"webdata":'''webData''',
"cimtrak":'''CimTrak''',
"cbos-ip-port":'''CBOS/IP ncapsalation port''',
"gprs-cube":'''CommLinx GPRS Cube''',
"vipremoteagent":'''Vigil-IP RemoteAgent''',
"nattyserver":'''NattyServer Port''',
"timestenbroker":'''TimesTen Broker Port''',
"sas-remote-hlp":'''SAS Remote Help Server''',
"canon-capt":'''Canon CAPT Port''',
"grf-port":'''GRF Server Port''',
"apw-registry":'''apw RMI registry''',
"exapt-lmgr":'''Exapt License Manager''',
"adtempusclient":'''adTempus Client''',
"gsakmp":'''gsakmp port''',
"gbs-smp":'''GBS SnapMail Protocol''',
"xo-wave":'''XO Wave Control Port''',
"mni-prot-rout":'''MNI Protected Routing''',
"rtraceroute":'''Remote Traceroute''',
"listmgr-port":'''ListMGR Port''',
"rblcheckd":'''rblcheckd server daemon''',
"haipe-otnk":'''HAIPE Network Keying''',
"cindycollab":'''Cinderella Collaboration''',
"paging-port":'''RTP Paging Port''',
"ctp":'''Chantry Tunnel Protocol''',
"ctdhercules":'''ctdhercules''',
"zicom":'''ZICOM''',
"ispmmgr":'''ISPM Manager Port''',
"dvcprov-port":'''Device Provisioning Port''',
"jibe-eb":'''Jibe EdgeBurst''',
"c-h-it-port":'''Cutler-Hammer IT Port''',
"cognima":'''Cognima Replication''',
"nnp":'''Nuzzler Network Protocol''',
"abcvoice-port":'''ABCvoice server port''',
"iso-tp0s":'''Secure ISO TP0 port''',
"bim-pem":'''Impact Mgr./PEM Gateway''',
"bfd-control":'''BFD Control Protocol''',
"bfd-echo":'''BFD Echo Protocol''',
"upstriggervsw":'''VSW Upstrigger port''',
"fintrx":'''Fintrx''',
"isrp-port":'''SPACEWAY Routing port''',
"remotedeploy":'''RemoteDeploy Administration Port [July 2003]''',
"quickbooksrds":'''QuickBooks RDS''',
"tvnetworkvideo":'''TV NetworkVideo Data port''',
"sitewatch":'''e-Watch Corporation SiteWatch''',
"dcsoftware":'''DataCore Software''',
"jaus":'''JAUS Robots''',
"myblast":'''myBLAST Mekentosj port''',
"spw-dialer":'''Spaceway Dialer''',
"idps":'''idps''',
"minilock":'''Minilock''',
"radius-dynauth":'''RADIUS Dynamic Authorization''',
"pwgpsi":'''Print Services Interface''',
"ibm-mgr":'''ibm manager service''',
"vhd":'''VHD''',
"soniqsync":'''SoniqSync''',
"iqnet-port":'''Harman IQNet Port''',
"tcpdataserver":'''ThorGuard Server Port''',
"wsmlb":'''Remote System Manager''',
"spugna":'''SpuGNA Communication Port''',
"sun-as-iiops-ca":'''Sun App Svr-IIOPClntAuth''',
"apocd":'''Java Desktop System Configuration Agent''',
"wlanauth":'''WLAN AS server''',
"amp":'''AMP''',
"neto-wol-server":'''netO WOL Server''',
"rap-ip":'''Rhapsody Interface Protocol''',
"neto-dcs":'''netO DCS''',
"lansurveyorxml":'''LANsurveyor XML''',
"sunlps-http":'''Sun Local Patch Server''',
"tapeware":'''Yosemite Tech Tapeware''',
"crinis-hb":'''Crinis Heartbeat''',
"epl-slp":'''EPL Sequ Layer Protocol''',
"scp":'''Siemens AuD SCP''',
"pmcp":'''ATSC PMCP Standard''',
"acp-discovery":'''Compute Pool Discovery''',
"acp-conduit":'''Compute Pool Conduit''',
"acp-policy":'''Compute Pool Policy''',
"ffserver":'''Antera FlowFusion Process Simulation''',
"warmux":'''WarMUX game server''',
"netmpi":'''Netadmin Systems MPI service''',
"neteh":'''Netadmin Systems Event Handler''',
"neteh-ext":'''Netadmin Systems Event Handler External''',
"cernsysmgmtagt":'''Cerner System Management Agent''',
"dvapps":'''Docsvault Application Service''',
"xxnetserver":'''xxNETserver''',
"aipn-auth":'''AIPN LS Authentication''',
"spectardata":'''Spectar Data Stream Service''',
"spectardb":'''Spectar Database Rights Service''',
"markem-dcp":'''MARKEM NEXTGEN DCP''',
"mkm-discovery":'''MARKEM Auto-Discovery''',
"sos":'''Scito Object Server''',
"amx-rms":'''AMX Resource Management Suite''',
"flirtmitmir":'''www.FlirtMitMir.de''',
"zfirm-shiprush3":'''Z-Firm ShipRush v3''',
"nhci":'''NHCI status port''',
"quest-agent":'''Quest Common Agent''',
"rnm":'''RNM''',
"v-one-spp":'''V-ONE Single Port Proxy''',
"an-pcp":'''Astare Network PCP''',
"msfw-control":'''MS Firewall Control''',
"item":'''IT Environmental Monitor''',
"spw-dnspreload":'''SPACEWAY DNS Preload''',
"qtms-bootstrap":'''QTMS Bootstrap Protocol''',
"spectraport":'''SpectraTalk Port''',
"sse-app-config":'''SSE App Configuration''',
"sscan":'''SONY scanning protocol''',
"stryker-com":'''Stryker Comm Port''',
"opentrac":'''OpenTRAC''',
"informer":'''INFORMER''',
"trap-port":'''Trap Port''',
"trap-port-mom":'''Trap Port MOM''',
"nav-port":'''Navini Port''',
"sasp":'''Server/Application State Protocol (SASP)''',
"winshadow-hd":'''winShadow Host Discovery''',
"giga-pocket":'''GIGA-POCKET''',
"asap-tcp":'''asap tcp port''',
"asap-tcp-tls":'''asap/tls tcp port''',
"xpl":'''xpl automation protocol''',
"dzdaemon":'''Sun SDViz DZDAEMON Port''',
"dzoglserver":'''Sun SDViz DZOGLSERVER Port''',
"diameter":'''DIAMETER''',
"ovsam-mgmt":'''hp OVSAM MgmtServer Disco''',
"ovsam-d-agent":'''hp OVSAM HostAgent Disco''',
"avocent-adsap":'''Avocent DS Authorization''',
"oem-agent":'''OEM Agent''',
"fagordnc":'''fagordnc''',
"sixxsconfig":'''SixXS Configuration''',
"pnbscada":'''PNBSCADA''',
"dl-agent":'''DirectoryLockdown Agent
IANA assigned this well-formed service name as a replacement for "dl_agent".''',
"dl_agent":'''DirectoryLockdown Agent''',
"xmpcr-interface":'''XMPCR Interface Port''',
"fotogcad":'''FotoG CAD interface''',
"appss-lm":'''appss license manager''',
"igrs":'''IGRS''',
"idac":'''Data Acquisition and Control''',
"msdts1":'''DTS Service Port''',
"vrpn":'''VR Peripheral Network''',
"softrack-meter":'''SofTrack Metering''',
"topflow-ssl":'''TopFlow SSL''',
"nei-management":'''NEI management port''',
"ciphire-data":'''Ciphire Data Transport''',
"ciphire-serv":'''Ciphire Services''',
"dandv-tester":'''D and V Tester Control Port''',
"ndsconnect":'''Niche Data Server Connect''',
"rtc-pm-port":'''Oracle RTC-PM port''',
"pcc-image-port":'''PCC-image-port''',
"cgi-starapi":'''CGI StarAPI Server''',
"syam-agent":'''SyAM Agent Port''',
"syam-smc":'''SyAm SMC Service Port''',
"sdo-tls":'''Simple Distributed Objects over TLS''',
"sdo-ssh":'''Simple Distributed Objects over SSH''',
"senip":'''IAS, Inc. SmartEye NET Internet Protocol''',
"itv-control":'''ITV Port''',
"udt-os":'''Unidata UDT OS
IANA assigned this well-formed service name as a replacement for "udt_os".''',
"udt_os":'''Unidata UDT OS''',
"nimsh":'''NIM Service Handler''',
"nimaux":'''NIMsh Auxiliary Port''',
"charsetmgr":'''CharsetMGR''',
"omnilink-port":'''Arnet Omnilink Port''',
"mupdate":'''Mailbox Update (MUPDATE) protocol''',
"topovista-data":'''TopoVista elevation data''',
"imoguia-port":'''Imoguia Port''',
"hppronetman":'''HP Procurve NetManagement''',
"surfcontrolcpa":'''SurfControl CPA''',
"prnrequest":'''Printer Request Port''',
"prnstatus":'''Printer Status Port''',
"gbmt-stars":'''Global Maintech Stars''',
"listcrt-port":'''ListCREATOR Port''',
"listcrt-port-2":'''ListCREATOR Port 2''',
"agcat":'''Auto-Graphics Cataloging''',
"wysdmc":'''WysDM Controller''',
"aftmux":'''AFT multiplex port''',
"pktcablemmcops":'''PacketCableMultimediaCOPS''',
"hyperip":'''HyperIP''',
"exasoftport1":'''Exasoft IP Port''',
"herodotus-net":'''Herodotus Net''',
"sor-update":'''Soronti Update Port''',
"symb-sb-port":'''Symbian Service Broker''',
"mpl-gprs-port":'''MPL_GPRS_PORT''',
"zmp":'''Zoran Media Port''',
"winport":'''WINPort''',
"natdataservice":'''ScsTsr''',
"netboot-pxe":'''PXE NetBoot Manager''',
"smauth-port":'''AMS Port''',
"syam-webserver":'''Syam Web Server Port''',
"msr-plugin-port":'''MSR Plugin Port''',
"dyn-site":'''Dynamic Site System''',
"plbserve-port":'''PL/B App Server User Port''',
"sunfm-port":'''PL/B File Manager Port''',
"sdp-portmapper":'''SDP Port Mapper Protocol''',
"mailprox":'''Mailprox''',
"dvbservdsc":'''DVB Service Discovery''',
"dbcontrol-agent":'''Oracle dbControl Agent po
IANA assigned this well-formed service name as a replacement for "dbcontrol_agent".''',
"dbcontrol_agent":'''Oracle dbControl Agent po''',
"aamp":'''Anti-virus Application Management Port''',
"xecp-node":'''XeCP Node Service''',
"homeportal-web":'''Home Portal Web Server''',
"srdp":'''satellite distribution''',
"tig":'''TetraNode Ip Gateway''',
"sops":'''S-Ops Management''',
"emcads":'''EMCADS Server Port''',
"backupedge":'''BackupEDGE Server''',
"ccp":'''Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices''',
"apdap":'''Anton Paar Device Administration Protocol''',
"drip":'''Dynamic Routing Information Protocol''',
"namemunge":'''Name Munging''',
"pwgippfax":'''PWG IPP Facsimile''',
"i3-sessionmgr":'''I3 Session Manager''',
"xmlink-connect":'''Eydeas XMLink Connect''',
"adrep":'''AD Replication RPC''',
"p2pcommunity":'''p2pCommunity''',
"gvcp":'''GigE Vision Control''',
"mqe-broker":'''MQEnterprise Broker''',
"mqe-agent":'''MQEnterprise Agent''',
"treehopper":'''Tree Hopper Networking''',
"bess":'''Bess Peer Assessment''',
"proaxess":'''ProAxess Server''',
"sbi-agent":'''SBI Agent Protocol''',
"thrp":'''Teran Hybrid Routing Protocol''',
"sasggprs":'''SASG GPRS''',
"ati-ip-to-ncpe":'''Avanti IP to NCPE API''',
"bflckmgr":'''BuildForge Lock Manager''',
"ppsms":'''PPS Message Service''',
"ianywhere-dbns":'''iAnywhere DBNS''',
"landmarks":'''Landmark Messages''',
"lanrevagent":'''LANrev Agent''',
"lanrevserver":'''LANrev Server''',
"iconp":'''ict-control Protocol''',
"progistics":'''ConnectShip Progistics''',
"citysearch":'''Remote Applicant Tracking Service''',
"airshot":'''Air Shot''',
"opswagent":'''Opsware Agent''',
"opswmanager":'''Opsware Manager''',
"secure-cfg-svr":'''Secured Configuration Server''',
"smwan":'''Smith Micro Wide Area Network Service''',
"acms":'''Aircraft Cabin Management System''',
"starfish":'''Starfish System Admin''',
"eis":'''ESRI Image Server''',
"eisp":'''ESRI Image Service''',
"mapper-nodemgr":'''MAPPER network node manager''',
"mapper-mapethd":'''MAPPER TCP/IP server''',
"mapper-ws-ethd":'''MAPPER workstation server
IANA assigned this well-formed service name as a replacement for "mapper-ws_ethd".''',
"mapper-ws_ethd":'''MAPPER workstation server''',
"centerline":'''Centerline''',
"dcs-config":'''DCS Configuration Port''',
"bv-queryengine":'''BindView-Query Engine''',
"bv-is":'''BindView-IS''',
"bv-smcsrv":'''BindView-SMCServer''',
"bv-ds":'''BindView-DirectoryServer''',
"bv-agent":'''BindView-Agent''',
"iss-mgmt-ssl":'''ISS Management Svcs SSL''',
"abcsoftware":'''abcsoftware-01''',
"agentsease-db":'''aes_db''',
"dnx":'''Distributed Nagios Executor Service''',
"nvcnet":'''Norman distributes scanning service''',
"terabase":'''Terabase''',
"newoak":'''NewOak''',
"pxc-spvr-ft":'''pxc-spvr-ft''',
"pxc-splr-ft":'''pxc-splr-ft''',
"pxc-roid":'''pxc-roid''',
"pxc-pin":'''pxc-pin''',
"pxc-spvr":'''pxc-spvr''',
"pxc-splr":'''pxc-splr''',
"netcheque":'''NetCheque accounting''',
"chimera-hwm":'''Chimera HWM''',
"samsung-unidex":'''Samsung Unidex''',
"altserviceboot":'''Alternate Service Boot''',
"pda-gate":'''PDA Gate''',
"acl-manager":'''ACL Manager''',
"taiclock":'''TAICLOCK''',
"talarian-mcast1":'''Talarian Mcast''',
"talarian-mcast2":'''Talarian Mcast''',
"talarian-mcast3":'''Talarian Mcast''',
"talarian-mcast4":'''Talarian Mcast''',
"talarian-mcast5":'''Talarian Mcast''',
"trap":'''TRAP Port''',
"nexus-portal":'''Nexus Portal''',
"dnox":'''DNOX''',
"esnm-zoning":'''ESNM Zoning Port''',
"tnp1-port":'''TNP1 User Port''',
"partimage":'''Partition Image Port''',
"as-debug":'''Graphical Debug Server''',
"bxp":'''bitxpress''',
"dtserver-port":'''DTServer Port''',
"ip-qsig":'''IP Q signaling protocol''',
"jdmn-port":'''Accell/JSP Daemon Port''',
"suucp":'''UUCP over SSL''',
"vrts-auth-port":'''VERITAS Authorization Service''',
"sanavigator":'''SANavigator Peer Port''',
"ubxd":'''Ubiquinox Daemon''',
"wap-push-http":'''WAP Push OTA-HTTP port''',
"wap-push-https":'''WAP Push OTA-HTTP secure''',
"ravehd":'''RaveHD network control''',
"fazzt-ptp":'''Fazzt Point-To-Point''',
"fazzt-admin":'''Fazzt Administration''',
"yo-main":'''Yo.net main service''',
"houston":'''Rocketeer-Houston''',
"ldxp":'''LDXP''',
"nirp":'''Neighbour Identity Resolution''',
"ltp":'''Location Tracking Protocol''',
"npp":'''Network Paging Protocol''',
"acp-proto":'''Accounting Protocol''',
"ctp-state":'''Context Transfer Protocol''',
"wafs":'''Wide Area File Services''',
"cisco-wafs":'''Wide Area File Services''',
"cppdp":'''Cisco Peer to Peer Distribution Protocol''',
"interact":'''VoiceConnect Interact''',
"ccu-comm-1":'''CosmoCall Universe Communications Port 1''',
"ccu-comm-2":'''CosmoCall Universe Communications Port 2''',
"ccu-comm-3":'''CosmoCall Universe Communications Port 3''',
"lms":'''Location Message Service''',
"wfm":'''Servigistics WFM server''',
"kingfisher":'''Kingfisher protocol''',
"dlms-cosem":'''DLMS/COSEM''',
"dsmeter-iatc":'''DSMETER Inter-Agent Transfer Channel
IANA assigned this well-formed service name as a replacement for "dsmeter_iatc".''',
"dsmeter_iatc":'''DSMETER Inter-Agent Transfer Channel''',
"ice-location":'''Ice Location Service (TCP)''',
"ice-slocation":'''Ice Location Service (SSL)''',
"ice-router":'''Ice Firewall Traversal Service (TCP)''',
"ice-srouter":'''Ice Firewall Traversal Service (SSL)''',
"avanti-cdp":'''Avanti Common Data
IANA assigned this well-formed service name as a replacement for "avanti_cdp".''',
"avanti_cdp":'''Avanti Common Data''',
"pmas":'''Performance Measurement and Analysis''',
"idp":'''Information Distribution Protocol''',
"ipfltbcst":'''IP Fleet Broadcast''',
"minger":'''Minger Email Address Validation Service''',
"tripe":'''Trivial IP Encryption (TrIPE)''',
"aibkup":'''Automatically Incremental Backup''',
"zieto-sock":'''Zieto Socket Communications''',
"iRAPP":'''iRAPP Server Protocol''',
"cequint-cityid":'''Cequint City ID UI trigger''',
"perimlan":'''ISC Alarm Message Service''',
"seraph":'''Seraph DCS''',
"cssp":'''Coordinated Security Service Protocol''',
"santools":'''SANtools Diagnostic Server''',
"lorica-in":'''Lorica inside facing''',
"lorica-in-sec":'''Lorica inside facing (SSL)''',
"lorica-out":'''Lorica outside facing''',
"lorica-out-sec":'''Lorica outside facing (SSL)''',
"ezmessagesrv":'''EZNews Newsroom Message Service''',
"applusservice":'''APplus Service''',
"npsp":'''Noah Printing Service Protocol''',
"opencore":'''OpenCORE Remote Control Service''',
"omasgport":'''OMA BCAST Service Guide''',
"ewinstaller":'''EminentWare Installer''',
"ewdgs":'''EminentWare DGS''',
"pvxpluscs":'''Pvx Plus CS Host''',
"sysrqd":'''sysrq daemon''',
"xtgui":'''xtgui information service''',
"bre":'''BRE (Bridge Relay Element)''',
"patrolview":'''Patrol View''',
"drmsfsd":'''drmsfsd''',
"dpcp":'''DPCP''',
"igo-incognito":'''IGo Incognito Data Port''',
"brlp-0":'''Braille protocol''',
"brlp-1":'''Braille protocol''',
"brlp-2":'''Braille protocol''',
"brlp-3":'''Braille protocol''',
"shofar":'''Shofar''',
"synchronite":'''Synchronite''',
"j-ac":'''JDL Accounting LAN Service''',
"accel":'''ACCEL''',
"izm":'''Instantiated Zero-control Messaging''',
"g2tag":'''G2 RFID Tag Telemetry Data''',
"xgrid":'''Xgrid''',
"apple-vpns-rp":'''Apple VPN Server Reporting Protocol''',
"aipn-reg":'''AIPN LS Registration''',
"jomamqmonitor":'''JomaMQMonitor''',
"cds":'''CDS Transfer Agent''',
"smartcard-tls":'''smartcard-TLS''',
"hillrserv":'''Hillr Connection Manager''',
"netscript":'''Netadmin Systems NETscript service''',
"assuria-slm":'''Assuria Log Manager''',
"e-builder":'''e-Builder Application Communication''',
"fprams":'''Fiber Patrol Alarm Service''',
"z-wave":'''Zensys Z-Wave Control Protocol''',
"tigv2":'''Rohill TetraNode Ip Gateway v2''',
"opsview-envoy":'''Opsview Envoy''',
"ddrepl":'''Data Domain Replication Service''',
"unikeypro":'''NetUniKeyServer''',
"nufw":'''NuFW decision delegation protocol''',
"nuauth":'''NuFW authentication protocol''',
"fronet":'''FRONET message protocol''',
"stars":'''Global Maintech Stars''',
"nuts-dem":'''NUTS Daemon
IANA assigned this well-formed service name as a replacement for "nuts_dem".''',
"nuts_dem":'''NUTS Daemon''',
"nuts-bootp":'''NUTS Bootp Server
IANA assigned this well-formed service name as a replacement for "nuts_bootp".''',
"nuts_bootp":'''NUTS Bootp Server''',
"nifty-hmi":'''NIFTY-Serve HMI protocol''',
"cl-db-attach":'''Classic Line Database Server Attach''',
"cl-db-request":'''Classic Line Database Server Request''',
"cl-db-remote":'''Classic Line Database Server Remote''',
"nettest":'''nettest''',
"thrtx":'''Imperfect Networks Server''',
"cedros-fds":'''Cedros Fraud Detection System
IANA assigned this well-formed service name as a replacement for "cedros_fds".''',
"cedros_fds":'''Cedros Fraud Detection System''',
"oirtgsvc":'''Workflow Server''',
"oidocsvc":'''Document Server''',
"oidsr":'''Document Replication''',
"vvr-control":'''VVR Control''',
"tgcconnect":'''TGCConnect Beacon''',
"vrxpservman":'''Multum Service Manager''',
"hhb-handheld":'''HHB Handheld Client''',
"agslb":'''A10 GSLB Service''',
"PowerAlert-nsa":'''PowerAlert Network Shutdown Agent''',
"menandmice-noh":'''Men & Mice Remote Control
IANA assigned this well-formed service name as a replacement for "menandmice_noh".''',
"menandmice_noh":'''Men & Mice Remote Control''',
"idig-mux":'''iDigTech Multiplex
IANA assigned this well-formed service name as a replacement for "idig_mux".''',
"idig_mux":'''iDigTech Multiplex''',
"mbl-battd":'''MBL Remote Battery Monitoring''',
"atlinks":'''atlinks device discovery''',
"bzr":'''Bazaar version control system''',
"stat-results":'''STAT Results''',
"stat-scanner":'''STAT Scanner Control''',
"stat-cc":'''STAT Command Center''',
"nss":'''Network Security Service''',
"jini-discovery":'''Jini Discovery''',
"omscontact":'''OMS Contact''',
"omstopology":'''OMS Topology''',
"silverpeakpeer":'''Silver Peak Peer Protocol''',
"silverpeakcomm":'''Silver Peak Communication Protocol''',
"altcp":'''ArcLink over Ethernet''',
"joost":'''Joost Peer to Peer Protocol''',
"ddgn":'''DeskDirect Global Network''',
"pslicser":'''PrintSoft License Server''',
"iadt":'''Automation Drive Interface Transport''',
"d-cinema-csp":'''SMPTE Content Synchonization Protocol''',
"ml-svnet":'''Maxlogic Supervisor Communication''',
"pcoip":'''PC over IP''',
"smcluster":'''StorMagic Cluster Services''',
"bccp":'''Brocade Cluster Communication Protocol''',
"tl-ipcproxy":'''Translattice Cluster IPC Proxy''',
"wello":'''Wello P2P pubsub service''',
"storman":'''StorMan''',
"MaxumSP":'''Maxum Services''',
"httpx":'''HTTPX''',
"macbak":'''MacBak''',
"pcptcpservice":'''Production Company Pro TCP Service''',
"gmmp":'''General Metaverse Messaging Protocol''',
"universe-suite":'''UNIVERSE SUITE MESSAGE SERVICE
IANA assigned this well-formed service name as a replacement for "universe_suite".''',
"universe_suite":'''UNIVERSE SUITE MESSAGE SERVICE''',
"wcpp":'''Woven Control Plane Protocol''',
"boxbackupstore":'''Box Backup Store Service''',
"csc-proxy":'''Cascade Proxy
IANA assigned this well-formed service name as a replacement for "csc_proxy".''',
"csc_proxy":'''Cascade Proxy''',
"vatata":'''Vatata Peer to Peer Protocol''',
"pcep":'''Path Computation Element Communication Protocol''',
"sieve":'''ManageSieve Protocol''',
"azeti":'''Azeti Agent Service''',
"pvxplusio":'''PxPlus remote file srvr''',
"eims-admin":'''EIMS ADMIN''',
"corelccam":'''Corel CCam''',
"d-data":'''Diagnostic Data''',
"d-data-control":'''Diagnostic Data Control''',
"srcp":'''Simple Railroad Command Protocol''',
"owserver":'''One-Wire Filesystem Server''',
"batman":'''better approach to mobile ad-hoc networking''',
"pinghgl":'''Hellgate London''',
"visicron-vs":'''Visicron Videoconference Service''',
"compx-lockview":'''CompX-LockView''',
"dserver":'''Exsequi Appliance Discovery''',
"mirrtex":'''Mir-RT exchange service''',
"p6ssmc":'''P6R Secure Server Management Console''',
"pscl-mgt":'''Parascale Membership Manager''',
"perrla":'''PERRLA User Services''',
"fdt-rcatp":'''FDT Remote Categorization Protocol''',
"rwhois":'''Remote Who Is''',
"trim-event":'''TRIM Event Service''',
"trim-ice":'''TRIM ICE Service''',
"balour":'''Balour Game Server''',
"geognosisman":'''Cadcorp GeognoSIS Manager Service''',
"geognosis":'''Cadcorp GeognoSIS Service''',
"jaxer-web":'''Jaxer Web Protocol''',
"jaxer-manager":'''Jaxer Manager Command Protocol''',
"publiqare-sync":'''PubliQare Distributed Environment Synchronisation Engine''',
"gaia":'''Gaia Connector Protocol''',
"lisp-data":'''LISP Data Packets''',
"lisp-cons":'''LISP-CONS Control''',
"unicall":'''UNICALL''',
"vinainstall":'''VinaInstall''',
"m4-network-as":'''Macro 4 Network AS''',
"elanlm":'''ELAN LM''',
"lansurveyor":'''LAN Surveyor''',
"itose":'''ITOSE''',
"fsportmap":'''File System Port Map''',
"net-device":'''Net Device''',
"plcy-net-svcs":'''PLCY Net Services''',
"pjlink":'''Projector Link''',
"f5-iquery":'''F5 iQuery''',
"qsnet-trans":'''QSNet Transmitter''',
"qsnet-workst":'''QSNet Workstation''',
"qsnet-assist":'''QSNet Assistant''',
"qsnet-cond":'''QSNet Conductor''',
"qsnet-nucl":'''QSNet Nucleus''',
"omabcastltkm":'''OMA BCAST Long-Term Key Messages''',
"matrix-vnet":'''Matrix VNet Communication Protocol
IANA assigned this well-formed service name as a replacement for "matrix_vnet".''',
"matrix_vnet":'''Matrix VNet Communication Protocol''',
"wxbrief":'''WeatherBrief Direct''',
"epmd":'''Erlang Port Mapper Daemon''',
"elpro-tunnel":'''ELPRO V2 Protocol Tunnel
IANA assigned this well-formed service name as a replacement for "elpro_tunnel".''',
"elpro_tunnel":'''ELPRO V2 Protocol Tunnel''',
"l2c-control":'''LAN2CAN Control''',
"l2c-data":'''LAN2CAN Data''',
"remctl":'''Remote Authenticated Command Service''',
"psi-ptt":'''PSI Push-to-Talk Protocol''',
"tolteces":'''Toltec EasyShare''',
"bip":'''BioAPI Interworking''',
"cp-spxsvr":'''Cambridge Pixel SPx Server''',
"cp-spxdpy":'''Cambridge Pixel SPx Display''',
"ctdb":'''CTDB''',
"xandros-cms":'''Xandros Community Management Service''',
"wiegand":'''Physical Access Control''',
"apwi-imserver":'''American Printware IMServer Protocol''',
"apwi-rxserver":'''American Printware RXServer Protocol''',
"apwi-rxspooler":'''American Printware RXSpooler Protocol''',
"omnivisionesx":'''OmniVision communication for Virtual environments''',
"fly":'''Fly Object Space''',
"ds-srv":'''ASIGRA Services''',
"ds-srvr":'''ASIGRA Televaulting DS-System Service''',
"ds-clnt":'''ASIGRA Televaulting DS-Client Service''',
"ds-user":'''ASIGRA Televaulting DS-Client Monitoring/Management''',
"ds-admin":'''ASIGRA Televaulting DS-System Monitoring/Management''',
"ds-mail":'''ASIGRA Televaulting Message Level Restore service''',
"ds-slp":'''ASIGRA Televaulting DS-Sleeper Service''',
"nacagent":'''Network Access Control Agent''',
"slscc":'''SLS Technology Control Centre''',
"netcabinet-com":'''Net-Cabinet comunication''',
"itwo-server":'''RIB iTWO Application Server''',
"found":'''Found Messaging Protocol''',
"netrockey6":'''NetROCKEY6 SMART Plus Service''',
"beacon-port-2":'''SMARTS Beacon Port''',
"drizzle":'''Drizzle database server''',
"omviserver":'''OMV-Investigation Server-Client''',
"omviagent":'''OMV Investigation Agent-Server''',
"rsqlserver":'''REAL SQL Server''',
"wspipe":'''adWISE Pipe''',
"l-acoustics":'''L-ACOUSTICS management''',
"vop":'''Versile Object Protocol''',
"saris":'''Saris''',
"pharos":'''Pharos''',
"krb524":'''KRB524''',
"nv-video":'''NV Video default''',
"upnotifyp":'''UPNOTIFYP''',
"n1-fwp":'''N1-FWP''',
"n1-rmgmt":'''N1-RMGMT''',
"asc-slmd":'''ASC Licence Manager''',
"privatewire":'''PrivateWire''',
"camp":'''Common ASCII Messaging Protocol''',
"ctisystemmsg":'''CTI System Msg''',
"ctiprogramload":'''CTI Program Load''',
"nssalertmgr":'''NSS Alert Manager''',
"nssagentmgr":'''NSS Agent Manager''',
"prchat-user":'''PR Chat User''',
"prchat-server":'''PR Chat Server''',
"prRegister":'''PR Register''',
"mcp":'''Matrix Configuration Protocol''',
"hpssmgmt":'''hpssmgmt service''',
"assyst-dr":'''Assyst Data Repository Service''',
"icms":'''Integrated Client Message Service''',
"prex-tcp":'''Protocol for Remote Execution over TCP''',
"awacs-ice":'''Apple Wide Area Connectivity Service ICE Bootstrap''',
"ipsec-nat-t":'''IPsec NAT-Traversal''',
"ehs":'''Event Heap Server''',
"ehs-ssl":'''Event Heap Server SSL''',
"wssauthsvc":'''WSS Security Service''',
"swx-gate":'''Software Data Exchange Gateway''',
"worldscores":'''WorldScores''',
"sf-lm":'''SF License Manager (Sentinel)''',
"lanner-lm":'''Lanner License Manager''',
"synchromesh":'''Synchromesh''',
"aegate":'''Aegate PMR Service''',
"gds-adppiw-db":'''Perman I Interbase Server''',
"ieee-mih":'''MIH Services''',
"menandmice-mon":'''Men and Mice Monitoring''',
"icshostsvc":'''ICS host services''',
"msfrs":'''MS FRS Replication''',
"rsip":'''RSIP Port''',
"dtn-bundle-tcp":'''DTN Bundle TCP CL Protocol''',
"hylafax":'''HylaFAX''',
"kwtc":'''Kids Watch Time Control Service''',
"tram":'''TRAM''',
"bmc-reporting":'''BMC Reporting''',
"iax":'''Inter-Asterisk eXchange''',
"rid":'''RID over HTTP/TLS''',
"l3t-at-an":'''HRPD L3T (AT-AN)''',
"ipt-anri-anri":'''IPT (ANRI-ANRI)''',
"ias-session":'''IAS-Session (ANRI-ANRI)''',
"ias-paging":'''IAS-Paging (ANRI-ANRI)''',
"ias-neighbor":'''IAS-Neighbor (ANRI-ANRI)''',
"a21-an-1xbs":'''A21 (AN-1xBS)''',
"a16-an-an":'''A16 (AN-AN)''',
"a17-an-an":'''A17 (AN-AN)''',
"piranha1":'''Piranha1''',
"piranha2":'''Piranha2''',
"mtsserver":'''EAX MTS Server''',
"menandmice-upg":'''Men & Mice Upgrade Agent''',
"playsta2-app":'''PlayStation2 App Port''',
"playsta2-lob":'''PlayStation2 Lobby Port''',
"smaclmgr":'''smaclmgr''',
"kar2ouche":'''Kar2ouche Peer location service''',
"oms":'''OrbitNet Message Service''',
"noteit":'''Note It! Message Service''',
"ems":'''Rimage Messaging Server''',
"contclientms":'''Container Client Message Service''',
"eportcomm":'''E-Port Message Service''',
"mmacomm":'''MMA Comm Services''',
"mmaeds":'''MMA EDS Service''',
"eportcommdata":'''E-Port Data Service''',
"light":'''Light packets transfer protocol''',
"acter":'''Bull RSF action server''',
"rfa":'''remote file access server''',
"cxws":'''CXWS Operations''',
"appiq-mgmt":'''AppIQ Agent Management''',
"dhct-status":'''BIAP Device Status''',
"dhct-alerts":'''BIAP Generic Alert''',
"bcs":'''Business Continuity Servi''',
"traversal":'''boundary traversal''',
"mgesupervision":'''MGE UPS Supervision''',
"mgemanagement":'''MGE UPS Management''',
"parliant":'''Parliant Telephony System''',
"finisar":'''finisar''',
"spike":'''Spike Clipboard Service''',
"rfid-rp1":'''RFID Reader Protocol 1.0''',
"autopac":'''Autopac Protocol''',
"msp-os":'''Manina Service Protocol''',
"nst":'''Network Scanner Tool FTP''',
"mobile-p2p":'''Mobile P2P Service''',
"altovacentral":'''Altova DatabaseCentral''',
"prelude":'''Prelude IDS message proto''',
"mtn":'''monotone Netsync Protocol''',
"conspiracy":'''Conspiracy messaging''',
"netxms-agent":'''NetXMS Agent''',
"netxms-mgmt":'''NetXMS Management''',
"netxms-sync":'''NetXMS Server Synchronization''',
"npqes-test":'''Network Performance Quality Evaluation System Test Service''',
"assuria-ins":'''Assuria Insider''',
"truckstar":'''TruckStar Service''',
"fcis":'''F-Link Client Information Service''',
"capmux":'''CA Port Multiplexer''',
"gearman":'''Gearman Job Queue System''',
"remcap":'''Remote Capture Protocol''',
"resorcs":'''RES Orchestration Catalog Services''',
"ipdr-sp":'''IPDR/SP''',
"solera-lpn":'''SoleraTec Locator''',
"ipfix":'''IP Flow Info Export''',
"ipfixs":'''ipfix protocol over TLS''',
"lumimgrd":'''Luminizer Manager''',
"sicct":'''SICCT''',
"openhpid":'''openhpi HPI service''',
"ifsp":'''Internet File Synchronization Protocol''',
"fmp":'''Funambol Mobile Push''',
"profilemac":'''Profile for Mac''',
"ssad":'''Simple Service Auto Discovery''',
"spocp":'''Simple Policy Control Protocol''',
"snap":'''Simple Network Audio Protocol''',
"simon":'''Simple Invocation of Methods Over Network (SIMON)''',
"bfd-multi-ctl":'''BFD Multihop Control''',
"smart-install":'''Smart Install Service''',
"sia-ctrl-plane":'''Service Insertion Architecture (SIA) Control-Plane''',
"xmcp":'''eXtensible Messaging Client Protocol''',
"iims":'''Icona Instant Messenging System''',
"iwec":'''Icona Web Embedded Chat''',
"ilss":'''Icona License System Server''',
"notateit":'''Notateit Messaging''',
"htcp":'''HTCP''',
"varadero-0":'''Varadero-0''',
"varadero-1":'''Varadero-1''',
"varadero-2":'''Varadero-2''',
"opcua-tcp":'''OPC UA TCP Protocol''',
"quosa":'''QUOSA Virtual Library Service''',
"gw-asv":'''nCode ICE-flow Library AppServer''',
"opcua-tls":'''OPC UA TCP Protocol over TLS/SSL''',
"gw-log":'''nCode ICE-flow Library LogServer''',
"wcr-remlib":'''WordCruncher Remote Library Service''',
"contamac-icm":'''Contamac ICM Service
IANA assigned this well-formed service name as a replacement for "contamac_icm".''',
"contamac_icm":'''Contamac ICM Service''',
"wfc":'''Web Fresh Communication''',
"appserv-http":'''App Server - Admin HTTP''',
"appserv-https":'''App Server - Admin HTTPS''',
"sun-as-nodeagt":'''Sun App Server - NA''',
"derby-repli":'''Apache Derby Replication''',
"unify-debug":'''Unify Debugger''',
"phrelay":'''Photon Relay''',
"phrelaydbg":'''Photon Relay Debug''',
"cc-tracking":'''Citcom Tracking Service''',
"wired":'''Wired''',
"tritium-can":'''Tritium CAN Bus Bridge Service''',
"lmcs":'''Lighting Management Control System''',
"wsdl-event":'''WSDL Event Receiver''',
"hislip":'''IVI High-Speed LAN Instrument Protocol''',
"wmlserver":'''Meier-Phelps License Server''',
"hivestor":'''HiveStor Distributed File System''',
"abbs":'''ABBS''',
"lyskom":'''LysKOM Protocol A''',
"radmin-port":'''RAdmin Port''',
"hfcs":'''HyperFileSQL Client/Server Database Engine''',
"flr-agent":'''FileLocator Remote Search Agent
IANA assigned this well-formed service name as a replacement for "flr_agent".''',
"flr_agent":'''FileLocator Remote Search Agent''',
"magiccontrol":'''magicCONROL RF and Data Interface''',
"lutap":'''Technicolor LUT Access Protocol''',
"lutcp":'''LUTher Control Protocol''',
"bones":'''Bones Remote Control''',
"frcs":'''Fibics Remote Control Service''',
"eq-office-4940":'''Equitrac Office''',
"eq-office-4941":'''Equitrac Office''',
"eq-office-4942":'''Equitrac Office''',
"munin":'''Munin Graphing Framework''',
"sybasesrvmon":'''Sybase Server Monitor''',
"pwgwims":'''PWG WIMS''',
"sagxtsds":'''SAG Directory Server''',
"dbsyncarbiter":'''Synchronization Arbiter''',
"ccss-qmm":'''CCSS QMessageMonitor''',
"ccss-qsm":'''CCSS QSystemMonitor''',
"webyast":'''WebYast''',
"gerhcs":'''GER HC Standard''',
"mrip":'''Model Railway Interface Program''',
"smar-se-port1":'''SMAR Ethernet Port 1''',
"smar-se-port2":'''SMAR Ethernet Port 2''',
"parallel":'''Parallel for GAUSS (tm)''',
"busycal":'''BusySync Calendar Synch. Protocol''',
"vrt":'''VITA Radio Transport''',
"hfcs-manager":'''HyperFileSQL Client/Server Database Engine Manager''',
"commplex-main":'''''',
"commplex-link":'''''',
"rfe":'''radio free ethernet''',
"fmpro-internal":'''FileMaker, Inc. - Proprietary transport''',
"avt-profile-1":'''RTP media data''',
"avt-profile-2":'''RTP control protocol''',
"wsm-server":'''wsm server''',
"wsm-server-ssl":'''wsm server ssl''',
"synapsis-edge":'''Synapsis EDGE''',
"winfs":'''Microsoft Windows Filesystem''',
"telelpathstart":'''TelepathStart''',
"telelpathattack":'''TelepathAttack''',
"nsp":'''NetOnTap Service''',
"fmpro-v6":'''FileMaker, Inc. - Proprietary transport''',
"fmwp":'''FileMaker, Inc. - Web publishing''',
"zenginkyo-1":'''zenginkyo-1''',
"zenginkyo-2":'''zenginkyo-2''',
"mice":'''mice server''',
"htuilsrv":'''Htuil Server for PLD2''',
"scpi-telnet":'''SCPI-TELNET''',
"scpi-raw":'''SCPI-RAW''',
"strexec-d":'''Storix I/O daemon (data)''',
"strexec-s":'''Storix I/O daemon (stat)''',
"qvr":'''Quiqum Virtual Relais''',
"infobright":'''Infobright Database Server''',
"surfpass":'''SurfPass''',
"signacert-agent":'''SignaCert Enterprise Trust Server Agent''',
"asnaacceler8db":'''asnaacceler8db''',
"swxadmin":'''ShopWorX Administration''',
"lxi-evntsvc":'''LXI Event Service''',
"osp":'''Open Settlement Protocol''',
"texai":'''Texai Message Service''',
"ivocalize":'''iVocalize Web Conference''',
"mmcc":'''multimedia conference control tool''',
"ita-agent":'''ITA Agent''',
"ita-manager":'''ITA Manager''',
"rlm":'''RLM License Server''',
"rlm-admin":'''RLM administrative interface''',
"unot":'''UNOT''',
"intecom-ps1":'''Intecom Pointspan 1''',
"intecom-ps2":'''Intecom Pointspan 2''',
"sds":'''SIP Directory Services''',
"sip":'''SIP''',
"sip-tls":'''SIP-TLS''',
"na-localise":'''Localisation access''',
"csrpc":'''centrify secure RPC''',
"ca-1":'''Channel Access 1''',
"ca-2":'''Channel Access 2''',
"stanag-5066":'''STANAG-5066-SUBNET-INTF''',
"authentx":'''Authentx Service''',
"bitforestsrv":'''Bitforest Data Service''',
"i-net-2000-npr":'''I/Net 2000-NPR''',
"vtsas":'''VersaTrans Server Agent Service''',
"powerschool":'''PowerSchool''',
"ayiya":'''Anything In Anything''',
"tag-pm":'''Advantage Group Port Mgr''',
"alesquery":'''ALES Query''',
"pvaccess":'''Experimental Physics and Industrial Control System''',
"onscreen":'''OnScreen Data Collection Service''',
"sdl-ets":'''SDL - Ent Trans Server''',
"qcp":'''Qpur Communication Protocol''',
"qfp":'''Qpur File Protocol''',
"llrp":'''EPCglobal Low-Level Reader Protocol''',
"encrypted-llrp":'''EPCglobal Encrypted LLRP''',
"aprigo-cs":'''Aprigo Collection Service''',
"sentinel-lm":'''Sentinel LM''',
"hart-ip":'''HART-IP''',
"sentlm-srv2srv":'''SentLM Srv2Srv''',
"socalia":'''Socalia service mux''',
"talarian-tcp":'''Talarian_TCP''',
"oms-nonsecure":'''Oracle OMS non-secure''',
"actifio-c2c":'''Actifio C2C''',
"taep-as-svc":'''TAEP AS service''',
"pm-cmdsvr":'''PeerMe Msg Cmd Service''',
"ev-services":'''Enterprise Vault Services''',
"autobuild":'''Symantec Autobuild Service''',
"gradecam":'''GradeCam Image Processing''',
"nbt-pc":'''Policy Commander''',
"ppactivation":'''PP ActivationServer''',
"erp-scale":'''ERP-Scale''',
"ctsd":'''MyCTS server port''',
"rmonitor-secure":'''RMONITOR SECURE
IANA assigned this well-formed service name as a replacement for "rmonitor_secure".''',
"rmonitor_secure":'''RMONITOR SECURE''',
"social-alarm":'''Social Alarm Service''',
"atmp":'''Ascend Tunnel Management Protocol''',
"esri-sde":'''ESRI SDE Instance
IANA assigned this well-formed service name as a replacement for "esri_sde".''',
"esri_sde":'''ESRI SDE Instance''',
"sde-discovery":'''ESRI SDE Instance Discovery''',
"toruxserver":'''ToruX Game Server''',
"bzflag":'''BZFlag game server''',
"asctrl-agent":'''Oracle asControl Agent''',
"rugameonline":'''Russian Online Game''',
"mediat":'''Mediat Remote Object Exchange''',
"snmpssh":'''SNMP over SSH Transport Model''',
"snmpssh-trap":'''SNMP Notification over SSH Transport Model''',
"sbackup":'''Shadow Backup''',
"vpa":'''Virtual Protocol Adapter''',
"ife-icorp":'''ife_1corp
IANA assigned this well-formed service name as a replacement for "ife_icorp".''',
"ife_icorp":'''ife_1corp''',
"winpcs":'''WinPCS Service Connection''',
"scte104":'''SCTE104 Connection''',
"scte30":'''SCTE30 Connection''',
"aol":'''America-Online''',
"aol-1":'''AmericaOnline1''',
"aol-2":'''AmericaOnline2''',
"aol-3":'''AmericaOnline3''',
"cpscomm":'''CipherPoint Config Service''',
"ampl-lic":'''The protocol is used by a license server and client programs to control use of program licenses that float to networked machines''',
"ampl-tableproxy":'''The protocol is used by two programs that exchange "table" data used in the AMPL modeling language''',
"targus-getdata":'''TARGUS GetData''',
"targus-getdata1":'''TARGUS GetData 1''',
"targus-getdata2":'''TARGUS GetData 2''',
"targus-getdata3":'''TARGUS GetData 3''',
"nomad":'''Nomad Device Video Transfer''',
"3exmp":'''3eTI Extensible Management Protocol for OAMP''',
"xmpp-client":'''XMPP Client Connection''',
"hpvirtgrp":'''HP Virtual Machine Group Management''',
"hpvirtctrl":'''HP Virtual Machine Console Operations''',
"hp-server":'''HP Server''',
"hp-status":'''HP Status''',
"perfd":'''HP System Performance Metric Service''',
"hpvroom":'''HP Virtual Room Service''',
"csedaemon":'''Cruse Scanning System Service''',
"enfs":'''Etinnae Network File Service''',
"eenet":'''EEnet communications''',
"galaxy-network":'''Galaxy Network Service''',
"padl2sim":'''''',
"mnet-discovery":'''m-net discovery''',
"downtools":'''DownTools Control Protocol''',
"caacws":'''CA Access Control Web Service''',
"caaclang2":'''CA AC Lang Service''',
"soagateway":'''soaGateway''',
"caevms":'''CA eTrust VM Service''',
"movaz-ssc":'''Movaz SSC''',
"kpdp":'''Kohler Power Device Protocol''',
"3com-njack-1":'''3Com Network Jack Port 1''',
"3com-njack-2":'''3Com Network Jack Port 2''',
"xmpp-server":'''XMPP Server Connection''',
"cartographerxmp":'''Cartographer XMP''',
"cuelink":'''StageSoft CueLink messaging''',
"pk":'''PK''',
"xmpp-bosh":'''Bidirectional-streams Over Synchronous HTTP (BOSH)''',
"undo-lm":'''Undo License Manager''',
"transmit-port":'''Marimba Transmitter Port''',
"presence":'''XMPP Link-Local Messaging''',
"nlg-data":'''NLG Data Service''',
"hacl-hb":'''HA cluster heartbeat''',
"hacl-gs":'''HA cluster general services''',
"hacl-cfg":'''HA cluster configuration''',
"hacl-probe":'''HA cluster probing''',
"hacl-local":'''HA Cluster Commands''',
"hacl-test":'''HA Cluster Test''',
"sun-mc-grp":'''Sun MC Group''',
"sco-aip":'''SCO AIP''',
"cfengine":'''CFengine''',
"jprinter":'''J Printer''',
"outlaws":'''Outlaws''',
"permabit-cs":'''Permabit Client-Server''',
"rrdp":'''Real-time & Reliable Data''',
"opalis-rbt-ipc":'''opalis-rbt-ipc''',
"hacl-poll":'''HA Cluster UDP Polling''',
"hpbladems":'''HPBladeSystem Monitor Service''',
"hpdevms":'''HP Device Monitor Service''',
"pkix-cmc":'''PKIX Certificate Management using CMS (CMC)''',
"bsfserver-zn":'''Webservices-based Zn interface of BSF''',
"bsfsvr-zn-ssl":'''Webservices-based Zn interface of BSF over SSL''',
"kfserver":'''Sculptor Database Server''',
"xkotodrcp":'''xkoto DRCP''',
"stuns":'''STUN over TLS''',
"turns":'''TURN over TLS''',
"stun-behaviors":'''STUN Behavior Discovery over TLS''',
"nat-pmp-status":'''NAT-PMP Status Announcements''',
"nat-pmp":'''NAT Port Mapping Protocol''',
"dns-llq":'''DNS Long-Lived Queries''',
"mdns":'''Multicast DNS''',
"mdnsresponder":'''Multicast DNS Responder IPC''',
"llmnr":'''LLMNR''',
"ms-smlbiz":'''Microsoft Small Business''',
"wsdapi":'''Web Services for Devices''',
"wsdapi-s":'''WS for Devices Secured''',
"ms-alerter":'''Microsoft Alerter''',
"ms-sideshow":'''Protocol for Windows SideShow''',
"ms-s-sideshow":'''Secure Protocol for Windows SideShow''',
"serverwsd2":'''Microsoft Windows Server WSD2 Service''',
"net-projection":'''Windows Network Projection''',
"stresstester":'''StressTester(tm) Injector''',
"elektron-admin":'''Elektron Administration''',
"securitychase":'''SecurityChase''',
"excerpt":'''Excerpt Search''',
"excerpts":'''Excerpt Search Secure''',
"mftp":'''OmniCast MFTP''',
"hpoms-ci-lstn":'''HPOMS-CI-LSTN''',
"hpoms-dps-lstn":'''HPOMS-DPS-LSTN''',
"netsupport":'''NetSupport''',
"systemics-sox":'''Systemics Sox''',
"foresyte-clear":'''Foresyte-Clear''',
"foresyte-sec":'''Foresyte-Sec''',
"salient-dtasrv":'''Salient Data Server''',
"salient-usrmgr":'''Salient User Manager''',
"actnet":'''ActNet''',
"continuus":'''Continuus''',
"wwiotalk":'''WWIOTALK''',
"statusd":'''StatusD''',
"ns-server":'''NS Server''',
"sns-gateway":'''SNS Gateway''',
"sns-agent":'''SNS Agent''',
"mcntp":'''MCNTP''',
"dj-ice":'''DJ-ICE''',
"cylink-c":'''Cylink-C''',
"netsupport2":'''Net Support 2''',
"salient-mux":'''Salient MUX''',
"virtualuser":'''VIRTUALUSER''',
"beyond-remote":'''Beyond Remote''',
"br-channel":'''Beyond Remote Command Channel''',
"devbasic":'''DEVBASIC''',
"sco-peer-tta":'''SCO-PEER-TTA''',
"telaconsole":'''TELACONSOLE''',
"base":'''Billing and Accounting System Exchange''',
"radec-corp":'''RADEC CORP''',
"park-agent":'''PARK AGENT''',
"postgresql":'''PostgreSQL Database''',
"pyrrho":'''Pyrrho DBMS''',
"sgi-arrayd":'''SGI Array Services Daemon''',
"sceanics":'''SCEANICS situation and action notification''',
"spss":'''Pearson HTTPS''',
"smbdirect":'''Server Message Block over Remote Direct Memory Access''',
"surebox":'''SureBox''',
"apc-5454":'''APC 5454''',
"apc-5455":'''APC 5455''',
"apc-5456":'''APC 5456''',
"silkmeter":'''SILKMETER''',
"ttl-publisher":'''TTL Publisher''',
"ttlpriceproxy":'''TTL Price Proxy''',
"quailnet":'''Quail Networks Object Broker''',
"netops-broker":'''NETOPS-BROKER''',
"fcp-addr-srvr1":'''fcp-addr-srvr1''',
"fcp-addr-srvr2":'''fcp-addr-srvr2''',
"fcp-srvr-inst1":'''fcp-srvr-inst1''',
"fcp-srvr-inst2":'''fcp-srvr-inst2''',
"fcp-cics-gw1":'''fcp-cics-gw1''',
"checkoutdb":'''Checkout Database''',
"amc":'''Amcom Mobile Connect''',
"sgi-eventmond":'''SGI Eventmond Port''',
"sgi-esphttp":'''SGI ESP HTTP''',
"personal-agent":'''Personal Agent''',
"freeciv":'''Freeciv gameplay''',
"farenet":'''Sandlab FARENET''',
"westec-connect":'''Westec Connect''',
"m-oap":'''Multicast Object Access Protocol''',
"sdt":'''Session Data Transport Multicast''',
"rdmnet-ctrl":'''PLASA E1.33, Remote Device Management (RDM) controller status notifications''',
"sdmmp":'''SAS Domain Management Messaging Protocol''',
"lsi-bobcat":'''SAS IO Forwarding''',
"ora-oap":'''Oracle Access Protocol''',
"fdtracks":'''FleetDisplay Tracking Service''',
"tmosms0":'''T-Mobile SMS Protocol Message 0''',
"tmosms1":'''T-Mobile SMS Protocol Message 1''',
"fac-restore":'''T-Mobile SMS Protocol Message 3''',
"tmo-icon-sync":'''T-Mobile SMS Protocol Message 2''',
"bis-web":'''BeInSync-Web''',
"bis-sync":'''BeInSync-sync''',
"ininmessaging":'''inin secure messaging''',
"mctfeed":'''MCT Market Data Feed''',
"esinstall":'''Enterprise Security Remote Install''',
"esmmanager":'''Enterprise Security Manager''',
"esmagent":'''Enterprise Security Agent''',
"a1-msc":'''A1-MSC''',
"a1-bs":'''A1-BS''',
"a3-sdunode":'''A3-SDUNode''',
"a4-sdunode":'''A4-SDUNode''',
"ninaf":'''Node Initiated Network Association Forma''',
"htrust":'''HTrust API''',
"symantec-sfdb":'''Symantec Storage Foundation for Database''',
"precise-comm":'''PreciseCommunication''',
"pcanywheredata":'''pcANYWHEREdata''',
"pcanywherestat":'''pcANYWHEREstat''',
"beorl":'''BE Operations Request Listener''',
"xprtld":'''SF Message Service''',
"sfmsso":'''SFM Authentication Subsystem''',
"sfm-db-server":'''SFMdb - SFM DB server''',
"cssc":'''Symantec CSSC''',
"flcrs":'''Symantec Fingerprint Lookup and Container Reference Service''',
"ics":'''Symantec Integrity Checking Service''',
"vfmobile":'''Ventureforth Mobile''',
"amqps":'''amqp protocol over TLS/SSL''',
"amqp":'''AMQP''',
"jms":'''JACL Message Server''',
"hyperscsi-port":'''HyperSCSI Port''',
"v5ua":'''V5UA application port''',
"raadmin":'''RA Administration''',
"questdb2-lnchr":'''Quest Central DB2 Launchr''',
"rrac":'''Remote Replication Agent Connection''',
"dccm":'''Direct Cable Connect Manager''',
"auriga-router":'''Auriga Router Service''',
"ncxcp":'''Net-coneX Control Protocol''',
"ggz":'''GGZ Gaming Zone''',
"qmvideo":'''QM video network management protocol''',
"rbsystem":'''Robert Bosch Data Transfer''',
"kmip":'''Key Management Interoperability Protocol''',
"proshareaudio":'''proshare conf audio''',
"prosharevideo":'''proshare conf video''',
"prosharedata":'''proshare conf data''',
"prosharerequest":'''proshare conf request''',
"prosharenotify":'''proshare conf notify''',
"dpm":'''DPM Communication Server''',
"dpm-agent":'''DPM Agent Coordinator''',
"ms-licensing":'''MS-Licensing''',
"dtpt":'''Desktop Passthru Service''',
"msdfsr":'''Microsoft DFS Replication Service''',
"omhs":'''Operations Manager - Health Service''',
"omsdk":'''Operations Manager - SDK Service''',
"ms-ilm":'''Microsoft Identity Lifecycle Manager''',
"ms-ilm-sts":'''Microsoft Lifecycle Manager Secure Token Service''',
"asgenf":'''ASG Event Notification Framework''',
"io-dist-data":'''Dist. I/O Comm. Service Data and Control''',
"openmail":'''Openmail User Agent Layer''',
"unieng":'''Steltor's calendar access''',
"ida-discover1":'''IDA Discover Port 1''',
"ida-discover2":'''IDA Discover Port 2''',
"watchdoc-pod":'''Watchdoc NetPOD Protocol''',
"watchdoc":'''Watchdoc Server''',
"fcopy-server":'''fcopy-server''',
"fcopys-server":'''fcopys-server''',
"tunatic":'''Wildbits Tunatic''',
"tunalyzer":'''Wildbits Tunalyzer''',
"rscd":'''Bladelogic Agent Service''',
"openmailg":'''OpenMail Desk Gateway server''',
"x500ms":'''OpenMail X.500 Directory Server''',
"openmailns":'''OpenMail NewMail Server''',
"s-openmail":'''OpenMail Suer Agent Layer (Secure)''',
"openmailpxy":'''OpenMail CMTS Server''',
"spramsca":'''x509solutions Internal CA''',
"spramsd":'''x509solutions Secure Data''',
"netagent":'''NetAgent''',
"dali-port":'''DALI Port''',
"vts-rpc":'''Visual Tag System RPC''',
"3par-evts":'''3PAR Event Reporting Service''',
"3par-mgmt":'''3PAR Management Service''',
"3par-mgmt-ssl":'''3PAR Management Service with SSL''',
"3par-rcopy":'''3PAR Inform Remote Copy''',
"xtreamx":'''XtreamX Supervised Peer message''',
"icmpd":'''ICMPD''',
"spt-automation":'''Support Automation''',
"reversion":'''Reversion Backup/Restore''',
"wherehoo":'''WHEREHOO''',
"ppsuitemsg":'''PlanetPress Suite Messeng''',
"diameters":'''Diameter over TLS/TCP''',
"jute":'''Javascript Unit Test Environment''',
"rfb":'''Remote Framebuffer''',
"cm":'''Context Management''',
"cpdlc":'''Controller Pilot Data Link Communication''',
"fis":'''Flight Information Services''',
"ads-c":'''Automatic Dependent Surveillance''',
"indy":'''Indy Application Server''',
"mppolicy-v5":'''mppolicy-v5''',
"mppolicy-mgr":'''mppolicy-mgr''',
"couchdb":'''CouchDB''',
"wsman":'''WBEM WS-Management HTTP''',
"wsmans":'''WBEM WS-Management HTTP over TLS/SSL''',
"wbem-rmi":'''WBEM RMI''',
"wbem-http":'''WBEM CIM-XML (HTTP)''',
"wbem-https":'''WBEM CIM-XML (HTTPS)''',
"wbem-exp-https":'''WBEM Export HTTPS''',
"nuxsl":'''NUXSL''',
"consul-insight":'''Consul InSight Security''',
"cvsup":'''CVSup''',
"x11":'''X Window System''',
"ndl-ahp-svc":'''NDL-AHP-SVC''',
"winpharaoh":'''WinPharaoh''',
"ewctsp":'''EWCTSP''',
"gsmp-ancp":'''GSMP/ANCP''',
"trip":'''TRIP''',
"messageasap":'''Messageasap''',
"ssdtp":'''SSDTP''',
"diagnose-proc":'''DIAGNOSE-PROC''',
"directplay8":'''DirectPlay8''',
"max":'''Microsoft Max''',
"dpm-acm":'''Microsoft DPM Access Control Manager''',
"msft-dpm-cert":'''Microsoft DPM WCF Certificates''',
"p2p-sip":'''Peer to Peer Infrastructure Protocol''',
"konspire2b":'''konspire2b p2p network''',
"pdtp":'''PDTP P2P''',
"ldss":'''Local Download Sharing Service''',
"doglms":'''SuperDog License Manager''',
"raxa-mgmt":'''RAXA Management''',
"synchronet-db":'''SynchroNet-db''',
"synchronet-rtc":'''SynchroNet-rtc''',
"synchronet-upd":'''SynchroNet-upd''',
"rets":'''RETS''',
"dbdb":'''DBDB''',
"primaserver":'''Prima Server''',
"mpsserver":'''MPS Server''',
"etc-control":'''ETC Control''',
"sercomm-scadmin":'''Sercomm-SCAdmin''',
"globecast-id":'''GLOBECAST-ID''',
"softcm":'''HP SoftBench CM''',
"spc":'''HP SoftBench Sub-Process Control''',
"dtspcd":'''Desk-Top Sub-Process Control Daemon''',
"dayliteserver":'''Daylite Server''',
"wrspice":'''WRspice IPC Service''',
"xic":'''Xic IPC Service''',
"xtlserv":'''XicTools License Manager Service''',
"daylitetouch":'''Daylite Touch Sync''',
"spdy":'''SPDY for a faster web''',
"bex-webadmin":'''Backup Express Web Server''',
"backup-express":'''Backup Express''',
"pnbs":'''Phlexible Network Backup Service''',
"nbt-wol":'''New Boundary Tech WOL''',
"pulsonixnls":'''Pulsonix Network License Service''',
"meta-corp":'''Meta Corporation License Manager''',
"aspentec-lm":'''Aspen Technology License Manager''',
"watershed-lm":'''Watershed License Manager''',
"statsci1-lm":'''StatSci License Manager - 1''',
"statsci2-lm":'''StatSci License Manager - 2''',
"lonewolf-lm":'''Lone Wolf Systems License Manager''',
"montage-lm":'''Montage License Manager''',
"ricardo-lm":'''Ricardo North America License Manager''',
"tal-pod":'''tal-pod''',
"efb-aci":'''EFB Application Control Interface''',
"ecmp":'''Emerson Extensible Control and Management Protocol''',
"patrol-ism":'''PATROL Internet Srv Mgr''',
"patrol-coll":'''PATROL Collector''',
"pscribe":'''Precision Scribe Cnx Port''',
"lm-x":'''LM-X License Manager by X-Formation''',
"radmind":'''Radmind Access Protocol''',
"jeol-nsdtp-1":'''JEOL Network Services Data Transport Protocol 1''',
"jeol-nsdtp-2":'''JEOL Network Services Data Transport Protocol 2''',
"jeol-nsdtp-3":'''JEOL Network Services Data Transport Protocol 3''',
"jeol-nsdtp-4":'''JEOL Network Services Data Transport Protocol 4''',
"tl1-raw-ssl":'''TL1 Raw Over SSL/TLS''',
"tl1-ssh":'''TL1 over SSH''',
"crip":'''CRIP''',
"gld":'''GridLAB-D User Interface''',
"grid":'''Grid Authentication''',
"grid-alt":'''Grid Authentication Alt''',
"bmc-grx":'''BMC GRX''',
"bmc-ctd-ldap":'''BMC CONTROL-D LDAP SERVER
IANA assigned this well-formed service name as a replacement for "bmc_ctd_ldap".''',
"bmc_ctd_ldap":'''BMC CONTROL-D LDAP SERVER''',
"ufmp":'''Unified Fabric Management Protocol''',
"scup":'''Sensor Control Unit Protocol''',
"abb-escp":'''Ethernet Sensor Communications Protocol''',
"repsvc":'''Double-Take Replication Service''',
"emp-server1":'''Empress Software Connectivity Server 1''',
"emp-server2":'''Empress Software Connectivity Server 2''',
"hrd-ncs":'''HR Device Network Configuration Service''',
"dt-mgmtsvc":'''Double-Take Management Service''',
"sflow":'''sFlow traffic monitoring''',
"gnutella-svc":'''gnutella-svc''',
"gnutella-rtr":'''gnutella-rtr''',
"adap":'''App Discovery and Access Protocol''',
"pmcs":'''PMCS applications''',
"metaedit-mu":'''MetaEdit+ Multi-User''',
"metaedit-se":'''MetaEdit+ Server Administration''',
"metatude-mds":'''Metatude Dialogue Server''',
"clariion-evr01":'''clariion-evr01''',
"metaedit-ws":'''MetaEdit+ WebService API''',
"faxcomservice":'''Faxcom Message Service''',
"syserverremote":'''SYserver remote commands''',
"svdrp":'''Simple VDR Protocol''',
"nim-vdrshell":'''NIM_VDRShell''',
"nim-wan":'''NIM_WAN''',
"pgbouncer":'''PgBouncer''',
"sun-sr-https":'''Service Registry Default HTTPS Domain''',
"sge-qmaster":'''Grid Engine Qmaster Service
IANA assigned this well-formed service name as a replacement for "sge_qmaster".''',
"sge_qmaster":'''Grid Engine Qmaster Service''',
"sge-execd":'''Grid Engine Execution Service
IANA assigned this well-formed service name as a replacement for "sge_execd".''',
"sge_execd":'''Grid Engine Execution Service''',
"mysql-proxy":'''MySQL Proxy''',
"skip-cert-recv":'''SKIP Certificate Receive''',
"skip-cert-send":'''SKIP Certificate Send''',
"lvision-lm":'''LVision License Manager''',
"sun-sr-http":'''Service Registry Default HTTP Domain''',
"servicetags":'''Service Tags''',
"ldoms-mgmt":'''Logical Domains Management Interface''',
"SunVTS-RMI":'''SunVTS RMI''',
"sun-sr-jms":'''Service Registry Default JMS Domain''',
"sun-sr-iiop":'''Service Registry Default IIOP Domain''',
"sun-sr-iiops":'''Service Registry Default IIOPS Domain''',
"sun-sr-iiop-aut":'''Service Registry Default IIOPAuth Domain''',
"sun-sr-jmx":'''Service Registry Default JMX Domain''',
"sun-sr-admin":'''Service Registry Default Admin Domain''',
"boks":'''BoKS Master''',
"boks-servc":'''BoKS Servc
IANA assigned this well-formed service name as a replacement for "boks_servc".''',
"boks_servc":'''BoKS Servc''',
"boks-servm":'''BoKS Servm
IANA assigned this well-formed service name as a replacement for "boks_servm".''',
"boks_servm":'''BoKS Servm''',
"boks-clntd":'''BoKS Clntd
IANA assigned this well-formed service name as a replacement for "boks_clntd".''',
"boks_clntd":'''BoKS Clntd''',
"badm-priv":'''BoKS Admin Private Port
IANA assigned this well-formed service name as a replacement for "badm_priv".''',
"badm_priv":'''BoKS Admin Private Port''',
"badm-pub":'''BoKS Admin Public Port
IANA assigned this well-formed service name as a replacement for "badm_pub".''',
"badm_pub":'''BoKS Admin Public Port''',
"bdir-priv":'''BoKS Dir Server, Private Port
IANA assigned this well-formed service name as a replacement for "bdir_priv".''',
"bdir_priv":'''BoKS Dir Server, Private Port''',
"bdir-pub":'''BoKS Dir Server, Public Port
IANA assigned this well-formed service name as a replacement for "bdir_pub".''',
"bdir_pub":'''BoKS Dir Server, Public Port''',
"mgcs-mfp-port":'''MGCS-MFP Port''',
"mcer-port":'''MCER Port''',
"netconf-tls":'''NETCONF over TLS''',
"syslog-tls":'''Syslog over TLS''',
"elipse-rec":'''Elipse RPC Protocol''',
"lds-distrib":'''lds_distrib''',
"lds-dump":'''LDS Dump Service''',
"apc-6547":'''APC 6547''',
"apc-6548":'''APC 6548''',
"apc-6549":'''APC 6549''',
"fg-sysupdate":'''fg-sysupdate''',
"sum":'''Software Update Manager''',
"xdsxdm":'''''',
"sane-port":'''SANE Control Port''',
"canit-store":'''CanIt Storage Manager
IANA assigned this well-formed service name as a replacement for "canit_store".''',
"canit_store":'''CanIt Storage Manager''',
"affiliate":'''Affiliate''',
"parsec-master":'''Parsec Masterserver''',
"parsec-peer":'''Parsec Peer-to-Peer''',
"parsec-game":'''Parsec Gameserver''',
"joaJewelSuite":'''JOA Jewel Suite''',
"mshvlm":'''Microsoft Hyper-V Live Migration''',
"mstmg-sstp":'''Microsoft Threat Management Gateway SSTP''',
"wsscomfrmwk":'''Windows WSS Communication Framework''',
"odette-ftps":'''ODETTE-FTP over TLS/SSL''',
"kftp-data":'''Kerberos V5 FTP Data''',
"kftp":'''Kerberos V5 FTP Control''',
"mcftp":'''Multicast FTP''',
"ktelnet":'''Kerberos V5 Telnet''',
"datascaler-db":'''DataScaler database''',
"datascaler-ctl":'''DataScaler control''',
"wago-service":'''WAGO Service and Update''',
"nexgen":'''Allied Electronics NeXGen''',
"afesc-mc":'''AFE Stock Channel M/C''',
"mxodbc-connect":'''eGenix mxODBC Connect''',
"pcs-sf-ui-man":'''PC SOFT - Software factory UI/manager''',
"emgmsg":'''Emergency Message Control Service''',
"ircu":'''IRCU''',
"vocaltec-gold":'''Vocaltec Global Online Directory''',
"p4p-portal":'''P4P Portal Service''',
"vision-server":'''vision_server
IANA assigned this well-formed service name as a replacement for "vision_server".''',
"vision_server":'''vision_server''',
"vision-elmd":'''vision_elmd
IANA assigned this well-formed service name as a replacement for "vision_elmd".''',
"vision_elmd":'''vision_elmd''',
"vfbp":'''Viscount Freedom Bridge Protocol''',
"osaut":'''Osorno Automation''',
"clever-ctrace":'''CleverView for cTrace Message Service''',
"clever-tcpip":'''CleverView for TCP/IP Message Service''',
"tsa":'''Tofino Security Appliance''',
"kti-icad-srvr":'''KTI/ICAD Nameserver''',
"e-design-net":'''e-Design network''',
"e-design-web":'''e-Design web''',
"ibprotocol":'''Internet Backplane Protocol''',
"fibotrader-com":'''Fibotrader Communications''',
"bmc-perf-agent":'''BMC PERFORM AGENT''',
"bmc-perf-mgrd":'''BMC PERFORM MGRD''',
"adi-gxp-srvprt":'''ADInstruments GxP Server''',
"plysrv-http":'''PolyServe http''',
"plysrv-https":'''PolyServe https''',
"dgpf-exchg":'''DGPF Individual Exchange''',
"smc-jmx":'''Sun Java Web Console JMX''',
"smc-admin":'''Sun Web Console Admin''',
"smc-http":'''SMC-HTTP''',
"smc-https":'''SMC-HTTPS''',
"hnmp":'''HNMP''',
"hnm":'''Halcyon Network Manager''',
"acnet":'''ACNET Control System Protocol''',
"pentbox-sim":'''PenTBox Secure IM Protocol''',
"ambit-lm":'''ambit-lm''',
"netmo-default":'''Netmo Default''',
"netmo-http":'''Netmo HTTP''',
"iccrushmore":'''ICCRUSHMORE''',
"acctopus-cc":'''Acctopus Command Channel''',
"muse":'''MUSE''',
"jetstream":'''Novell Jetstream messaging protocol''',
"ethoscan":'''EthoScan Service''',
"xsmsvc":'''XenSource Management Service''',
"bioserver":'''Biometrics Server''',
"otlp":'''OTLP''',
"jmact3":'''JMACT3''',
"jmevt2":'''jmevt2''',
"swismgr1":'''swismgr1''',
"swismgr2":'''swismgr2''',
"swistrap":'''swistrap''',
"swispol":'''swispol''',
"acmsoda":'''acmsoda''',
"MobilitySrv":'''Mobility XE Protocol''',
"iatp-highpri":'''IATP-highPri''',
"iatp-normalpri":'''IATP-normalPri''',
"afs3-fileserver":'''file server itself''',
"afs3-callback":'''callbacks to cache managers''',
"afs3-prserver":'''users & groups database''',
"afs3-vlserver":'''volume location database''',
"afs3-kaserver":'''AFS/Kerberos authentication service''',
"afs3-volser":'''volume managment server''',
"afs3-errors":'''error interpretation service''',
"afs3-bos":'''basic overseer process''',
"afs3-update":'''server-to-server updater''',
"afs3-rmtsys":'''remote cache manager service''',
"ups-onlinet":'''onlinet uninterruptable power supplies''',
"talon-disc":'''Talon Discovery Port''',
"talon-engine":'''Talon Engine''',
"microtalon-dis":'''Microtalon Discovery''',
"microtalon-com":'''Microtalon Communications''',
"talon-webserver":'''Talon Webserver''',
"fisa-svc":'''FISA Service''',
"doceri-ctl":'''doceri drawing service control''',
"dpserve":'''DP Serve''',
"dpserveadmin":'''DP Serve Admin''',
"ctdp":'''CT Discovery Protocol''',
"ct2nmcs":'''Comtech T2 NMCS''',
"vmsvc":'''Vormetric service''',
"vmsvc-2":'''Vormetric Service II''',
"op-probe":'''ObjectPlanet probe''',
"arcp":'''ARCP''',
"iwg1":'''IWGADTS Aircraft Housekeeping Message''',
"empowerid":'''EmpowerID Communication''',
"lazy-ptop":'''lazy-ptop''',
"font-service":'''X Font Service''',
"elcn":'''Embedded Light Control Network''',
"virprot-lm":'''Virtual Prototypes License Manager''',
"scenidm":'''intelligent data manager''',
"scenccs":'''Catalog Content Search''',
"cabsm-comm":'''CA BSM Comm''',
"caistoragemgr":'''CA Storage Manager''',
"cacsambroker":'''CA Connection Broker''',
"fsr":'''File System Repository Agent''',
"doc-server":'''Document WCF Server''',
"aruba-server":'''Aruba eDiscovery Server''',
"casrmagent":'''CA SRM Agent''',
"cnckadserver":'''cncKadServer DB & Inventory Services''',
"ccag-pib":'''Consequor Consulting Process Integration Bridge''',
"nsrp":'''Adaptive Name/Service Resolution''',
"drm-production":'''Discovery and Retention Mgt Production''',
"zsecure":'''zSecure Server''',
"clutild":'''Clutild''',
"fodms":'''FODMS FLIP''',
"dlip":'''DLIP''',
"ramp":'''Registry A & M Protocol''',
"citrixupp":'''Citrix Universal Printing Port''',
"citrixuppg":'''Citrix UPP Gateway''',
"display":'''Wi-Fi Alliance Wi-Fi Display Protocol''',
"pads":'''PADS (Public Area Display System) Server''',
"cnap":'''Calypso Network Access Protocol''',
"watchme-7272":'''WatchMe Monitoring 7272''',
"oma-rlp":'''OMA Roaming Location''',
"oma-rlp-s":'''OMA Roaming Location SEC''',
"oma-ulp":'''OMA UserPlane Location''',
"oma-ilp":'''OMA Internal Location Protocol''',
"oma-ilp-s":'''OMA Internal Location Secure Protocol''',
"oma-dcdocbs":'''OMA Dynamic Content Delivery over CBS''',
"ctxlic":'''Citrix Licensing''',
"itactionserver1":'''ITACTIONSERVER 1''',
"itactionserver2":'''ITACTIONSERVER 2''',
"mzca-action":'''eventACTION/ussACTION (MZCA) server''',
"genstat":'''General Statistics Rendezvous Protocol''',
"lcm-server":'''LifeKeeper Communications''',
"mindfilesys":'''mind-file system server''',
"mrssrendezvous":'''mrss-rendezvous server''',
"nfoldman":'''nFoldMan Remote Publish''',
"fse":'''File system export of backup images''',
"winqedit":'''winqedit''',
"hexarc":'''Hexarc Command Language''',
"rtps-discovery":'''RTPS Discovery''',
"rtps-dd-ut":'''RTPS Data-Distribution User-Traffic''',
"rtps-dd-mt":'''RTPS Data-Distribution Meta-Traffic''',
"ionixnetmon":'''Ionix Network Monitor''',
"mtportmon":'''Matisse Port Monitor''',
"pmdmgr":'''OpenView DM Postmaster Manager''',
"oveadmgr":'''OpenView DM Event Agent Manager''',
"ovladmgr":'''OpenView DM Log Agent Manager''',
"opi-sock":'''OpenView DM rqt communication''',
"xmpv7":'''OpenView DM xmpv7 api pipe''',
"pmd":'''OpenView DM ovc/xmpv3 api pipe''',
"faximum":'''Faximum''',
"oracleas-https":'''Oracle Application Server HTTPS''',
"rise":'''Rise: The Vieneo Province''',
"telops-lmd":'''telops-lmd''',
"silhouette":'''Silhouette User''',
"ovbus":'''HP OpenView Bus Daemon''',
"adcp":'''Automation Device Configuration Protocol''',
"acplt":'''ACPLT - process automation service''',
"ovhpas":'''HP OpenView Application Server''',
"pafec-lm":'''pafec-lm''',
"saratoga":'''Saratoga Transfer Protocol''',
"atul":'''atul server''',
"nta-ds":'''FlowAnalyzer DisplayServer''',
"nta-us":'''FlowAnalyzer UtilityServer''',
"cfs":'''Cisco Fabric service''',
"cwmp":'''DSL Forum CWMP''',
"tidp":'''Threat Information Distribution Protocol''',
"nls-tl":'''Network Layer Signaling Transport Layer''',
"sncp":'''Sniffer Command Protocol''',
"cfw":'''Control Framework''',
"vsi-omega":'''VSI Omega''',
"dell-eql-asm":'''Dell EqualLogic Host Group Management''',
"aries-kfinder":'''Aries Kfinder''',
"sun-lm":'''Sun License Manager''',
"indi":'''Instrument Neutral Distributed Interface''',
"simco":'''SImple Middlebox COnfiguration (SIMCO) Server''',
"soap-http":'''SOAP Service Port''',
"zen-pawn":'''Primary Agent Work Notification''',
"xdas":'''OpenXDAS Wire Protocol''',
"hawk":'''HA Web Konsole''',
"tesla-sys-msg":'''TESLA System Messaging''',
"pmdfmgt":'''PMDF Management''',
"cuseeme":'''bonjour-cuseeme''',
"imqstomp":'''iMQ STOMP Server''',
"imqstomps":'''iMQ STOMP Server over SSL''',
"imqtunnels":'''iMQ SSL tunnel''',
"imqtunnel":'''iMQ Tunnel''',
"imqbrokerd":'''iMQ Broker Rendezvous''',
"sun-user-https":'''Sun App Server - HTTPS''',
"pando-pub":'''Pando Media Public Distribution''',
"collaber":'''Collaber Network Service''',
"klio":'''KLIO communications''',
"em7-secom":'''EM7 Secure Communications''',
"sync-em7":'''EM7 Dynamic Updates''',
"scinet":'''scientia.net''',
"medimageportal":'''MedImage Portal''',
"nsdeepfreezectl":'''Novell Snap-in Deep Freeze Control''',
"nitrogen":'''Nitrogen Service''',
"freezexservice":'''FreezeX Console Service''',
"trident-data":'''Trident Systems Data''',
"smip":'''Smith Protocol over IP''',
"aiagent":'''HP Enterprise Discovery Agent''',
"scriptview":'''ScriptView Network''',
"msss":'''Mugginsoft Script Server Service''',
"sstp-1":'''Sakura Script Transfer Protocol''',
"raqmon-pdu":'''RAQMON PDU''',
"prgp":'''Put/Run/Get Protocol''',
"cbt":'''cbt''',
"interwise":'''Interwise''',
"vstat":'''VSTAT''',
"accu-lmgr":'''accu-lmgr''',
"minivend":'''MINIVEND''',
"popup-reminders":'''Popup Reminders Receive''',
"office-tools":'''Office Tools Pro Receive''',
"q3ade":'''Q3ADE Cluster Service''',
"pnet-conn":'''Propel Connector port''',
"pnet-enc":'''Propel Encoder port''',
"altbsdp":'''Alternate BSDP Service''',
"asr":'''Apple Software Restore''',
"ssp-client":'''Secure Server Protocol - client''',
"rbt-wanopt":'''Riverbed WAN Optimization Protocol''',
"apc-7845":'''APC 7845''',
"apc-7846":'''APC 7846''',
"mobileanalyzer":'''MobileAnalyzer& MobileMonitor''',
"rbt-smc":'''Riverbed Steelhead Mobile Service''',
"mdm":'''Mobile Device Management''',
"pss":'''Pearson''',
"ubroker":'''Universal Broker''',
"mevent":'''Multicast Event''',
"tnos-sp":'''TNOS Service Protocol''',
"tnos-dp":'''TNOS shell Protocol''',
"tnos-dps":'''TNOS Secure DiaguardProtocol''',
"qo-secure":'''QuickObjects secure port''',
"t2-drm":'''Tier 2 Data Resource Manager''',
"t2-brm":'''Tier 2 Business Rules Manager''',
"supercell":'''Supercell''',
"micromuse-ncps":'''Micromuse-ncps''',
"quest-vista":'''Quest Vista''',
"sossd-collect":'''Spotlight on SQL Server Desktop Collect''',
"sossd-agent":'''Spotlight on SQL Server Desktop Agent''',
"pushns":'''PUSH Notification Service''',
"irdmi2":'''iRDMI2''',
"irdmi":'''iRDMI''',
"vcom-tunnel":'''VCOM Tunnel''',
"teradataordbms":'''Teradata ORDBMS''',
"mcreport":'''Mulberry Connect Reporting Service''',
"mxi":'''MXI Generation II for z/OS''',
"http-alt":'''HTTP Alternate''',
"qbdb":'''QB DB Dynamic Port''',
"intu-ec-svcdisc":'''Intuit Entitlement Service and Discovery''',
"intu-ec-client":'''Intuit Entitlement Client''',
"oa-system":'''oa-system''',
"ca-audit-da":'''CA Audit Distribution Agent''',
"ca-audit-ds":'''CA Audit Distribution Server''',
"pro-ed":'''ProEd''',
"mindprint":'''MindPrint''',
"vantronix-mgmt":'''.vantronix Management''',
"ampify":'''Ampify Messaging Protocol''',
"fs-agent":'''FireScope Agent''',
"fs-server":'''FireScope Server''',
"fs-mgmt":'''FireScope Management Interface''',
"rocrail":'''Rocrail Client Service''',
"senomix01":'''Senomix Timesheets Server''',
"senomix02":'''Senomix Timesheets Client [1 year assignment]''',
"senomix03":'''Senomix Timesheets Server [1 year assignment]''',
"senomix04":'''Senomix Timesheets Server [1 year assignment]''',
"senomix05":'''Senomix Timesheets Server [1 year assignment]''',
"senomix06":'''Senomix Timesheets Client [1 year assignment]''',
"senomix07":'''Senomix Timesheets Client [1 year assignment]''',
"senomix08":'''Senomix Timesheets Client [1 year assignment]''',
"gadugadu":'''Gadu-Gadu''',
"http-alt":'''HTTP Alternate (see port 80)''',
"sunproxyadmin":'''Sun Proxy Admin Service''',
"us-cli":'''Utilistor (Client)''',
"us-srv":'''Utilistor (Server)''',
"d-s-n":'''Distributed SCADA Networking Rendezvous Port''',
"simplifymedia":'''Simplify Media SPP Protocol''',
"radan-http":'''Radan HTTP''',
"jamlink":'''Jam Link Framework''',
"sac":'''SAC Port Id''',
"xprint-server":'''Xprint Server''',
"ldoms-migr":'''Logical Domains Migration''',
"mtl8000-matrix":'''MTL8000 Matrix''',
"cp-cluster":'''Check Point Clustering''',
"privoxy":'''Privoxy HTTP proxy''',
"apollo-data":'''Apollo Data Port''',
"apollo-admin":'''Apollo Admin Port''',
"paycash-online":'''PayCash Online Protocol''',
"paycash-wbp":'''PayCash Wallet-Browser''',
"indigo-vrmi":'''INDIGO-VRMI''',
"indigo-vbcp":'''INDIGO-VBCP''',
"dbabble":'''dbabble''',
"isdd":'''i-SDD file transfer''',
"patrol":'''Patrol''',
"patrol-snmp":'''Patrol SNMP''',
"intermapper":'''Intermapper network management system''',
"vmware-fdm":'''VMware Fault Domain Manager''',
"proremote":'''ProRemote''',
"itach":'''Remote iTach Connection''',
"spytechphone":'''SpyTech Phone Service''',
"blp1":'''Bloomberg data API''',
"blp2":'''Bloomberg feed''',
"vvr-data":'''VVR DATA''',
"trivnet1":'''TRIVNET''',
"trivnet2":'''TRIVNET''',
"lm-perfworks":'''LM Perfworks''',
"lm-instmgr":'''LM Instmgr''',
"lm-dta":'''LM Dta''',
"lm-sserver":'''LM SServer''',
"lm-webwatcher":'''LM Webwatcher''',
"rexecj":'''RexecJ Server''',
"synapse-nhttps":'''Synapse Non Blocking HTTPS''',
"pando-sec":'''Pando Media Controlled Distribution''',
"synapse-nhttp":'''Synapse Non Blocking HTTP''',
"blp3":'''Bloomberg professional''',
"hiperscan-id":'''Hiperscan Identification Service''',
"blp4":'''Bloomberg intelligent client''',
"tmi":'''Transport Management Interface''',
"amberon":'''Amberon PPC/PPS''',
"hub-open-net":'''Hub Open Network''',
"tnp-discover":'''Thin(ium) Network Protocol''',
"tnp":'''Thin(ium) Network Protocol''',
"server-find":'''Server Find''',
"cruise-enum":'''Cruise ENUM''',
"cruise-swroute":'''Cruise SWROUTE''',
"cruise-config":'''Cruise CONFIG''',
"cruise-diags":'''Cruise DIAGS''',
"cruise-update":'''Cruise UPDATE''',
"m2mservices":'''M2m Services''',
"cvd":'''cvd''',
"sabarsd":'''sabarsd''',
"abarsd":'''abarsd''',
"admind":'''admind''',
"svcloud":'''SuperVault Cloud''',
"svbackup":'''SuperVault Backup''',
"espeech":'''eSpeech Session Protocol''',
"espeech-rtp":'''eSpeech RTP Protocol''',
"cybro-a-bus":'''CyBro A-bus Protocol''',
"pcsync-https":'''PCsync HTTPS''',
"pcsync-http":'''PCsync HTTP''',
"npmp":'''npmp''',
"cisco-avp":'''Cisco Address Validation Protocol''',
"pim-port":'''PIM over Reliable Transport''',
"otv":'''Overlay Transport Virtualization (OTV)''',
"vp2p":'''Virtual Point to Point''',
"noteshare":'''AquaMinds NoteShare''',
"fmtp":'''Flight Message Transfer Protocol''',
"cmtp-mgt":'''CYTEL Message Transfer Management''',
"rtsp-alt":'''RTSP Alternate (see port 554)''',
"d-fence":'''SYMAX D-FENCE''',
"oap-admin":'''Object Access Protocol Administration''',
"asterix":'''Surveillance Data''',
"canon-mfnp":'''Canon MFNP Service''',
"canon-bjnp1":'''Canon BJNP Port 1''',
"canon-bjnp2":'''Canon BJNP Port 2''',
"canon-bjnp3":'''Canon BJNP Port 3''',
"canon-bjnp4":'''Canon BJNP Port 4''',
"imink":'''Imink Service Control''',
"msi-cps-rm":'''Motorola Solutions Customer Programming Software for Radio Management''',
"sun-as-jmxrmi":'''Sun App Server - JMX/RMI''',
"vnyx":'''VNYX Primary Port''',
"ibus":'''iBus''',
"mc-appserver":'''MC-APPSERVER''',
"openqueue":'''OPENQUEUE''',
"ultraseek-http":'''Ultraseek HTTP''',
"dpap":'''Digital Photo Access Protocol (iPhoto)''',
"msgclnt":'''Message Client''',
"msgsrvr":'''Message Server''',
"acd-pm":'''Accedian Performance Measurement''',
"sunwebadmin":'''Sun Web Server Admin Service''',
"truecm":'''truecm''',
"dxspider":'''dxspider linking protocol''',
"cddbp-alt":'''CDDBP''',
"galaxy4d":'''Galaxy4D Online Game Engine''',
"secure-mqtt":'''Secure MQTT''',
"ddi-tcp-1":'''NewsEDGE server TCP (TCP 1)''',
"ddi-tcp-2":'''Desktop Data TCP 1''',
"ddi-tcp-3":'''Desktop Data TCP 2''',
"ddi-tcp-4":'''Desktop Data TCP 3: NESS application''',
"ddi-tcp-5":'''Desktop Data TCP 4: FARM product''',
"ddi-tcp-6":'''Desktop Data TCP 5: NewsEDGE/Web application''',
"ddi-tcp-7":'''Desktop Data TCP 6: COAL application''',
"ospf-lite":'''ospf-lite''',
"jmb-cds1":'''JMB-CDS 1''',
"jmb-cds2":'''JMB-CDS 2''',
"manyone-http":'''manyone-http''',
"manyone-xml":'''manyone-xml''',
"wcbackup":'''Windows Client Backup''',
"dragonfly":'''Dragonfly System Service''',
"twds":'''Transaction Warehouse Data Service''',
"ub-dns-control":'''unbound dns nameserver control''',
"cumulus-admin":'''Cumulus Admin Port''',
"sunwebadmins":'''Sun Web Server SSL Admin Service''',
"http-wmap":'''webmail HTTP service''',
"https-wmap":'''webmail HTTPS service''',
"bctp":'''Brodos Crypto Trade Protocol''',
"cslistener":'''CSlistener''',
"etlservicemgr":'''ETL Service Manager''',
"dynamid":'''DynamID authentication''',
"ogs-server":'''Open Grid Services Server''',
"pichat":'''Pichat Server''',
"sdr":'''Secure Data Replicator Protocol''',
"tambora":'''TAMBORA''',
"panagolin-ident":'''Pangolin Identification''',
"paragent":'''PrivateArk Remote Agent''',
"swa-1":'''Secure Web Access - 1''',
"swa-2":'''Secure Web Access - 2''',
"swa-3":'''Secure Web Access - 3''',
"swa-4":'''Secure Web Access - 4''',
"versiera":'''Versiera Agent Listener''',
"fio-cmgmt":'''Fusion-io Central Manager Service''',
"glrpc":'''Groove GLRPC''',
"emc-pp-mgmtsvc":'''EMC PowerPath Mgmt Service''',
"aurora":'''IBM AURORA Performance Visualizer''',
"ibm-rsyscon":'''IBM Remote System Console''',
"net2display":'''Vesa Net2Display''',
"classic":'''Classic Data Server''',
"sqlexec":'''IBM Informix SQL Interface''',
"sqlexec-ssl":'''IBM Informix SQL Interface - Encrypted''',
"websm":'''WebSM''',
"xmltec-xmlmail":'''xmltec-xmlmail''',
"XmlIpcRegSvc":'''Xml-Ipc Server Reg''',
"copycat":'''Copycat database replication service''',
"hp-pdl-datastr":'''PDL Data Streaming Port''',
"pdl-datastream":'''Printer PDL Data Stream''',
"bacula-dir":'''Bacula Director''',
"bacula-fd":'''Bacula File Daemon''',
"bacula-sd":'''Bacula Storage Daemon''',
"peerwire":'''PeerWire''',
"xadmin":'''Xadmin Control Service''',
"astergate":'''Astergate Control Service''',
"astergatefax":'''AstergateFax Control Service''',
"mxit":'''MXit Instant Messaging''',
"dddp":'''Dynamic Device Discovery''',
"apani1":'''apani1''',
"apani2":'''apani2''',
"apani3":'''apani3''',
"apani4":'''apani4''',
"apani5":'''apani5''',
"sun-as-jpda":'''Sun AppSvr JPDA''',
"wap-wsp":'''WAP connectionless session service''',
"wap-wsp-wtp":'''WAP session service''',
"wap-wsp-s":'''WAP secure connectionless session service''',
"wap-wsp-wtp-s":'''WAP secure session service''',
"wap-vcard":'''WAP vCard''',
"wap-vcal":'''WAP vCal''',
"wap-vcard-s":'''WAP vCard Secure''',
"wap-vcal-s":'''WAP vCal Secure''',
"rjcdb-vcards":'''rjcdb vCard''',
"almobile-system":'''ALMobile System Service''',
"oma-mlp":'''OMA Mobile Location Protocol''',
"oma-mlp-s":'''OMA Mobile Location Protocol Secure''',
"serverviewdbms":'''Server View dbms access''',
"serverstart":'''ServerStart RemoteControl''',
"ipdcesgbs":'''IPDC ESG BootstrapService''',
"insis":'''Integrated Setup and Install Service''',
"acme":'''Aionex Communication Management Engine''',
"fsc-port":'''FSC Communication Port''',
"teamcoherence":'''QSC Team Coherence''',
"mon":'''Manager On Network''',
"pegasus":'''Pegasus GPS Platform''',
"pegasus-ctl":'''Pegaus GPS System Control Interface''',
"pgps":'''Predicted GPS''',
"swtp-port1":'''SofaWare transport port 1''',
"swtp-port2":'''SofaWare transport port 2''',
"callwaveiam":'''CallWaveIAM''',
"visd":'''VERITAS Information Serve''',
"n2h2server":'''N2H2 Filter Service Port''',
"cumulus":'''Cumulus''',
"armtechdaemon":'''ArmTech Daemon''',
"storview":'''StorView Client''',
"armcenterhttp":'''ARMCenter http Service''',
"armcenterhttps":'''ARMCenter https Service''',
"vrace":'''Virtual Racing Service''',
"sphinxql":'''Sphinx search server (MySQL listener)''',
"sphinxapi":'''Sphinx search server''',
"secure-ts":'''PKIX TimeStamp over TLS''',
"guibase":'''guibase''',
"mpidcmgr":'''MpIdcMgr''',
"mphlpdmc":'''Mphlpdmc''',
"ctechlicensing":'''C Tech Licensing''',
"fjdmimgr":'''fjdmimgr''',
"boxp":'''Brivs! Open Extensible Protocol''',
"d2dconfig":'''D2D Configuration Service''',
"d2ddatatrans":'''D2D Data Transfer Service''',
"adws":'''Active Directory Web Services''',
"otp":'''OpenVAS Transfer Protocol''',
"fjinvmgr":'''fjinvmgr''',
"mpidcagt":'''MpIdcAgt''',
"sec-t4net-srv":'''Samsung Twain for Network Server''',
"sec-t4net-clt":'''Samsung Twain for Network Client''',
"sec-pc2fax-srv":'''Samsung PC2FAX for Network Server''',
"git":'''git pack transfer service''',
"tungsten-https":'''WSO2 Tungsten HTTPS''',
"wso2esb-console":'''WSO2 ESB Administration Console HTTPS''',
"mindarray-ca":'''MindArray Systems Console Agent''',
"sntlkeyssrvr":'''Sentinel Keys Server''',
"ismserver":'''ismserver''',
"mngsuite":'''Management Suite Remote Control''',
"laes-bf":'''Surveillance buffering function''',
"trispen-sra":'''Trispen Secure Remote Access''',
"ldgateway":'''LANDesk Gateway''',
"cba8":'''LANDesk Management Agent (cba8)''',
"msgsys":'''Message System''',
"pds":'''Ping Discovery Service''',
"mercury-disc":'''Mercury Discovery''',
"pd-admin":'''PD Administration''',
"vscp":'''Very Simple Ctrl Protocol''',
"robix":'''Robix''',
"micromuse-ncpw":'''MICROMUSE-NCPW''',
"streamcomm-ds":'''StreamComm User Directory''',
"iadt-tls":'''iADT Protocol over TLS''',
"erunbook-agent":'''eRunbook Agent
IANA assigned this well-formed service name as a replacement for "erunbook_agent".''',
"erunbook_agent":'''eRunbook Agent''',
"erunbook-server":'''eRunbook Server
IANA assigned this well-formed service name as a replacement for "erunbook_server".''',
"erunbook_server":'''eRunbook Server''',
"condor":'''Condor Collector Service''',
"odbcpathway":'''ODBC Pathway Service''',
"uniport":'''UniPort SSO Controller''',
"peoctlr":'''Peovica Controller''',
"peocoll":'''Peovica Collector''',
"pqsflows":'''ProQueSys Flows Service''',
"xmms2":'''Cross-platform Music Multiplexing System''',
"tec5-sdctp":'''tec5 Spectral Device Control Protocol''',
"client-wakeup":'''T-Mobile Client Wakeup Message''',
"ccnx":'''Content Centric Networking''',
"board-roar":'''Board M.I.T. Service''',
"l5nas-parchan":'''L5NAS Parallel Channel''',
"board-voip":'''Board M.I.T. Synchronous Collaboration''',
"rasadv":'''rasadv''',
"tungsten-http":'''WSO2 Tungsten HTTP''',
"davsrc":'''WebDav Source Port''',
"sstp-2":'''Sakura Script Transfer Protocol-2''',
"davsrcs":'''WebDAV Source TLS/SSL''',
"sapv1":'''Session Announcement v1''',
"sd":'''Session Director''',
"cyborg-systems":'''CYBORG Systems''',
"gt-proxy":'''Port for Cable network related data proxy or repeater''',
"monkeycom":'''MonkeyCom''',
"sctp-tunneling":'''SCTP TUNNELING''',
"iua":'''IUA''',
"domaintime":'''domaintime''',
"sype-transport":'''SYPECom Transport Protocol''',
"apc-9950":'''APC 9950''',
"apc-9951":'''APC 9951''',
"apc-9952":'''APC 9952''',
"acis":'''9953''',
"hinp":'''HaloteC Instrument Network Protocol''',
"alljoyn-stm":'''Contact Port for AllJoyn standard messaging''',
"odnsp":'''OKI Data Network Setting Protocol''',
"dsm-scm-target":'''DSM/SCM Target Interface''',
"nsesrvr":'''Software Essentials Secure HTTP server''',
"osm-appsrvr":'''OSM Applet Server''',
"osm-oev":'''OSM Event Server''',
"palace-1":'''OnLive-1''',
"palace-2":'''OnLive-2''',
"palace-3":'''OnLive-3''',
"palace-4":'''Palace-4''',
"palace-5":'''Palace-5''',
"palace-6":'''Palace-6''',
"distinct32":'''Distinct32''',
"distinct":'''distinct''',
"ndmp":'''Network Data Management Protocol''',
"scp-config":'''SCP Configuration''',
"documentum":'''EMC-Documentum Content Server Product''',
"documentum-s":'''EMC-Documentum Content Server Product
IANA assigned this well-formed service name as a replacement for "documentum_s".''',
"documentum_s":'''EMC-Documentum Content Server Product''',
"emcrmirccd":'''EMC Replication Manager Client''',
"emcrmird":'''EMC Replication Manager Server''',
"mvs-capacity":'''MVS Capacity''',
"octopus":'''Octopus Multiplexer''',
"swdtp-sv":'''Systemwalker Desktop Patrol''',
"rxapi":'''ooRexx rxapi services''',
"zabbix-agent":'''Zabbix Agent''',
"zabbix-trapper":'''Zabbix Trapper''',
"qptlmd":'''Quantapoint FLEXlm Licensing Service''',
"amanda":'''Amanda''',
"famdc":'''FAM Archive Server''',
"itap-ddtp":'''VERITAS ITAP DDTP''',
"ezmeeting-2":'''eZmeeting''',
"ezproxy-2":'''eZproxy''',
"ezrelay":'''eZrelay''',
"swdtp":'''Systemwalker Desktop Patrol''',
"bctp-server":'''VERITAS BCTP, server''',
"nmea-0183":'''NMEA-0183 Navigational Data''',
"netiq-endpoint":'''NetIQ Endpoint''',
"netiq-qcheck":'''NetIQ Qcheck''',
"netiq-endpt":'''NetIQ Endpoint''',
"netiq-voipa":'''NetIQ VoIP Assessor''',
"iqrm":'''NetIQ IQCResource Managament Svc''',
"bmc-perf-sd":'''BMC-PERFORM-SERVICE DAEMON''',
"bmc-gms":'''BMC General Manager Server''',
"qb-db-server":'''QB Database Server''',
"snmptls":'''SNMP-TLS''',
"snmptls-trap":'''SNMP-Trap-TLS''',
"trisoap":'''Trigence AE Soap Service''',
"rsms":'''Remote Server Management Service''',
"apollo-relay":'''Apollo Relay Port''',
"axis-wimp-port":'''Axis WIMP Port''',
"blocks":'''Blocks''',
"cosir":'''Computer Op System Information Report''',
"MOS-lower":'''MOS Media Object Metadata Port''',
"MOS-upper":'''MOS Running Order Port''',
"MOS-aux":'''MOS Low Priority Port''',
"MOS-soap":'''MOS SOAP Default Port''',
"MOS-soap-opt":'''MOS SOAP Optional Port''',
"printopia":'''Port to allow for administration and control of "Printopia" application software,
which provides printing services to mobile users''',
"gap":'''Gestor de Acaparamiento para Pocket PCs''',
"lpdg":'''LUCIA Pareja Data Group''',
"nbd":'''Linux Network Block Device''',
"helix":'''Helix Client/Server''',
"rmiaux":'''Auxiliary RMI Port''',
"irisa":'''IRISA''',
"metasys":'''Metasys''',
"netapp-icmgmt":'''NetApp Intercluster Management''',
"netapp-icdata":'''NetApp Intercluster Data''',
"sgi-lk":'''SGI LK Licensing service''',
"vce":'''Viral Computing Environment (VCE)''',
"dicom":'''DICOM''',
"suncacao-snmp":'''sun cacao snmp access point''',
"suncacao-jmxmp":'''sun cacao JMX-remoting access point''',
"suncacao-rmi":'''sun cacao rmi registry access point''',
"suncacao-csa":'''sun cacao command-streaming access point''',
"suncacao-websvc":'''sun cacao web service access point''',
"oemcacao-jmxmp":'''OEM cacao JMX-remoting access point''',
"t5-straton":'''Straton Runtime Programing''',
"oemcacao-rmi":'''OEM cacao rmi registry access point''',
"oemcacao-websvc":'''OEM cacao web service access point''',
"smsqp":'''smsqp''',
"dcsl-backup":'''DCSL Network Backup Services''',
"wifree":'''WiFree Service''',
"memcache":'''Memory cache service''',
"imip":'''IMIP''',
"imip-channels":'''IMIP Channels Port''',
"arena-server":'''Arena Server Listen''',
"atm-uhas":'''ATM UHAS''',
"hkp":'''OpenPGP HTTP Keyserver''',
"asgcypresstcps":'''ASG Cypress Secure Only''',
"tempest-port":'''Tempest Protocol Port''',
"h323callsigalt":'''h323 Call Signal Alternate''',
"intrepid-ssl":'''Intrepid SSL''',
"lanschool":'''LanSchool''',
"xoraya":'''X2E Xoraya Multichannel protocol''',
"sysinfo-sp":'''SysInfo Service Protocol''',
"entextxid":'''IBM Enterprise Extender SNA XID Exchange''',
"entextnetwk":'''IBM Enterprise Extender SNA COS Network Priority''',
"entexthigh":'''IBM Enterprise Extender SNA COS High Priority''',
"entextmed":'''IBM Enterprise Extender SNA COS Medium Priority''',
"entextlow":'''IBM Enterprise Extender SNA COS Low Priority''',
"dbisamserver1":'''DBISAM Database Server - Regular''',
"dbisamserver2":'''DBISAM Database Server - Admin''',
"accuracer":'''Accuracer Database System Server''',
"accuracer-dbms":'''Accuracer Database System Admin''',
"edbsrvr":'''ElevateDB Server''',
"vipera":'''Vipera Messaging Service''',
"vipera-ssl":'''Vipera Messaging Service over SSL Communication''',
"rets-ssl":'''RETS over SSL''',
"nupaper-ss":'''NuPaper Session Service''',
"cawas":'''CA Web Access Service''',
"hivep":'''HiveP''',
"linogridengine":'''LinoGrid Engine''',
"rads":'''Remote Administration Daemon (RAD) is a system service that offers secure, remote, programmatic access to Solaris system configuration and run-time state''',
"warehouse-sss":'''Warehouse Monitoring Syst SSS''',
"warehouse":'''Warehouse Monitoring Syst''',
"italk":'''Italk Chat System''',
"tsaf":'''tsaf port''',
"i-zipqd":'''I-ZIPQD''',
"bcslogc":'''Black Crow Software application logging''',
"rs-pias":'''R&S Proxy Installation Assistant Service''',
"emc-vcas-tcp":'''EMC Virtual CAS Service''',
"powwow-client":'''PowWow Client''',
"powwow-server":'''PowWow Server''',
"doip-data":'''DoIP Data''',
"bprd":'''BPRD Protocol (VERITAS NetBackup)''',
"bpdbm":'''BPDBM Protocol (VERITAS NetBackup)''',
"bpjava-msvc":'''BP Java MSVC Protocol''',
"vnetd":'''Veritas Network Utility''',
"bpcd":'''VERITAS NetBackup''',
"vopied":'''VOPIED Protocol''',
"nbdb":'''NetBackup Database''',
"nomdb":'''Veritas-nomdb''',
"dsmcc-config":'''DSMCC Config''',
"dsmcc-session":'''DSMCC Session Messages''',
"dsmcc-passthru":'''DSMCC Pass-Thru Messages''',
"dsmcc-download":'''DSMCC Download Protocol''',
"dsmcc-ccp":'''DSMCC Channel Change Protocol''',
"bmdss":'''Blackmagic Design Streaming Server''',
"ucontrol":'''Ultimate Control communication protocol''',
"dta-systems":'''D-TA SYSTEMS''',
"medevolve":'''MedEvolve Port Requester''',
"scotty-ft":'''SCOTTY High-Speed Filetransfer''',
"sua":'''SUA''',
"sage-best-com1":'''sage Best! Config Server 1''',
"sage-best-com2":'''sage Best! Config Server 2''',
"vcs-app":'''VCS Application''',
"icpp":'''IceWall Cert Protocol''',
"gcm-app":'''GCM Application''',
"vrts-tdd":'''Veritas Traffic Director''',
"vcscmd":'''Veritas Cluster Server Command Server''',
"vad":'''Veritas Application Director''',
"cps":'''Fencing Server''',
"ca-web-update":'''CA eTrust Web Update Service''',
"hde-lcesrvr-1":'''hde-lcesrvr-1''',
"hde-lcesrvr-2":'''hde-lcesrvr-2''',
"hydap":'''Hypack Data Aquisition''',
"xpilot":'''XPilot Contact Port''',
"3link":'''3Link Negotiation''',
"cisco-snat":'''Cisco Stateful NAT''',
"bex-xr":'''Backup Express Restore Server''',
"ptp":'''Picture Transfer Protocol''',
"programmar":'''ProGrammar Enterprise''',
"fmsas":'''Administration Server Access''',
"fmsascon":'''Administration Server Connector''',
"gsms":'''GoodSync Mediation Service''',
"jwpc":'''Filemaker Java Web Publishing Core''',
"jwpc-bin":'''Filemaker Java Web Publishing Core Binary''',
"sun-sea-port":'''Solaris SEA Port''',
"solaris-audit":'''Solaris Audit - secure remote audit log''',
"etb4j":'''etb4j''',
"pduncs":'''Policy Distribute, Update Notification''',
"pdefmns":'''Policy definition and update management''',
"netserialext1":'''Network Serial Extension Ports One''',
"netserialext2":'''Network Serial Extension Ports Two''',
"netserialext3":'''Network Serial Extension Ports Three''',
"netserialext4":'''Network Serial Extension Ports Four''',
"connected":'''Connected Corp''',
"xoms":'''X509 Objects Management Service''',
"newbay-snc-mc":'''Newbay Mobile Client Update Service''',
"sgcip":'''Simple Generic Client Interface Protocol''',
"intel-rci-mp":'''INTEL-RCI-MP''',
"amt-soap-http":'''Intel(R) AMT SOAP/HTTP''',
"amt-soap-https":'''Intel(R) AMT SOAP/HTTPS''',
"amt-redir-tcp":'''Intel(R) AMT Redirection/TCP''',
"amt-redir-tls":'''Intel(R) AMT Redirection/TLS''',
"isode-dua":'''''',
"soundsvirtual":'''Sounds Virtual''',
"chipper":'''Chipper''',
"avdecc":'''IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control''',
"integrius-stp":'''Integrius Secure Tunnel Protocol''',
"ssh-mgmt":'''SSH Tectia Manager''',
"db-lsp":'''Dropbox LanSync Protocol''',
"ea":'''Eclipse Aviation''',
"zep":'''Encap. ZigBee Packets''',
"zigbee-ip":'''ZigBee IP Transport Service''',
"zigbee-ips":'''ZigBee IP Transport Secure Service''',
"sw-orion":'''SolarWinds Orion''',
"biimenu":'''Beckman Instruments, Inc.''',
"radpdf":'''RAD PDF Service''',
"racf":'''z/OS Resource Access Control Facility''',
"opsec-cvp":'''OPSEC CVP''',
"opsec-ufp":'''OPSEC UFP''',
"opsec-sam":'''OPSEC SAM''',
"opsec-lea":'''OPSEC LEA''',
"opsec-omi":'''OPSEC OMI''',
"ohsc":'''Occupational Health SC''',
"opsec-ela":'''OPSEC ELA''',
"checkpoint-rtm":'''Check Point RTM''',
"iclid":'''Checkpoint router monitoring''',
"clusterxl":'''Checkpoint router state backup''',
"gv-pf":'''GV NetConfig Service''',
"ac-cluster":'''AC Cluster''',
"rds-ib":'''Reliable Datagram Service''',
"rds-ip":'''Reliable Datagram Service over IP''',
"ique":'''IQue Protocol''',
"infotos":'''Infotos''',
"apc-necmp":'''APCNECMP''',
"igrid":'''iGrid Server''',
"j-link":'''J-Link TCP/IP Protocol''',
"opsec-uaa":'''OPSEC UAA''',
"ua-secureagent":'''UserAuthority SecureAgent''',
"keysrvr":'''Key Server for SASSAFRAS''',
"keyshadow":'''Key Shadow for SASSAFRAS''',
"mtrgtrans":'''mtrgtrans''',
"hp-sco":'''hp-sco''',
"hp-sca":'''hp-sca''',
"hp-sessmon":'''HP-SESSMON''',
"fxuptp":'''FXUPTP''',
"sxuptp":'''SXUPTP''',
"jcp":'''JCP Client''',
"iec-104-sec":'''IEC 60870-5-104 process control - secure''',
"dnp-sec":'''Distributed Network Protocol - Secure''',
"dnp":'''DNP''',
"microsan":'''MicroSAN''',
"commtact-http":'''Commtact HTTP''',
"commtact-https":'''Commtact HTTPS''',
"openwebnet":'''OpenWebNet protocol for electric network''',
"ss-idi":'''Samsung Interdevice Interaction''',
"opendeploy":'''OpenDeploy Listener''',
"nburn-id":'''NetBurner ID Port
IANA assigned this well-formed service name as a replacement for "nburn_id".''',
"nburn_id":'''NetBurner ID Port''',
"tmophl7mts":'''TMOP HL7 Message Transfer Service''',
"mountd":'''NFS mount protocol''',
"nfsrdma":'''Network File System (NFS) over RDMA''',
"tolfab":'''TOLfab Data Change''',
"ipdtp-port":'''IPD Tunneling Port''',
"ipulse-ics":'''iPulse-ICS''',
"emwavemsg":'''emWave Message Service''',
"track":'''Track''',
"athand-mmp":'''At Hand MMP''',
"irtrans":'''IRTrans Control''',
"rdm-tfs":'''Raima RDM TFS''',
"dfserver":'''MineScape Design File Server''',
"vofr-gateway":'''VoFR Gateway''',
"tvpm":'''TVNC Pro Multiplexing''',
"webphone":'''webphone''',
"netspeak-is":'''NetSpeak Corp. Directory Services''',
"netspeak-cs":'''NetSpeak Corp. Connection Services''',
"netspeak-acd":'''NetSpeak Corp. Automatic Call Distribution''',
"netspeak-cps":'''NetSpeak Corp. Credit Processing System''',
"snapenetio":'''SNAPenetIO''',
"optocontrol":'''OptoControl''',
"optohost002":'''Opto Host Port 2''',
"optohost003":'''Opto Host Port 3''',
"optohost004":'''Opto Host Port 4''',
"optohost004":'''Opto Host Port 5''',
"dcap":'''dCache Access Protocol''',
"gsidcap":'''GSI dCache Access Protocol''',
"wnn6":'''wnn6''',
"cis":'''CompactIS Tunnel''',
"cis-secure":'''CompactIS Secure Tunnel''',
"WibuKey":'''WibuKey Standard WkLan''',
"CodeMeter":'''CodeMeter Standard''',
"caldsoft-backup":'''CaldSoft Backup server file transfer''',
"vocaltec-wconf":'''Vocaltec Web Conference''',
"talikaserver":'''Talika Main Server''',
"aws-brf":'''Telerate Information Platform LAN''',
"brf-gw":'''Telerate Information Platform WAN''',
"inovaport1":'''Inova LightLink Server Type 1''',
"inovaport2":'''Inova LightLink Server Type 2''',
"inovaport3":'''Inova LightLink Server Type 3''',
"inovaport4":'''Inova LightLink Server Type 4''',
"inovaport5":'''Inova LightLink Server Type 5''',
"inovaport6":'''Inova LightLink Server Type 6''',
"gntp":'''Generic Notification Transport Protocol''',
"elxmgmt":'''Emulex HBAnyware Remote Management''',
"novar-dbase":'''Novar Data''',
"novar-alarm":'''Novar Alarm''',
"novar-global":'''Novar Global''',
"aequus":'''Aequus Service''',
"aequus-alt":'''Aequus Service Mgmt''',
"areaguard-neo":'''AreaGuard Neo - WebServer''',
"med-ltp":'''med-ltp''',
"med-fsp-rx":'''med-fsp-rx''',
"med-fsp-tx":'''med-fsp-tx''',
"med-supp":'''med-supp''',
"med-ovw":'''med-ovw''',
"med-ci":'''med-ci''',
"med-net-svc":'''med-net-svc''',
"filesphere":'''fileSphere''',
"vista-4gl":'''Vista 4GL''',
"ild":'''Isolv Local Directory''',
"intel-rci":'''Intel RCI
IANA assigned this well-formed service name as a replacement for "intel_rci".''',
"intel_rci":'''Intel RCI''',
"tonidods":'''Tonido Domain Server''',
"binkp":'''BINKP''',
"canditv":'''Canditv Message Service''',
"flashfiler":'''FlashFiler''',
"proactivate":'''Turbopower Proactivate''',
"tcc-http":'''TCC User HTTP Service''',
"cslg":'''Citrix StorageLink Gateway''',
"find":'''Find Identification of Network Devices''',
"icl-twobase1":'''icl-twobase1''',
"icl-twobase2":'''icl-twobase2''',
"icl-twobase3":'''icl-twobase3''',
"icl-twobase4":'''icl-twobase4''',
"icl-twobase5":'''icl-twobase5''',
"icl-twobase6":'''icl-twobase6''',
"icl-twobase7":'''icl-twobase7''',
"icl-twobase8":'''icl-twobase8''',
"icl-twobase9":'''icl-twobase9''',
"icl-twobase10":'''icl-twobase10''',
"sauterdongle":'''Sauter Dongle''',
"idtp":'''Identifier Tracing Protocol''',
"vocaltec-hos":'''Vocaltec Address Server''',
"tasp-net":'''TASP Network Comm''',
"niobserver":'''NIObserver''',
"nilinkanalyst":'''NILinkAnalyst''',
"niprobe":'''NIProbe''',
"quake":'''quake''',
"scscp":'''Symbolic Computation Software Composability Protocol''',
"wnn6-ds":'''wnn6-ds''',
"ezproxy":'''eZproxy''',
"ezmeeting":'''eZmeeting''',
"k3software-svr":'''K3 Software-Server''',
"k3software-cli":'''K3 Software-Client''',
"exoline-tcp":'''EXOline-TCP''',
"exoconfig":'''EXOconfig''',
"exonet":'''EXOnet''',
"imagepump":'''ImagePump''',
"jesmsjc":'''Job controller service''',
"kopek-httphead":'''Kopek HTTP Head Port''',
"ars-vista":'''ARS VISTA Application''',
"tw-auth-key":'''TW Authentication/Key Distribution and''',
"nxlmd":'''NX License Manager''',
"pqsp":'''PQ Service''',
"siemensgsm":'''Siemens GSM''',
"otmp":'''ObTools Message Protocol''',
"pago-services1":'''Pago Services 1''',
"pago-services2":'''Pago Services 2''',
"kingdomsonline":'''Kingdoms Online (CraigAvenue)''',
"ovobs":'''OpenView Service Desk Client''',
"autotrac-acp":'''Autotrac ACP 245''',
"xqosd":'''XQoS network monitor''',
"tetrinet":'''TetriNET Protocol''',
"lm-mon":'''lm mon''',
"dsx-monitor":'''DS Expert Monitor
IANA assigned this well-formed service name as a replacement for "dsx_monitor".''',
"dsx_monitor":'''DS Expert Monitor''',
"gamesmith-port":'''GameSmith Port''',
"iceedcp-tx":'''Embedded Device Configuration Protocol TX
IANA assigned this well-formed service name as a replacement for "iceedcp_tx".''',
"iceedcp_tx":'''Embedded Device Configuration Protocol TX''',
"iceedcp-rx":'''Embedded Device Configuration Protocol RX
IANA assigned this well-formed service name as a replacement for "iceedcp_rx".''',
"iceedcp_rx":'''Embedded Device Configuration Protocol RX''',
"iracinghelper":'''iRacing helper service''',
"t1distproc60":'''T1 Distributed Processor''',
"apm-link":'''Access Point Manager Link''',
"sec-ntb-clnt":'''SecureNotebook-CLNT''',
"DMExpress":'''DMExpress''',
"filenet-powsrm":'''FileNet BPM WS-ReliableMessaging Client''',
"filenet-tms":'''Filenet TMS''',
"filenet-rpc":'''Filenet RPC''',
"filenet-nch":'''Filenet NCH''',
"filenet-rmi":'''FileNET RMI''',
"filenet-pa":'''FileNET Process Analyzer''',
"filenet-cm":'''FileNET Component Manager''',
"filenet-re":'''FileNET Rules Engine''',
"filenet-pch":'''Performance Clearinghouse''',
"filenet-peior":'''FileNET BPM IOR''',
"filenet-obrok":'''FileNet BPM CORBA''',
"mlsn":'''Multiple Listing Service Network''',
"retp":'''Real Estate Transport Protocol''',
"idmgratm":'''Attachmate ID Manager''',
"aurora-balaena":'''Aurora (Balaena Ltd)''',
"diamondport":'''DiamondCentral Interface''',
"dgi-serv":'''Digital Gaslight Service''',
"speedtrace":'''SpeedTrace TraceAgent''',
"traceroute":'''traceroute use''',
"snip-slave":'''SNIP Slave''',
"turbonote-2":'''TurboNote Relay Server Default Port''',
"p-net-local":'''P-Net on IP local''',
"p-net-remote":'''P-Net on IP remote''',
"dhanalakshmi":'''dhanalakshmi.org EDI Service''',
"profinet-rt":'''PROFInet RT Unicast''',
"profinet-rtm":'''PROFInet RT Multicast''',
"profinet-cm":'''PROFInet Context Manager''',
"ethercat":'''EtherCAT Port''',
"kitim":'''KIT Messenger''',
"altova-lm":'''Altova License Management''',
"guttersnex":'''Gutters Note Exchange''',
"openstack-id":'''OpenStack ID Service''',
"allpeers":'''AllPeers Network''',
"febooti-aw":'''Febooti Automation Workshop''',
"kastenxpipe":'''KastenX Pipe''',
"neckar":'''science + computing's Venus Administration Port''',
"unisys-eportal":'''Unisys ClearPath ePortal''',
"galaxy7-data":'''Galaxy7 Data Tunnel''',
"fairview":'''Fairview Message Service''',
"agpolicy":'''AppGate Policy Server''',
"sruth":'''Sruth is a service for the distribution of routinely-
generated but arbitrary files based on a publish/subscribe
distribution model and implemented using a peer-to-peer transport
mechanism''',
"secrmmsafecopya":'''Security approval process for use of the secRMM SafeCopy program''',
"turbonote-1":'''TurboNote Default Port''',
"safetynetp":'''SafetyNET p''',
"cscp":'''CSCP''',
"csccredir":'''CSCCREDIR''',
"csccfirewall":'''CSCCFIREWALL''',
"fs-qos":'''Foursticks QoS Protocol''',
"tentacle":'''Tentacle Server''',
"crestron-cip":'''Crestron Control Port''',
"crestron-ctp":'''Crestron Terminal Port''',
"crestron-cips":'''Crestron Secure Control Port''',
"crestron-ctps":'''Crestron Secure Terminal Port''',
"candp":'''Computer Associates network discovery protocol''',
"candrp":'''CA discovery response''',
"caerpc":'''CA eTrust RPC''',
"reachout":'''REACHOUT''',
"ndm-agent-port":'''NDM-AGENT-PORT''',
"ip-provision":'''IP-PROVISION''',
"noit-transport":'''Reconnoiter Agent Data Transport''',
"shaperai":'''Shaper Automation Server Management''',
"eq3-update":'''EQ3 firmware update''',
"ew-mgmt":'''Cisco EnergyWise Management''',
"ciscocsdb":'''Cisco NetMgmt DB Ports''',
"pmcd":'''PCP server (pmcd)''',
"pmcdproxy":'''PCP server (pmcd) proxy''',
"cognex-dataman":'''Cognex DataMan Management Protocol''',
"rbr-debug":'''REALbasic Remote Debug''',
"EtherNet-IP-2":'''EtherNet/IP messaging
IANA assigned this well-formed service name as a replacement for "EtherNet/IP-2".''',
"EtherNet/IP-2":'''EtherNet/IP messaging''',
"asmp":'''NSi AutoStore Status Monitoring Protocol data transfer''',
"asmps":'''NSi AutoStore Status Monitoring Protocol secure data transfer''',
"invision-ag":'''InVision AG''',
"eba":'''EBA PRISE''',
"dai-shell":'''Server for the DAI family of client-server products''',
"qdb2service":'''Qpuncture Data Access Service''',
"ssr-servermgr":'''SSRServerMgr''',
"sp-remotetablet":'''Connection between a desktop computer or server and a signature tablet to capture handwritten signatures''',
"mediabox":'''MediaBox Server''',
"mbus":'''Message Bus''',
"winrm":'''Windows Remote Management Service''',
"dbbrowse":'''Databeam Corporation''',
"directplaysrvr":'''Direct Play Server''',
"ap":'''ALC Protocol''',
"bacnet":'''Building Automation and Control Networks''',
"nimcontroller":'''Nimbus Controller''',
"nimspooler":'''Nimbus Spooler''',
"nimhub":'''Nimbus Hub''',
"nimgtw":'''Nimbus Gateway''',
"nimbusdb":'''NimbusDB Connector''',
"nimbusdbctrl":'''NimbusDB Control''',
"3gpp-cbsp":'''3GPP Cell Broadcast Service Protocol''',
"isnetserv":'''Image Systems Network Services''',
"blp5":'''Bloomberg locator''',
"com-bardac-dw":'''com-bardac-dw''',
"iqobject":'''iqobject''',
"matahari":'''Matahari Broker''',
"acs-ctl-ds":'''Access Control Device''',
"acs-ctl-gw":'''Access Control Gateway''',
"addressbooksrv":'''Address Book Server used for contacts and calendar synchronisation''',
"adobe-shadow":'''Adobe Shadow Server''',
"aerohive-proxy":'''Aerohive Proxy Configuration Service''',
"airdrop":'''Airdrop''',
"airpreview":'''Coda AirPreview''',
"aloe-gwp":'''Aloe Gateway Protocol''',
"aloe-pp":'''Aloe Pairing Protocol''',
"apple-mobdev":'''Apple Mobile Device Protocol''',
"avatars":'''Libravatar federated avatar hosting service.''',
"avatars-sec":'''Libravatar federated avatar hosting service.''',
"bitflit":'''Data transfer service''',
"boxraysrvr":'''Boxray Devices Host Server''',
"caldav":'''Calendaring Extensions to WebDAV (CalDAV) - non-TLS''',
"caldavs":'''Calendaring Extensions to WebDAV (CalDAV) - over TLS''',
"carddav":'''vCard Extensions to WebDAV (CardDAV) - non-TLS''',
"carddavs":'''vCard Extensions to WebDAV (CardDAV) - over TLS''',
"carousel":'''Carousel Player Protocol''',
"ciao":'''Ciao Arduino Protocol''',
"dbaudio":'''d&b audiotechnik remote network''',
"devonsync":'''DEVONthink synchronization protocol''',
"easyspndlg-sync":'''Sync service for the Easy Spend Log app''',
"eeg":'''EEG System Discovery across local and wide area networks''',
"efkon-elite":'''EFKON Lightweight Interface to Traffic Events''',
"enphase-envoy":'''Enphase Energy Envoy''',
"esp":'''Extensis Server Protocol''',
"flir-ircam":'''FLIR Infrared Camera''',
"goorstop":'''For iOS Application named GoOrStop''',
"groovesquid":'''Groovesquid Democratic Music Control Protocol''',
"https":'''HTTP over SSL/TLS''',
"ims-ni":'''Noise Inspector''',
"infboard":'''InfBoard interactive whiteboard protocol''',
"iota":'''iotaMed medical records server''',
"ir-hvac-000":'''HVAC SMIL Server''',
"irradiatd-iclip":'''iClip clipboard transfer''',
"isynchronize":'''iSynchronize data synchronization protocol''',
"itap-publish":'''iTap Publishing Service''',
"jnx-kcsync":'''jollys keychain cloud sync protocol''',
"jukebox":'''Jukebox Request Service''',
"keynoteaccess":'''KeynoteAccess is used for sending remote requests/responses when controlling a slideshow with Keynote Remote''',
"keynotepairing":'''KeynotePairing is used to pair Keynote Remote with Keynote''',
"lumiere":'''A protocol to remotely control DMX512 devices over the network''',
"lumis-lca":'''Lumis Cache Appliance Protocol''',
"mavlink":'''MAVLink Micro Air Vehicle Communication Protocol''',
"mediatap":'''Mediatap streaming protocol''',
"netvu-video":'''AD Group NetVu Connected Video''',
"nextcap":'''Proprietary communication protocol for NextCap capture solution''',
"ni":'''National Instruments Network Device''',
"ni-rt":'''National Instruments Real-Time Target''',
"ni-sysapi":'''National Instruments System API Service''',
"omadm-bootstrap":'''Open Mobile Alliance (OMA) Device Management (DM) Bootstrap Server Discovery Service''',
"pairandshare":'''Pair & Share data protocol''',
"panoply":'''Panoply multimedia composite transfer protocol''',
"parabay-p2p":'''Parabay P2P protocol''',
"parity":'''PA-R-I-Ty (Public Address - Radio - Intercom - Telefony)''',
"photosmithsync":'''Photosmith's iPad to Lightroom sync protocol''',
"podcastproxy":'''Protocol for communication between Podcast''',
"printopia":'''Port to allow for administration and control of "Printopia" application software,
which provides printing services to mobile users''',
"pstmailsync":'''File synchronization protocol for Pst Mail Sync''',
"pstmailsync-ssl":'''Secured file synchronization protocol for Pst Mail Sync''',
"ptp-init":'''Picture Transfer Protocol(PTP) Initiator''',
"pvaccess":'''Experimental Physics and Industrial Control System''',
"quad":'''Distributed Game Data''',
"radioport":'''RadioPort Message Service''',
"recipe-box":'''The Recipe Box Exchange''',
"recipe-sharing":'''Recipe Sharing Protocol''',
"recolive-cc":'''Remote Camera Control''',
"rgb":'''RGB Spectrum Device Discovery''',
"rym-rrc":'''Raymarine remote control protocol''',
"savagesoft":'''Proprietary Client Server Protocol''',
"smartsocket":'''home control''',
"spidap":'''Sierra Photonics Inc. data protocol''',
"spx-hmp":'''SpinetiX HMP''',
"ssh":'''SSH Remote Login Protocol''',
"soda":'''Secure On Device API''',
"sqp":'''Square Connect Control Protocol''',
"stotp":'''One Time Pad Synchronisation''',
"tenir-rc":'''Proprietary''',
"test-ok":'''Test Controller Card''',
"tivo-device":'''TiVo Device Protocol''',
"tivo-mindrpc":'''TiVo RPC Protocol''',
"tsbiis":'''The Social Broadband Interference Information Sharing''',
"twinlevel":'''detect sanitary product''',
"tzrpc":'''TZ-Software remote procedure call based synchronization protocol''',
"wd-2go":'''NAS Service Protocol''',
"z-wave":'''Z-Wave Service Discovery''',
"zeromq":'''High performance brokerless messaging''',
}
| udp_services = {'tcpmux': 'TCP Port Service Multiplexer', 'compressnet': 'Management Utility', 'compressnet': 'Compression Process', 'rje': 'Remote Job Entry', 'echo': 'Echo', 'discard': 'Discard', 'systat': 'Active Users', 'daytime': 'Daytime', 'qotd': 'Quote of the Day', 'msp': 'Message Send Protocol (historic)', 'chargen': 'Character Generator', 'ftp-data': 'File Transfer [Default Data]', 'ftp': 'File Transfer [Control]', 'ssh': 'The Secure Shell (SSH) Protocol', 'telnet': 'Telnet', 'smtp': 'Simple Mail Transfer', 'nsw-fe': 'NSW User System FE', 'msg-icp': 'MSG ICP', 'msg-auth': 'MSG Authentication', 'dsp': 'Display Support Protocol', 'time': 'Time', 'rap': 'Route Access Protocol', 'rlp': 'Resource Location Protocol', 'graphics': 'Graphics', 'name': 'Host Name Server', 'nameserver': 'Host Name Server', 'nicname': 'Who Is', 'mpm-flags': 'MPM FLAGS Protocol', 'mpm': 'Message Processing Module [recv]', 'mpm-snd': 'MPM [default send]', 'ni-ftp': 'NI FTP', 'auditd': 'Digital Audit Daemon', 'tacacs': 'Login Host Protocol (TACACS)', 're-mail-ck': 'Remote Mail Checking Protocol', 'la-maint': 'IMP Logical Address Maintenance', 'xns-time': 'XNS Time Protocol', 'domain': 'Domain Name Server', 'xns-ch': 'XNS Clearinghouse', 'isi-gl': 'ISI Graphics Language', 'xns-auth': 'XNS Authentication', 'xns-mail': 'XNS Mail', 'ni-mail': 'NI MAIL', 'acas': 'ACA Services', 'whoispp': 'whois++\nIANA assigned this well-formed service name as a replacement for "whois++".', 'whois++': 'whois++', 'covia': 'Communications Integrator (CI)', 'tacacs-ds': 'TACACS-Database Service', 'sql-net': 'Oracle SQL*NET\nIANA assigned this well-formed service name as a replacement for "sql*net".', 'sql*net': 'Oracle SQL*NET', 'bootps': 'Bootstrap Protocol Server', 'bootpc': 'Bootstrap Protocol Client', 'tftp': 'Trivial File Transfer', 'gopher': 'Gopher', 'netrjs-1': 'Remote Job Service', 'netrjs-2': 'Remote Job Service', 'netrjs-3': 'Remote Job Service', 'netrjs-4': 'Remote Job Service', 'deos': 'Distributed External Object Store', 'vettcp': 'vettcp', 'finger': 'Finger', 'http': 'World Wide Web HTTP', 'www': 'World Wide Web HTTP', 'www-http': 'World Wide Web HTTP', 'xfer': 'XFER Utility', 'mit-ml-dev': 'MIT ML Device', 'ctf': 'Common Trace Facility', 'mit-ml-dev': 'MIT ML Device', 'mfcobol': 'Micro Focus Cobol', 'kerberos': 'Kerberos', 'su-mit-tg': 'SU/MIT Telnet Gateway', 'dnsix': 'DNSIX Securit Attribute Token Map', 'mit-dov': 'MIT Dover Spooler', 'npp': 'Network Printing Protocol', 'dcp': 'Device Control Protocol', 'objcall': 'Tivoli Object Dispatcher', 'supdup': 'SUPDUP', 'dixie': 'DIXIE Protocol Specification', 'swift-rvf': 'Swift Remote Virtural File Protocol', 'tacnews': 'TAC News', 'metagram': 'Metagram Relay', 'hostname': 'NIC Host Name Server', 'iso-tsap': 'ISO-TSAP Class 0', 'gppitnp': 'Genesis Point-to-Point Trans Net', 'acr-nema': 'ACR-NEMA Digital Imag. & Comm. 300', 'cso': 'CCSO name server protocol', 'csnet-ns': 'Mailbox Name Nameserver', '3com-tsmux': '3COM-TSMUX', 'rtelnet': 'Remote Telnet Service', 'snagas': 'SNA Gateway Access Server', 'pop2': 'Post Office Protocol - Version 2', 'pop3': 'Post Office Protocol - Version 3', 'sunrpc': 'SUN Remote Procedure Call', 'mcidas': 'McIDAS Data Transmission Protocol', 'auth': 'Authentication Service', 'sftp': 'Simple File Transfer Protocol', 'ansanotify': 'ANSA REX Notify', 'uucp-path': 'UUCP Path Service', 'sqlserv': 'SQL Services', 'nntp': 'Network News Transfer Protocol', 'cfdptkt': 'CFDPTKT', 'erpc': 'Encore Expedited Remote Pro.Call', 'smakynet': 'SMAKYNET', 'ntp': 'Network Time Protocol', 'ansatrader': 'ANSA REX Trader', 'locus-map': 'Locus PC-Interface Net Map Ser', 'nxedit': 'NXEdit', 'locus-con': 'Locus PC-Interface Conn Server', 'gss-xlicen': 'GSS X License Verification', 'pwdgen': 'Password Generator Protocol', 'cisco-fna': 'cisco FNATIVE', 'cisco-tna': 'cisco TNATIVE', 'cisco-sys': 'cisco SYSMAINT', 'statsrv': 'Statistics Service', 'ingres-net': 'INGRES-NET Service', 'epmap': 'DCE endpoint resolution', 'profile': 'PROFILE Naming System', 'netbios-ns': 'NETBIOS Name Service', 'netbios-dgm': 'NETBIOS Datagram Service', 'netbios-ssn': 'NETBIOS Session Service', 'emfis-data': 'EMFIS Data Service', 'emfis-cntl': 'EMFIS Control Service', 'bl-idm': 'Britton-Lee IDM', 'imap': 'Internet Message Access Protocol', 'uma': 'Universal Management Architecture', 'uaac': 'UAAC Protocol', 'iso-tp0': 'ISO-IP0', 'iso-ip': 'ISO-IP', 'jargon': 'Jargon', 'aed-512': 'AED 512 Emulation Service', 'sql-net': 'SQL-NET', 'hems': 'HEMS', 'bftp': 'Background File Transfer Program', 'sgmp': 'SGMP', 'netsc-prod': 'NETSC', 'netsc-dev': 'NETSC', 'sqlsrv': 'SQL Service', 'knet-cmp': 'KNET/VM Command/Message Protocol', 'pcmail-srv': 'PCMail Server', 'nss-routing': 'NSS-Routing', 'sgmp-traps': 'SGMP-TRAPS', 'snmp': 'SNMP', 'snmptrap': 'SNMPTRAP', 'cmip-man': 'CMIP/TCP Manager', 'cmip-agent': 'CMIP/TCP Agent', 'xns-courier': 'Xerox', 's-net': 'Sirius Systems', 'namp': 'NAMP', 'rsvd': 'RSVD', 'send': 'SEND', 'print-srv': 'Network PostScript', 'multiplex': 'Network Innovations Multiplex', 'cl-1': 'Network Innovations CL/1\nIANA assigned this well-formed service name as a replacement for "cl/1".', 'cl/1': 'Network Innovations CL/1', 'xyplex-mux': 'Xyplex', 'mailq': 'MAILQ', 'vmnet': 'VMNET', 'genrad-mux': 'GENRAD-MUX', 'xdmcp': 'X Display Manager Control Protocol', 'nextstep': 'NextStep Window Server', 'bgp': 'Border Gateway Protocol', 'ris': 'Intergraph', 'unify': 'Unify', 'audit': 'Unisys Audit SITP', 'ocbinder': 'OCBinder', 'ocserver': 'OCServer', 'remote-kis': 'Remote-KIS', 'kis': 'KIS Protocol', 'aci': 'Application Communication Interface', 'mumps': "Plus Five's MUMPS", 'qft': 'Queued File Transport', 'gacp': 'Gateway Access Control Protocol', 'prospero': 'Prospero Directory Service', 'osu-nms': 'OSU Network Monitoring System', 'srmp': 'Spider Remote Monitoring Protocol', 'irc': 'Internet Relay Chat Protocol', 'dn6-nlm-aud': 'DNSIX Network Level Module Audit', 'dn6-smm-red': 'DNSIX Session Mgt Module Audit Redir', 'dls': 'Directory Location Service', 'dls-mon': 'Directory Location Service Monitor', 'smux': 'SMUX', 'src': 'IBM System Resource Controller', 'at-rtmp': 'AppleTalk Routing Maintenance', 'at-nbp': 'AppleTalk Name Binding', 'at-3': 'AppleTalk Unused', 'at-echo': 'AppleTalk Echo', 'at-5': 'AppleTalk Unused', 'at-zis': 'AppleTalk Zone Information', 'at-7': 'AppleTalk Unused', 'at-8': 'AppleTalk Unused', 'qmtp': 'The Quick Mail Transfer Protocol', 'z39-50': 'ANSI Z39.50\nIANA assigned this well-formed service name as a replacement for "z39.50".', 'z39.50': 'ANSI Z39.50', '914c-g': 'Texas Instruments 914C/G Terminal\nIANA assigned this well-formed service name as a replacement for "914c/g".', '914c/g': 'Texas Instruments 914C/G Terminal', 'anet': 'ATEXSSTR', 'ipx': 'IPX', 'vmpwscs': 'VM PWSCS', 'softpc': 'Insignia Solutions', 'CAIlic': "Computer Associates Int'l License Server", 'dbase': 'dBASE Unix', 'mpp': 'Netix Message Posting Protocol', 'uarps': 'Unisys ARPs', 'imap3': 'Interactive Mail Access Protocol v3', 'fln-spx': 'Berkeley rlogind with SPX auth', 'rsh-spx': 'Berkeley rshd with SPX auth', 'cdc': 'Certificate Distribution Center', 'masqdialer': 'masqdialer', 'direct': 'Direct', 'sur-meas': 'Survey Measurement', 'inbusiness': 'inbusiness', 'link': 'LINK', 'dsp3270': 'Display Systems Protocol', 'subntbcst-tftp': 'SUBNTBCST_TFTP\nIANA assigned this well-formed service name as a replacement for "subntbcst_tftp".', 'subntbcst_tftp': 'SUBNTBCST_TFTP', 'bhfhs': 'bhfhs', 'rap': 'RAP', 'set': 'Secure Electronic Transaction', 'esro-gen': 'Efficient Short Remote Operations', 'openport': 'Openport', 'nsiiops': 'IIOP Name Service over TLS/SSL', 'arcisdms': 'Arcisdms', 'hdap': 'HDAP', 'bgmp': 'BGMP', 'x-bone-ctl': 'X-Bone CTL', 'sst': 'SCSI on ST', 'td-service': 'Tobit David Service Layer', 'td-replica': 'Tobit David Replica', 'manet': 'MANET Protocols', 'gist': 'Q-mode encapsulation for GIST messages', 'http-mgmt': 'http-mgmt', 'personal-link': 'Personal Link', 'cableport-ax': 'Cable Port A/X', 'rescap': 'rescap', 'corerjd': 'corerjd', 'fxp': 'FXP Communication', 'k-block': 'K-BLOCK', 'novastorbakcup': 'Novastor Backup', 'entrusttime': 'EntrustTime', 'bhmds': 'bhmds', 'asip-webadmin': 'AppleShare IP WebAdmin', 'vslmp': 'VSLMP', 'magenta-logic': 'Magenta Logic', 'opalis-robot': 'Opalis Robot', 'dpsi': 'DPSI', 'decauth': 'decAuth', 'zannet': 'Zannet', 'pkix-timestamp': 'PKIX TimeStamp', 'ptp-event': 'PTP Event', 'ptp-general': 'PTP General', 'pip': 'PIP', 'rtsps': 'RTSPS', 'texar': 'Texar Security Port', 'pdap': 'Prospero Data Access Protocol', 'pawserv': 'Perf Analysis Workbench', 'zserv': 'Zebra server', 'fatserv': 'Fatmen Server', 'csi-sgwp': 'Cabletron Management Protocol', 'mftp': 'mftp', 'matip-type-a': 'MATIP Type A', 'matip-type-b': 'MATIP Type B', 'bhoetty': 'bhoetty', 'dtag-ste-sb': 'DTAG', 'bhoedap4': 'bhoedap4', 'ndsauth': 'NDSAUTH', 'bh611': 'bh611', 'datex-asn': 'DATEX-ASN', 'cloanto-net-1': 'Cloanto Net 1', 'bhevent': 'bhevent', 'shrinkwrap': 'Shrinkwrap', 'nsrmp': 'Network Security Risk Management Protocol', 'scoi2odialog': 'scoi2odialog', 'semantix': 'Semantix', 'srssend': 'SRS Send', 'rsvp-tunnel': 'RSVP Tunnel\nIANA assigned this well-formed service name as a replacement for "rsvp_tunnel".', 'rsvp_tunnel': 'RSVP Tunnel', 'aurora-cmgr': 'Aurora CMGR', 'dtk': 'DTK', 'odmr': 'ODMR', 'mortgageware': 'MortgageWare', 'qbikgdp': 'QbikGDP', 'rpc2portmap': 'rpc2portmap', 'codaauth2': 'codaauth2', 'clearcase': 'Clearcase', 'ulistproc': 'ListProcessor', 'legent-1': 'Legent Corporation', 'legent-2': 'Legent Corporation', 'hassle': 'Hassle', 'nip': 'Amiga Envoy Network Inquiry Proto', 'tnETOS': 'NEC Corporation', 'dsETOS': 'NEC Corporation', 'is99c': 'TIA/EIA/IS-99 modem client', 'is99s': 'TIA/EIA/IS-99 modem server', 'hp-collector': 'hp performance data collector', 'hp-managed-node': 'hp performance data managed node', 'hp-alarm-mgr': 'hp performance data alarm manager', 'arns': 'A Remote Network Server System', 'ibm-app': 'IBM Application', 'asa': 'ASA Message Router Object Def.', 'aurp': 'Appletalk Update-Based Routing Pro.', 'unidata-ldm': 'Unidata LDM', 'ldap': 'Lightweight Directory Access Protocol', 'uis': 'UIS', 'synotics-relay': 'SynOptics SNMP Relay Port', 'synotics-broker': 'SynOptics Port Broker Port', 'meta5': 'Meta5', 'embl-ndt': 'EMBL Nucleic Data Transfer', 'netcp': 'NetScout Control Protocol', 'netware-ip': 'Novell Netware over IP', 'mptn': 'Multi Protocol Trans. Net.', 'kryptolan': 'Kryptolan', 'iso-tsap-c2': 'ISO Transport Class 2 Non-Control over UDP', 'osb-sd': 'Oracle Secure Backup', 'ups': 'Uninterruptible Power Supply', 'genie': 'Genie Protocol', 'decap': 'decap', 'nced': 'nced', 'ncld': 'ncld', 'imsp': 'Interactive Mail Support Protocol', 'timbuktu': 'Timbuktu', 'prm-sm': 'Prospero Resource Manager Sys. Man.', 'prm-nm': 'Prospero Resource Manager Node Man.', 'decladebug': 'DECLadebug Remote Debug Protocol', 'rmt': 'Remote MT Protocol', 'synoptics-trap': 'Trap Convention Port', 'smsp': 'Storage Management Services Protocol', 'infoseek': 'InfoSeek', 'bnet': 'BNet', 'silverplatter': 'Silverplatter', 'onmux': 'Onmux', 'hyper-g': 'Hyper-G', 'ariel1': 'Ariel 1', 'smpte': 'SMPTE', 'ariel2': 'Ariel 2', 'ariel3': 'Ariel 3', 'opc-job-start': 'IBM Operations Planning and Control Start', 'opc-job-track': 'IBM Operations Planning and Control Track', 'icad-el': 'ICAD', 'smartsdp': 'smartsdp', 'svrloc': 'Server Location', 'ocs-cmu': 'OCS_CMU\nIANA assigned this well-formed service name as a replacement for "ocs_cmu".', 'ocs_cmu': 'OCS_CMU', 'ocs-amu': 'OCS_AMU\nIANA assigned this well-formed service name as a replacement for "ocs_amu".', 'ocs_amu': 'OCS_AMU', 'utmpsd': 'UTMPSD', 'utmpcd': 'UTMPCD', 'iasd': 'IASD', 'nnsp': 'NNSP', 'mobileip-agent': 'MobileIP-Agent', 'mobilip-mn': 'MobilIP-MN', 'dna-cml': 'DNA-CML', 'comscm': 'comscm', 'dsfgw': 'dsfgw', 'dasp': 'dasp', 'sgcp': 'sgcp', 'decvms-sysmgt': 'decvms-sysmgt', 'cvc-hostd': 'cvc_hostd\nIANA assigned this well-formed service name as a replacement for "cvc_hostd".', 'cvc_hostd': 'cvc_hostd', 'https': 'http protocol over TLS/SSL', 'snpp': 'Simple Network Paging Protocol', 'microsoft-ds': 'Microsoft-DS', 'ddm-rdb': 'DDM-Remote Relational Database Access', 'ddm-dfm': 'DDM-Distributed File Management', 'ddm-ssl': 'DDM-Remote DB Access Using Secure Sockets', 'as-servermap': 'AS Server Mapper', 'tserver': 'Computer Supported Telecomunication Applications', 'sfs-smp-net': 'Cray Network Semaphore server', 'sfs-config': 'Cray SFS config server', 'creativeserver': 'CreativeServer', 'contentserver': 'ContentServer', 'creativepartnr': 'CreativePartnr', 'macon-udp': 'macon-udp', 'scohelp': 'scohelp', 'appleqtc': 'apple quick time', 'ampr-rcmd': 'ampr-rcmd', 'skronk': 'skronk', 'datasurfsrv': 'DataRampSrv', 'datasurfsrvsec': 'DataRampSrvSec', 'alpes': 'alpes', 'kpasswd': 'kpasswd', 'igmpv3lite': 'IGMP over UDP for SSM', 'digital-vrc': 'digital-vrc', 'mylex-mapd': 'mylex-mapd', 'photuris': 'proturis', 'rcp': 'Radio Control Protocol', 'scx-proxy': 'scx-proxy', 'mondex': 'Mondex', 'ljk-login': 'ljk-login', 'hybrid-pop': 'hybrid-pop', 'tn-tl-w2': 'tn-tl-w2', 'tcpnethaspsrv': 'tcpnethaspsrv', 'tn-tl-fd1': 'tn-tl-fd1', 'ss7ns': 'ss7ns', 'spsc': 'spsc', 'iafserver': 'iafserver', 'iafdbase': 'iafdbase', 'ph': 'Ph service', 'bgs-nsi': 'bgs-nsi', 'ulpnet': 'ulpnet', 'integra-sme': 'Integra Software Management Environment', 'powerburst': 'Air Soft Power Burst', 'avian': 'avian', 'saft': 'saft Simple Asynchronous File Transfer', 'gss-http': 'gss-http', 'nest-protocol': 'nest-protocol', 'micom-pfs': 'micom-pfs', 'go-login': 'go-login', 'ticf-1': 'Transport Independent Convergence for FNA', 'ticf-2': 'Transport Independent Convergence for FNA', 'pov-ray': 'POV-Ray', 'intecourier': 'intecourier', 'pim-rp-disc': 'PIM-RP-DISC', 'retrospect': 'Retrospect backup and restore service', 'siam': 'siam', 'iso-ill': 'ISO ILL Protocol', 'isakmp': 'isakmp', 'stmf': 'STMF', 'asa-appl-proto': 'asa-appl-proto', 'intrinsa': 'Intrinsa', 'citadel': 'citadel', 'mailbox-lm': 'mailbox-lm', 'ohimsrv': 'ohimsrv', 'crs': 'crs', 'xvttp': 'xvttp', 'snare': 'snare', 'fcp': 'FirstClass Protocol', 'passgo': 'PassGo', 'comsat': '', 'biff': 'used by mail system to notify users of new mail received; currently receives messages only from processes on the same machine', 'who': "maintains data bases showing who's logged in to machines on a local net and the load average of the machine", 'syslog': '', 'printer': 'spooler', 'videotex': 'videotex', 'talk': "like tenex link, but across machine - unfortunately, doesn't use link protocol (this is actually just a rendezvous port from which a tcp connection is established)", 'ntalk': '', 'utime': 'unixtime', 'router': 'local routing process (on site); uses variant of Xerox NS routing information protocol - RIP', 'ripng': 'ripng', 'ulp': 'ULP', 'ibm-db2': 'IBM-DB2', 'ncp': 'NCP', 'timed': 'timeserver', 'tempo': 'newdate', 'stx': 'Stock IXChange', 'custix': 'Customer IXChange', 'irc-serv': 'IRC-SERV', 'courier': 'rpc', 'conference': 'chat', 'netnews': 'readnews', 'netwall': 'for emergency broadcasts', 'windream': 'windream Admin', 'iiop': 'iiop', 'opalis-rdv': 'opalis-rdv', 'nmsp': 'Networked Media Streaming Protocol', 'gdomap': 'gdomap', 'apertus-ldp': 'Apertus Technologies Load Determination', 'uucp': 'uucpd', 'uucp-rlogin': 'uucp-rlogin', 'commerce': 'commerce', 'klogin': '', 'kshell': 'krcmd', 'appleqtcsrvr': 'appleqtcsrvr', 'dhcpv6-client': 'DHCPv6 Client', 'dhcpv6-server': 'DHCPv6 Server', 'afpovertcp': 'AFP over TCP', 'idfp': 'IDFP', 'new-rwho': 'new-who', 'cybercash': 'cybercash', 'devshr-nts': 'DeviceShare', 'pirp': 'pirp', 'rtsp': 'Real Time Streaming Protocol (RTSP)', 'dsf': '', 'remotefs': 'rfs server', 'openvms-sysipc': 'openvms-sysipc', 'sdnskmp': 'SDNSKMP', 'teedtap': 'TEEDTAP', 'rmonitor': 'rmonitord', 'monitor': '', 'chshell': 'chcmd', 'nntps': 'nntp protocol over TLS/SSL (was snntp)', '9pfs': 'plan 9 file service', 'whoami': 'whoami', 'streettalk': 'streettalk', 'banyan-rpc': 'banyan-rpc', 'ms-shuttle': 'microsoft shuttle', 'ms-rome': 'microsoft rome', 'meter': 'demon', 'meter': 'udemon', 'sonar': 'sonar', 'banyan-vip': 'banyan-vip', 'ftp-agent': 'FTP Software Agent System', 'vemmi': 'VEMMI', 'ipcd': 'ipcd', 'vnas': 'vnas', 'ipdd': 'ipdd', 'decbsrv': 'decbsrv', 'sntp-heartbeat': 'SNTP HEARTBEAT', 'bdp': 'Bundle Discovery Protocol', 'scc-security': 'SCC Security', 'philips-vc': 'Philips Video-Conferencing', 'keyserver': 'Key Server', 'password-chg': 'Password Change', 'submission': 'Message Submission', 'cal': 'CAL', 'eyelink': 'EyeLink', 'tns-cml': 'TNS CML', 'http-alt': 'FileMaker, Inc. - HTTP Alternate (see Port 80)', 'eudora-set': 'Eudora Set', 'http-rpc-epmap': 'HTTP RPC Ep Map', 'tpip': 'TPIP', 'cab-protocol': 'CAB Protocol', 'smsd': 'SMSD', 'ptcnameservice': 'PTC Name Service', 'sco-websrvrmg3': 'SCO Web Server Manager 3', 'acp': 'Aeolon Core Protocol', 'ipcserver': 'Sun IPC server', 'syslog-conn': 'Reliable Syslog Service', 'xmlrpc-beep': 'XML-RPC over BEEP', 'idxp': 'IDXP', 'tunnel': 'TUNNEL', 'soap-beep': 'SOAP over BEEP', 'urm': 'Cray Unified Resource Manager', 'nqs': 'nqs', 'sift-uft': 'Sender-Initiated/Unsolicited File Transfer', 'npmp-trap': 'npmp-trap', 'npmp-local': 'npmp-local', 'npmp-gui': 'npmp-gui', 'hmmp-ind': 'HMMP Indication', 'hmmp-op': 'HMMP Operation', 'sshell': 'SSLshell', 'sco-inetmgr': 'Internet Configuration Manager', 'sco-sysmgr': 'SCO System Administration Server', 'sco-dtmgr': 'SCO Desktop Administration Server', 'dei-icda': 'DEI-ICDA', 'compaq-evm': 'Compaq EVM', 'sco-websrvrmgr': 'SCO WebServer Manager', 'escp-ip': 'ESCP', 'collaborator': 'Collaborator', 'asf-rmcp': 'ASF Remote Management and Control Protocol', 'cryptoadmin': 'Crypto Admin', 'dec-dlm': 'DEC DLM\nIANA assigned this well-formed service name as a replacement for "dec_dlm".', 'dec_dlm': 'DEC DLM', 'asia': 'ASIA', 'passgo-tivoli': 'PassGo Tivoli', 'qmqp': 'QMQP', '3com-amp3': '3Com AMP3', 'rda': 'RDA', 'ipp': 'IPP (Internet Printing Protocol)', 'bmpp': 'bmpp', 'servstat': 'Service Status update (Sterling Software)', 'ginad': 'ginad', 'rlzdbase': 'RLZ DBase', 'ldaps': 'ldap protocol over TLS/SSL (was sldap)', 'lanserver': 'lanserver', 'mcns-sec': 'mcns-sec', 'msdp': 'MSDP', 'entrust-sps': 'entrust-sps', 'repcmd': 'repcmd', 'esro-emsdp': 'ESRO-EMSDP V1.3', 'sanity': 'SANity', 'dwr': 'dwr', 'pssc': 'PSSC', 'ldp': 'LDP', 'dhcp-failover': 'DHCP Failover', 'rrp': 'Registry Registrar Protocol (RRP)', 'cadview-3d': 'Cadview-3d - streaming 3d models over the internet', 'obex': 'OBEX', 'ieee-mms': 'IEEE MMS', 'hello-port': 'HELLO_PORT', 'repscmd': 'RepCmd', 'aodv': 'AODV', 'tinc': 'TINC', 'spmp': 'SPMP', 'rmc': 'RMC', 'tenfold': 'TenFold', 'mac-srvr-admin': 'MacOS Server Admin', 'hap': 'HAP', 'pftp': 'PFTP', 'purenoise': 'PureNoise', 'asf-secure-rmcp': 'ASF Secure Remote Management and Control Protocol', 'sun-dr': 'Sun DR', 'mdqs': '', 'doom': 'doom Id Software', 'disclose': 'campaign contribution disclosures - SDR Technologies', 'mecomm': 'MeComm', 'meregister': 'MeRegister', 'vacdsm-sws': 'VACDSM-SWS', 'vacdsm-app': 'VACDSM-APP', 'vpps-qua': 'VPPS-QUA', 'cimplex': 'CIMPLEX', 'acap': 'ACAP', 'dctp': 'DCTP', 'vpps-via': 'VPPS Via', 'vpp': 'Virtual Presence Protocol', 'ggf-ncp': 'GNU Generation Foundation NCP', 'mrm': 'MRM', 'entrust-aaas': 'entrust-aaas', 'entrust-aams': 'entrust-aams', 'xfr': 'XFR', 'corba-iiop': 'CORBA IIOP', 'corba-iiop-ssl': 'CORBA IIOP SSL', 'mdc-portmapper': 'MDC Port Mapper', 'hcp-wismar': 'Hardware Control Protocol Wismar', 'asipregistry': 'asipregistry', 'realm-rusd': 'ApplianceWare managment protocol', 'nmap': 'NMAP', 'vatp': 'Velazquez Application Transfer Protocol', 'msexch-routing': 'MS Exchange Routing', 'hyperwave-isp': 'Hyperwave-ISP', 'connendp': 'almanid Connection Endpoint', 'ha-cluster': 'ha-cluster', 'ieee-mms-ssl': 'IEEE-MMS-SSL', 'rushd': 'RUSHD', 'uuidgen': 'UUIDGEN', 'olsr': 'OLSR', 'accessnetwork': 'Access Network', 'epp': 'Extensible Provisioning Protocol', 'lmp': 'Link Management Protocol (LMP)', 'iris-beep': 'IRIS over BEEP', 'elcsd': 'errlog copy/server daemon', 'agentx': 'AgentX', 'silc': 'SILC', 'borland-dsj': 'Borland DSJ', 'entrust-kmsh': 'Entrust Key Management Service Handler', 'entrust-ash': 'Entrust Administration Service Handler', 'cisco-tdp': 'Cisco TDP', 'tbrpf': 'TBRPF', 'iris-xpc': 'IRIS over XPC', 'iris-xpcs': 'IRIS over XPCS', 'iris-lwz': 'IRIS-LWZ', 'pana': 'PANA Messages', 'netviewdm1': 'IBM NetView DM/6000 Server/Client', 'netviewdm2': 'IBM NetView DM/6000 send/tcp', 'netviewdm3': 'IBM NetView DM/6000 receive/tcp', 'netgw': 'netGW', 'netrcs': 'Network based Rev. Cont. Sys.', 'flexlm': 'Flexible License Manager', 'fujitsu-dev': 'Fujitsu Device Control', 'ris-cm': 'Russell Info Sci Calendar Manager', 'kerberos-adm': 'kerberos administration', 'loadav': '', 'kerberos-iv': 'kerberos version iv', 'pump': '', 'qrh': '', 'rrh': '', 'tell': 'send', 'nlogin': '', 'con': '', 'ns': '', 'rxe': '', 'quotad': '', 'cycleserv': '', 'omserv': '', 'webster': '', 'phonebook': 'phone', 'vid': '', 'cadlock': '', 'rtip': '', 'cycleserv2': '', 'notify': '', 'acmaint-dbd': '\nIANA assigned this well-formed service name as a replacement for "acmaint_dbd".', 'acmaint_dbd': '', 'acmaint-transd': '\nIANA assigned this well-formed service name as a replacement for "acmaint_transd".', 'acmaint_transd': '', 'wpages': '', 'multiling-http': 'Multiling HTTP', 'wpgs': '', 'mdbs-daemon': '\nIANA assigned this well-formed service name as a replacement for "mdbs_daemon".', 'mdbs_daemon': '', 'device': '', 'fcp-udp': 'FCP Datagram', 'itm-mcell-s': 'itm-mcell-s', 'pkix-3-ca-ra': 'PKIX-3 CA/RA', 'netconf-ssh': 'NETCONF over SSH', 'netconf-beep': 'NETCONF over BEEP', 'netconfsoaphttp': 'NETCONF for SOAP over HTTPS', 'netconfsoapbeep': 'NETCONF for SOAP over BEEP', 'dhcp-failover2': 'dhcp-failover 2', 'gdoi': 'GDOI', 'iscsi': 'iSCSI', 'owamp-control': 'OWAMP-Control', 'twamp-control': 'Two-way Active Measurement Protocol (TWAMP) Control', 'rsync': 'rsync', 'iclcnet-locate': 'ICL coNETion locate server', 'iclcnet-svinfo': 'ICL coNETion server info\nIANA assigned this well-formed service name as a replacement for "iclcnet_svinfo".', 'iclcnet_svinfo': 'ICL coNETion server info', 'accessbuilder': 'AccessBuilder', 'omginitialrefs': 'OMG Initial Refs', 'smpnameres': 'SMPNAMERES', 'ideafarm-door': 'self documenting Door: send 0x00 for info', 'ideafarm-panic': 'self documenting Panic Door: send 0x00 for info', 'kink': 'Kerberized Internet Negotiation of Keys (KINK)', 'xact-backup': 'xact-backup', 'apex-mesh': 'APEX relay-relay service', 'apex-edge': 'APEX endpoint-relay service', 'ftps-data': 'ftp protocol, data, over TLS/SSL', 'ftps': 'ftp protocol, control, over TLS/SSL', 'nas': 'Netnews Administration System', 'telnets': 'telnet protocol over TLS/SSL', 'imaps': 'imap4 protocol over TLS/SSL', 'pop3s': 'pop3 protocol over TLS/SSL (was spop3)', 'vsinet': 'vsinet', 'maitrd': '', 'puparp': '', 'applix': 'Applix ac', 'puprouter': '', 'cadlock2': '', 'surf': 'surf', 'exp1': 'RFC3692-style Experiment 1', 'exp2': 'RFC3692-style Experiment 2', 'blackjack': 'network blackjack', 'cap': 'Calendar Access Protocol', '6a44': 'IPv6 Behind NAT44 CPEs', 'solid-mux': 'Solid Mux Server', 'iad1': 'BBN IAD', 'iad2': 'BBN IAD', 'iad3': 'BBN IAD', 'netinfo-local': 'local netinfo port', 'activesync': 'ActiveSync Notifications', 'mxxrlogin': 'MX-XR RPC', 'nsstp': 'Nebula Secure Segment Transfer Protocol', 'ams': 'AMS', 'mtqp': 'Message Tracking Query Protocol', 'sbl': 'Streamlined Blackhole', 'netarx': 'Netarx Netcare', 'danf-ak2': 'AK2 Product', 'afrog': 'Subnet Roaming', 'boinc-client': 'BOINC Client Control', 'dcutility': 'Dev Consortium Utility', 'fpitp': 'Fingerprint Image Transfer Protocol', 'wfremotertm': 'WebFilter Remote Monitor', 'neod1': "Sun's NEO Object Request Broker", 'neod2': "Sun's NEO Object Request Broker", 'td-postman': 'Tobit David Postman VPMN', 'cma': 'CORBA Management Agent', 'optima-vnet': 'Optima VNET', 'ddt': 'Dynamic DNS Tools', 'remote-as': 'Remote Assistant (RA)', 'brvread': 'BRVREAD', 'ansyslmd': 'ANSYS - License Manager', 'vfo': 'VFO', 'startron': 'STARTRON', 'nim': 'nim', 'nimreg': 'nimreg', 'polestar': 'POLESTAR', 'kiosk': 'KIOSK', 'veracity': 'Veracity', 'kyoceranetdev': 'KyoceraNetDev', 'jstel': 'JSTEL', 'syscomlan': 'SYSCOMLAN', 'fpo-fns': 'FPO-FNS', 'instl-boots': 'Installation Bootstrap Proto. Serv.\nIANA assigned this well-formed service name as a replacement for "instl_boots".', 'instl_boots': 'Installation Bootstrap Proto. Serv.', 'instl-bootc': 'Installation Bootstrap Proto. Cli.\nIANA assigned this well-formed service name as a replacement for "instl_bootc".', 'instl_bootc': 'Installation Bootstrap Proto. Cli.', 'cognex-insight': 'COGNEX-INSIGHT', 'gmrupdateserv': 'GMRUpdateSERV', 'bsquare-voip': 'BSQUARE-VOIP', 'cardax': 'CARDAX', 'bridgecontrol': 'Bridge Control', 'warmspotMgmt': 'Warmspot Management Protocol', 'rdrmshc': 'RDRMSHC', 'dab-sti-c': 'DAB STI-C', 'imgames': 'IMGames', 'avocent-proxy': 'Avocent Proxy Protocol', 'asprovatalk': 'ASPROVATalk', 'socks': 'Socks', 'pvuniwien': 'PVUNIWIEN', 'amt-esd-prot': 'AMT-ESD-PROT', 'ansoft-lm-1': 'Anasoft License Manager', 'ansoft-lm-2': 'Anasoft License Manager', 'webobjects': 'Web Objects', 'cplscrambler-lg': 'CPL Scrambler Logging', 'cplscrambler-in': 'CPL Scrambler Internal', 'cplscrambler-al': 'CPL Scrambler Alarm Log', 'ff-annunc': 'FF Annunciation', 'ff-fms': 'FF Fieldbus Message Specification', 'ff-sm': 'FF System Management', 'obrpd': 'Open Business Reporting Protocol', 'proofd': 'PROOFD', 'rootd': 'ROOTD', 'nicelink': 'NICELink', 'cnrprotocol': 'Common Name Resolution Protocol', 'sunclustermgr': 'Sun Cluster Manager', 'rmiactivation': 'RMI Activation', 'rmiregistry': 'RMI Registry', 'mctp': 'MCTP', 'pt2-discover': 'PT2-DISCOVER', 'adobeserver-1': 'ADOBE SERVER 1', 'adobeserver-2': 'ADOBE SERVER 2', 'xrl': 'XRL', 'ftranhc': 'FTRANHC', 'isoipsigport-1': 'ISOIPSIGPORT-1', 'isoipsigport-2': 'ISOIPSIGPORT-2', 'ratio-adp': 'ratio-adp', 'nfsd-keepalive': 'Client status info', 'lmsocialserver': 'LM Social Server', 'icp': 'Intelligent Communication Protocol', 'ltp-deepspace': 'Licklider Transmission Protocol', 'mini-sql': 'Mini SQL', 'ardus-trns': 'ARDUS Transfer', 'ardus-cntl': 'ARDUS Control', 'ardus-mtrns': 'ARDUS Multicast Transfer', 'sacred': 'SACRED', 'bnetgame': 'Battle.net Chat/Game Protocol', 'bnetfile': 'Battle.net File Transfer Protocol', 'rmpp': 'Datalode RMPP', 'availant-mgr': 'availant-mgr', 'murray': 'Murray', 'hpvmmcontrol': 'HP VMM Control', 'hpvmmagent': 'HP VMM Agent', 'hpvmmdata': 'HP VMM Agent', 'kwdb-commn': 'KWDB Remote Communication', 'saphostctrl': 'SAPHostControl over SOAP/HTTP', 'saphostctrls': 'SAPHostControl over SOAP/HTTPS', 'casp': 'CAC App Service Protocol', 'caspssl': 'CAC App Service Protocol Encripted', 'kvm-via-ip': 'KVM-via-IP Management Service', 'dfn': 'Data Flow Network', 'aplx': 'MicroAPL APLX', 'omnivision': 'OmniVision Communication Service', 'hhb-gateway': 'HHB Gateway Control', 'trim': 'TRIM Workgroup Service', 'encrypted-admin': 'encrypted admin requests\nIANA assigned this well-formed service name as a replacement for "encrypted_admin".', 'encrypted_admin': 'encrypted admin requests', 'evm': 'Enterprise Virtual Manager', 'autonoc': 'AutoNOC Network Operations Protocol', 'mxomss': 'User Message Service', 'edtools': 'User Discovery Service', 'imyx': 'Infomatryx Exchange', 'fuscript': 'Fusion Script', 'x9-icue': 'X9 iCue Show Control', 'audit-transfer': 'audit transfer', 'capioverlan': 'CAPIoverLAN', 'elfiq-repl': 'Elfiq Replication Service', 'bvtsonar': 'BVT Sonar Service', 'blaze': 'Blaze File Server', 'unizensus': 'Unizensus Login Server', 'winpoplanmess': 'Winpopup LAN Messenger', 'c1222-acse': 'ANSI C12.22 Port', 'resacommunity': 'Community Service', 'nfa': 'Network File Access', 'iascontrol-oms': 'iasControl OMS', 'iascontrol': 'Oracle iASControl', 'dbcontrol-oms': 'dbControl OMS', 'oracle-oms': 'Oracle OMS', 'olsv': 'DB Lite Mult-User Server', 'health-polling': 'Health Polling', 'health-trap': 'Health Trap', 'sddp': 'SmartDialer Data Protocol', 'qsm-proxy': 'QSM Proxy Service', 'qsm-gui': 'QSM GUI Service', 'qsm-remote': 'QSM RemoteExec', 'cisco-ipsla': 'Cisco IP SLAs Control Protocol', 'vchat': 'VChat Conference Service', 'tripwire': 'TRIPWIRE', 'atc-lm': 'AT+C License Manager', 'atc-appserver': 'AT+C FmiApplicationServer', 'dnap': 'DNA Protocol', 'd-cinema-rrp': 'D-Cinema Request-Response', 'fnet-remote-ui': 'FlashNet Remote Admin', 'dossier': 'Dossier Server', 'indigo-server': 'Indigo Home Server', 'dkmessenger': 'DKMessenger Protocol', 'sgi-storman': 'SGI Storage Manager', 'b2n': 'Backup To Neighbor', 'mc-client': 'Millicent Client Proxy', '3comnetman': '3Com Net Management', 'accelenet-data': 'AcceleNet Data', 'llsurfup-http': 'LL Surfup HTTP', 'llsurfup-https': 'LL Surfup HTTPS', 'catchpole': 'Catchpole port', 'mysql-cluster': 'MySQL Cluster Manager', 'alias': 'Alias Service', 'hp-webadmin': 'HP Web Admin', 'unet': 'Unet Connection', 'commlinx-avl': 'CommLinx GPS / AVL System', 'gpfs': 'General Parallel File System', 'caids-sensor': 'caids sensors channel', 'fiveacross': 'Five Across Server', 'openvpn': 'OpenVPN', 'rsf-1': 'RSF-1 clustering', 'netmagic': 'Network Magic', 'carrius-rshell': 'Carrius Remote Access', 'cajo-discovery': 'cajo reference discovery', 'dmidi': 'DMIDI', 'scol': 'SCOL', 'nucleus-sand': 'Nucleus Sand Database Server', 'caiccipc': 'caiccipc', 'ssslic-mgr': 'License Validation', 'ssslog-mgr': 'Log Request Listener', 'accord-mgc': 'Accord-MGC', 'anthony-data': 'Anthony Data', 'metasage': 'MetaSage', 'seagull-ais': 'SEAGULL AIS', 'ipcd3': 'IPCD3', 'eoss': 'EOSS', 'groove-dpp': 'Groove DPP', 'lupa': 'lupa', 'mpc-lifenet': 'MPC LIFENET', 'kazaa': 'KAZAA', 'scanstat-1': 'scanSTAT 1.0', 'etebac5': 'ETEBAC 5', 'hpss-ndapi': 'HPSS NonDCE Gateway', 'aeroflight-ads': 'AeroFlight-ADs', 'aeroflight-ret': 'AeroFlight-Ret', 'qt-serveradmin': 'QT SERVER ADMIN', 'sweetware-apps': 'SweetWARE Apps', 'nerv': 'SNI R&D network', 'tgp': 'TrulyGlobal Protocol', 'vpnz': 'VPNz', 'slinkysearch': 'SLINKYSEARCH', 'stgxfws': 'STGXFWS', 'dns2go': 'DNS2Go', 'florence': 'FLORENCE', 'zented': 'ZENworks Tiered Electronic Distribution', 'periscope': 'Periscope', 'menandmice-lpm': 'menandmice-lpm', 'univ-appserver': 'Universal App Server', 'search-agent': 'Infoseek Search Agent', 'mosaicsyssvc1': 'mosaicsyssvc1', 'bvcontrol': 'bvcontrol', 'tsdos390': 'tsdos390', 'hacl-qs': 'hacl-qs', 'nmsd': 'NMSD', 'instantia': 'Instantia', 'nessus': 'nessus', 'nmasoverip': 'NMAS over IP', 'serialgateway': 'SerialGateway', 'isbconference1': 'isbconference1', 'isbconference2': 'isbconference2', 'payrouter': 'payrouter', 'visionpyramid': 'VisionPyramid', 'hermes': 'hermes', 'mesavistaco': 'Mesa Vista Co', 'swldy-sias': 'swldy-sias', 'servergraph': 'servergraph', 'bspne-pcc': 'bspne-pcc', 'q55-pcc': 'q55-pcc', 'de-noc': 'de-noc', 'de-cache-query': 'de-cache-query', 'de-server': 'de-server', 'shockwave2': 'Shockwave 2', 'opennl': 'Open Network Library', 'opennl-voice': 'Open Network Library Voice', 'ibm-ssd': 'ibm-ssd', 'mpshrsv': 'mpshrsv', 'qnts-orb': 'QNTS-ORB', 'dka': 'dka', 'prat': 'PRAT', 'dssiapi': 'DSSIAPI', 'dellpwrappks': 'DELLPWRAPPKS', 'epc': 'eTrust Policy Compliance', 'propel-msgsys': 'PROPEL-MSGSYS', 'watilapp': 'WATiLaPP', 'opsmgr': 'Microsoft Operations Manager', 'excw': 'eXcW', 'cspmlockmgr': 'CSPMLockMgr', 'emc-gateway': 'EMC-Gateway', 't1distproc': 't1distproc', 'ivcollector': 'ivcollector', 'ivmanager': 'ivmanager', 'miva-mqs': 'mqs', 'dellwebadmin-1': 'Dell Web Admin 1', 'dellwebadmin-2': 'Dell Web Admin 2', 'pictrography': 'Pictrography', 'healthd': 'healthd', 'emperion': 'Emperion', 'productinfo': 'Product Information', 'iee-qfx': 'IEE-QFX', 'neoiface': 'neoiface', 'netuitive': 'netuitive', 'routematch': 'RouteMatch Com', 'navbuddy': 'NavBuddy', 'jwalkserver': 'JWalkServer', 'winjaserver': 'WinJaServer', 'seagulllms': 'SEAGULLLMS', 'dsdn': 'dsdn', 'pkt-krb-ipsec': 'PKT-KRB-IPSec', 'cmmdriver': 'CMMdriver', 'ehtp': 'End-by-Hop Transmission Protocol', 'dproxy': 'dproxy', 'sdproxy': 'sdproxy', 'lpcp': 'lpcp', 'hp-sci': 'hp-sci', 'h323hostcallsc': 'H323 Host Call Secure', 'ci3-software-1': 'CI3-Software-1', 'ci3-software-2': 'CI3-Software-2', 'sftsrv': 'sftsrv', 'boomerang': 'Boomerang', 'pe-mike': 'pe-mike', 're-conn-proto': 'RE-Conn-Proto', 'pacmand': 'Pacmand', 'odsi': 'Optical Domain Service Interconnect (ODSI)', 'jtag-server': 'JTAG server', 'husky': 'Husky', 'rxmon': 'RxMon', 'sti-envision': 'STI Envision', 'bmc-patroldb': 'BMC_PATROLDB\nIANA assigned this well-formed service name as a replacement for "bmc_patroldb".', 'bmc_patroldb': 'BMC_PATROLDB', 'pdps': 'Photoscript Distributed Printing System', 'els': 'E.L.S., Event Listener Service', 'exbit-escp': 'Exbit-ESCP', 'vrts-ipcserver': 'vrts-ipcserver', 'krb5gatekeeper': 'krb5gatekeeper', 'amx-icsp': 'AMX-ICSP', 'amx-axbnet': 'AMX-AXBNET', 'pip': 'PIP', 'novation': 'Novation', 'brcd': 'brcd', 'delta-mcp': 'delta-mcp', 'dx-instrument': 'DX-Instrument', 'wimsic': 'WIMSIC', 'ultrex': 'Ultrex', 'ewall': 'EWALL', 'netdb-export': 'netdb-export', 'streetperfect': 'StreetPerfect', 'intersan': 'intersan', 'pcia-rxp-b': 'PCIA RXP-B', 'passwrd-policy': 'Password Policy', 'writesrv': 'writesrv', 'digital-notary': 'Digital Notary Protocol', 'ischat': 'Instant Service Chat', 'menandmice-dns': 'menandmice DNS', 'wmc-log-svc': 'WMC-log-svr', 'kjtsiteserver': 'kjtsiteserver', 'naap': 'NAAP', 'qubes': 'QuBES', 'esbroker': 'ESBroker', 're101': 're101', 'icap': 'ICAP', 'vpjp': 'VPJP', 'alta-ana-lm': 'Alta Analytics License Manager', 'bbn-mmc': 'multi media conferencing', 'bbn-mmx': 'multi media conferencing', 'sbook': 'Registration Network Protocol', 'editbench': 'Registration Network Protocol', 'equationbuilder': 'Digital Tool Works (MIT)', 'lotusnote': 'Lotus Note', 'relief': 'Relief Consulting', 'XSIP-network': 'Five Across XSIP Network', 'intuitive-edge': 'Intuitive Edge', 'cuillamartin': 'CuillaMartin Company', 'pegboard': 'Electronic PegBoard', 'connlcli': 'CONNLCLI', 'ftsrv': 'FTSRV', 'mimer': 'MIMER', 'linx': 'LinX', 'timeflies': 'TimeFlies', 'ndm-requester': 'Network DataMover Requester', 'ndm-server': 'Network DataMover Server', 'adapt-sna': 'Network Software Associates', 'netware-csp': 'Novell NetWare Comm Service Platform', 'dcs': 'DCS', 'screencast': 'ScreenCast', 'gv-us': 'GlobalView to Unix Shell', 'us-gv': 'Unix Shell to GlobalView', 'fc-cli': 'Fujitsu Config Protocol', 'fc-ser': 'Fujitsu Config Protocol', 'chromagrafx': 'Chromagrafx', 'molly': 'EPI Software Systems', 'bytex': 'Bytex', 'ibm-pps': 'IBM Person to Person Software', 'cichlid': 'Cichlid License Manager', 'elan': 'Elan License Manager', 'dbreporter': 'Integrity Solutions', 'telesis-licman': 'Telesis Network License Manager', 'apple-licman': 'Apple Network License Manager', 'udt-os': 'udt_os\nIANA assigned this well-formed service name as a replacement for "udt_os".', 'udt_os': 'udt_os', 'gwha': 'GW Hannaway Network License Manager', 'os-licman': 'Objective Solutions License Manager', 'atex-elmd': 'Atex Publishing License Manager\nIANA assigned this well-formed service name as a replacement for "atex_elmd".', 'atex_elmd': 'Atex Publishing License Manager', 'checksum': 'CheckSum License Manager', 'cadsi-lm': 'Computer Aided Design Software Inc LM', 'objective-dbc': 'Objective Solutions DataBase Cache', 'iclpv-dm': 'Document Manager', 'iclpv-sc': 'Storage Controller', 'iclpv-sas': 'Storage Access Server', 'iclpv-pm': 'Print Manager', 'iclpv-nls': 'Network Log Server', 'iclpv-nlc': 'Network Log Client', 'iclpv-wsm': 'PC Workstation Manager software', 'dvl-activemail': 'DVL Active Mail', 'audio-activmail': 'Audio Active Mail', 'video-activmail': 'Video Active Mail', 'cadkey-licman': 'Cadkey License Manager', 'cadkey-tablet': 'Cadkey Tablet Daemon', 'goldleaf-licman': 'Goldleaf License Manager', 'prm-sm-np': 'Prospero Resource Manager', 'prm-nm-np': 'Prospero Resource Manager', 'igi-lm': 'Infinite Graphics License Manager', 'ibm-res': 'IBM Remote Execution Starter', 'netlabs-lm': 'NetLabs License Manager', 'dbsa-lm': 'DBSA License Manager', 'sophia-lm': 'Sophia License Manager', 'here-lm': 'Here License Manager', 'hiq': 'HiQ License Manager', 'af': 'AudioFile', 'innosys': 'InnoSys', 'innosys-acl': 'Innosys-ACL', 'ibm-mqseries': 'IBM MQSeries', 'dbstar': 'DBStar', 'novell-lu6-2': 'Novell LU6.2\nIANA assigned this well-formed service name as a replacement for "novell-lu6.2".', 'novell-lu6.2': 'Novell LU6.2', 'timbuktu-srv1': 'Timbuktu Service 1 Port', 'timbuktu-srv2': 'Timbuktu Service 2 Port', 'timbuktu-srv3': 'Timbuktu Service 3 Port', 'timbuktu-srv4': 'Timbuktu Service 4 Port', 'gandalf-lm': 'Gandalf License Manager', 'autodesk-lm': 'Autodesk License Manager', 'essbase': 'Essbase Arbor Software', 'hybrid': 'Hybrid Encryption Protocol', 'zion-lm': 'Zion Software License Manager', 'sais': 'Satellite-data Acquisition System 1', 'mloadd': 'mloadd monitoring tool', 'informatik-lm': 'Informatik License Manager', 'nms': 'Hypercom NMS', 'tpdu': 'Hypercom TPDU', 'rgtp': 'Reverse Gossip Transport', 'blueberry-lm': 'Blueberry Software License Manager', 'ms-sql-s': 'Microsoft-SQL-Server', 'ms-sql-m': 'Microsoft-SQL-Monitor', 'ibm-cics': 'IBM CICS', 'saism': 'Satellite-data Acquisition System 2', 'tabula': 'Tabula', 'eicon-server': 'Eicon Security Agent/Server', 'eicon-x25': 'Eicon X25/SNA Gateway', 'eicon-slp': 'Eicon Service Location Protocol', 'cadis-1': 'Cadis License Management', 'cadis-2': 'Cadis License Management', 'ies-lm': 'Integrated Engineering Software', 'marcam-lm': 'Marcam License Management', 'proxima-lm': 'Proxima License Manager', 'ora-lm': 'Optical Research Associates License Manager', 'apri-lm': 'Applied Parallel Research LM', 'oc-lm': 'OpenConnect License Manager', 'peport': 'PEport', 'dwf': 'Tandem Distributed Workbench Facility', 'infoman': 'IBM Information Management', 'gtegsc-lm': 'GTE Government Systems License Man', 'genie-lm': 'Genie License Manager', 'interhdl-elmd': 'interHDL License Manager\nIANA assigned this well-formed service name as a replacement for "interhdl_elmd".', 'interhdl_elmd': 'interHDL License Manager', 'esl-lm': 'ESL License Manager', 'dca': 'DCA', 'valisys-lm': 'Valisys License Manager', 'nrcabq-lm': 'Nichols Research Corp.', 'proshare1': 'Proshare Notebook Application', 'proshare2': 'Proshare Notebook Application', 'ibm-wrless-lan': 'IBM Wireless LAN\nIANA assigned this well-formed service name as a replacement for "ibm_wrless_lan".', 'ibm_wrless_lan': 'IBM Wireless LAN', 'world-lm': 'World License Manager', 'nucleus': 'Nucleus', 'msl-lmd': 'MSL License Manager\nIANA assigned this well-formed service name as a replacement for "msl_lmd".', 'msl_lmd': 'MSL License Manager', 'pipes': 'Pipes Platform', 'oceansoft-lm': 'Ocean Software License Manager', 'csdmbase': 'CSDMBASE', 'csdm': 'CSDM', 'aal-lm': 'Active Analysis Limited License Manager', 'uaiact': 'Universal Analytics', 'csdmbase': 'csdmbase', 'csdm': 'csdm', 'openmath': 'OpenMath', 'telefinder': 'Telefinder', 'taligent-lm': 'Taligent License Manager', 'clvm-cfg': 'clvm-cfg', 'ms-sna-server': 'ms-sna-server', 'ms-sna-base': 'ms-sna-base', 'dberegister': 'dberegister', 'pacerforum': 'PacerForum', 'airs': 'AIRS', 'miteksys-lm': 'Miteksys License Manager', 'afs': 'AFS License Manager', 'confluent': 'Confluent License Manager', 'lansource': 'LANSource', 'nms-topo-serv': 'nms_topo_serv\nIANA assigned this well-formed service name as a replacement for "nms_topo_serv".', 'nms_topo_serv': 'nms_topo_serv', 'localinfosrvr': 'LocalInfoSrvr', 'docstor': 'DocStor', 'dmdocbroker': 'dmdocbroker', 'insitu-conf': 'insitu-conf', 'stone-design-1': 'stone-design-1', 'netmap-lm': 'netmap_lm\nIANA assigned this well-formed service name as a replacement for "netmap_lm".', 'netmap_lm': 'netmap_lm', 'ica': 'ica', 'cvc': 'cvc', 'liberty-lm': 'liberty-lm', 'rfx-lm': 'rfx-lm', 'sybase-sqlany': 'Sybase SQL Any', 'fhc': 'Federico Heinz Consultora', 'vlsi-lm': 'VLSI License Manager', 'saiscm': 'Satellite-data Acquisition System 3', 'shivadiscovery': 'Shiva', 'imtc-mcs': 'Databeam', 'evb-elm': 'EVB Software Engineering License Manager', 'funkproxy': 'Funk Software, Inc.', 'utcd': 'Universal Time daemon (utcd)', 'symplex': 'symplex', 'diagmond': 'diagmond', 'robcad-lm': 'Robcad, Ltd. License Manager', 'mvx-lm': 'Midland Valley Exploration Ltd. Lic. Man.', '3l-l1': '3l-l1', 'wins': "Microsoft's Windows Internet Name Service", 'fujitsu-dtc': 'Fujitsu Systems Business of America, Inc', 'fujitsu-dtcns': 'Fujitsu Systems Business of America, Inc', 'ifor-protocol': 'ifor-protocol', 'vpad': 'Virtual Places Audio data', 'vpac': 'Virtual Places Audio control', 'vpvd': 'Virtual Places Video data', 'vpvc': 'Virtual Places Video control', 'atm-zip-office': 'atm zip office', 'ncube-lm': 'nCube License Manager', 'ricardo-lm': 'Ricardo North America License Manager', 'cichild-lm': 'cichild', 'ingreslock': 'ingres', 'orasrv': 'oracle', 'prospero-np': 'Prospero Directory Service non-priv', 'pdap-np': 'Prospero Data Access Prot non-priv', 'tlisrv': 'oracle', 'coauthor': 'oracle', 'rap-service': 'rap-service', 'rap-listen': 'rap-listen', 'miroconnect': 'miroconnect', 'virtual-places': 'Virtual Places Software', 'micromuse-lm': 'micromuse-lm', 'ampr-info': 'ampr-info', 'ampr-inter': 'ampr-inter', 'sdsc-lm': 'isi-lm', '3ds-lm': '3ds-lm', 'intellistor-lm': 'Intellistor License Manager', 'rds': 'rds', 'rds2': 'rds2', 'gridgen-elmd': 'gridgen-elmd', 'simba-cs': 'simba-cs', 'aspeclmd': 'aspeclmd', 'vistium-share': 'vistium-share', 'abbaccuray': 'abbaccuray', 'laplink': 'laplink', 'axon-lm': 'Axon License Manager', 'shivasound': 'Shiva Sound', '3m-image-lm': 'Image Storage license manager 3M Company', 'hecmtl-db': 'HECMTL-DB', 'pciarray': 'pciarray', 'sna-cs': 'sna-cs', 'caci-lm': 'CACI Products Company License Manager', 'livelan': 'livelan', 'veritas-pbx': 'VERITAS Private Branch Exchange\nIANA assigned this well-formed service name as a replacement for "veritas_pbx".', 'veritas_pbx': 'VERITAS Private Branch Exchange', 'arbortext-lm': 'ArborText License Manager', 'xingmpeg': 'xingmpeg', 'web2host': 'web2host', 'asci-val': 'ASCI-RemoteSHADOW', 'facilityview': 'facilityview', 'pconnectmgr': 'pconnectmgr', 'cadabra-lm': 'Cadabra License Manager', 'pay-per-view': 'Pay-Per-View', 'winddlb': 'WinDD', 'corelvideo': 'CORELVIDEO', 'jlicelmd': 'jlicelmd', 'tsspmap': 'tsspmap', 'ets': 'ets', 'orbixd': 'orbixd', 'rdb-dbs-disp': 'Oracle Remote Data Base', 'chip-lm': 'Chipcom License Manager', 'itscomm-ns': 'itscomm-ns', 'mvel-lm': 'mvel-lm', 'oraclenames': 'oraclenames', 'moldflow-lm': 'Moldflow License Manager', 'hypercube-lm': 'hypercube-lm', 'jacobus-lm': 'Jacobus License Manager', 'ioc-sea-lm': 'ioc-sea-lm', 'tn-tl-r2': 'tn-tl-r2', 'mil-2045-47001': 'MIL-2045-47001', 'msims': 'MSIMS', 'simbaexpress': 'simbaexpress', 'tn-tl-fd2': 'tn-tl-fd2', 'intv': 'intv', 'ibm-abtact': 'ibm-abtact', 'pra-elmd': 'pra_elmd\nIANA assigned this well-formed service name as a replacement for "pra_elmd".', 'pra_elmd': 'pra_elmd', 'triquest-lm': 'triquest-lm', 'vqp': 'VQP', 'gemini-lm': 'gemini-lm', 'ncpm-pm': 'ncpm-pm', 'commonspace': 'commonspace', 'mainsoft-lm': 'mainsoft-lm', 'sixtrak': 'sixtrak', 'radio': 'radio', 'radio-bc': 'radio-bc', 'orbplus-iiop': 'orbplus-iiop', 'picknfs': 'picknfs', 'simbaservices': 'simbaservices', 'issd': 'issd', 'aas': 'aas', 'inspect': 'inspect', 'picodbc': 'pickodbc', 'icabrowser': 'icabrowser', 'slp': 'Salutation Manager (Salutation Protocol)', 'slm-api': 'Salutation Manager (SLM-API)', 'stt': 'stt', 'smart-lm': 'Smart Corp. License Manager', 'isysg-lm': 'isysg-lm', 'taurus-wh': 'taurus-wh', 'ill': 'Inter Library Loan', 'netbill-trans': 'NetBill Transaction Server', 'netbill-keyrep': 'NetBill Key Repository', 'netbill-cred': 'NetBill Credential Server', 'netbill-auth': 'NetBill Authorization Server', 'netbill-prod': 'NetBill Product Server', 'nimrod-agent': 'Nimrod Inter-Agent Communication', 'skytelnet': 'skytelnet', 'xs-openstorage': 'xs-openstorage', 'faxportwinport': 'faxportwinport', 'softdataphone': 'softdataphone', 'ontime': 'ontime', 'jaleosnd': 'jaleosnd', 'udp-sr-port': 'udp-sr-port', 'svs-omagent': 'svs-omagent', 'shockwave': 'Shockwave', 't128-gateway': 'T.128 Gateway', 'lontalk-norm': 'LonTalk normal', 'lontalk-urgnt': 'LonTalk urgent', 'oraclenet8cman': 'Oracle Net8 Cman', 'visitview': 'Visit view', 'pammratc': 'PAMMRATC', 'pammrpc': 'PAMMRPC', 'loaprobe': 'Log On America Probe', 'edb-server1': 'EDB Server 1', 'isdc': 'ISP shared public data control', 'islc': 'ISP shared local data control', 'ismc': 'ISP shared management control', 'cert-initiator': 'cert-initiator', 'cert-responder': 'cert-responder', 'invision': 'InVision', 'isis-am': 'isis-am', 'isis-ambc': 'isis-ambc', 'saiseh': 'Satellite-data Acquisition System 4', 'sightline': 'SightLine', 'sa-msg-port': 'sa-msg-port', 'rsap': 'rsap', 'concurrent-lm': 'concurrent-lm', 'kermit': 'kermit', 'nkd': 'nkd', 'shiva-confsrvr': 'shiva_confsrvr\nIANA assigned this well-formed service name as a replacement for "shiva_confsrvr".', 'shiva_confsrvr': 'shiva_confsrvr', 'xnmp': 'xnmp', 'alphatech-lm': 'alphatech-lm', 'stargatealerts': 'stargatealerts', 'dec-mbadmin': 'dec-mbadmin', 'dec-mbadmin-h': 'dec-mbadmin-h', 'fujitsu-mmpdc': 'fujitsu-mmpdc', 'sixnetudr': 'sixnetudr', 'sg-lm': 'Silicon Grail License Manager', 'skip-mc-gikreq': 'skip-mc-gikreq', 'netview-aix-1': 'netview-aix-1', 'netview-aix-2': 'netview-aix-2', 'netview-aix-3': 'netview-aix-3', 'netview-aix-4': 'netview-aix-4', 'netview-aix-5': 'netview-aix-5', 'netview-aix-6': 'netview-aix-6', 'netview-aix-7': 'netview-aix-7', 'netview-aix-8': 'netview-aix-8', 'netview-aix-9': 'netview-aix-9', 'netview-aix-10': 'netview-aix-10', 'netview-aix-11': 'netview-aix-11', 'netview-aix-12': 'netview-aix-12', 'proshare-mc-1': 'Intel Proshare Multicast', 'proshare-mc-2': 'Intel Proshare Multicast', 'pdp': 'Pacific Data Products', 'netcomm2': 'netcomm2', 'groupwise': 'groupwise', 'prolink': 'prolink', 'darcorp-lm': 'darcorp-lm', 'microcom-sbp': 'microcom-sbp', 'sd-elmd': 'sd-elmd', 'lanyon-lantern': 'lanyon-lantern', 'ncpm-hip': 'ncpm-hip', 'snaresecure': 'SnareSecure', 'n2nremote': 'n2nremote', 'cvmon': 'cvmon', 'nsjtp-ctrl': 'nsjtp-ctrl', 'nsjtp-data': 'nsjtp-data', 'firefox': 'firefox', 'ng-umds': 'ng-umds', 'empire-empuma': 'empire-empuma', 'sstsys-lm': 'sstsys-lm', 'rrirtr': 'rrirtr', 'rrimwm': 'rrimwm', 'rrilwm': 'rrilwm', 'rrifmm': 'rrifmm', 'rrisat': 'rrisat', 'rsvp-encap-1': 'RSVP-ENCAPSULATION-1', 'rsvp-encap-2': 'RSVP-ENCAPSULATION-2', 'mps-raft': 'mps-raft', 'l2f': 'l2f', 'l2tp': 'l2tp', 'deskshare': 'deskshare', 'hb-engine': 'hb-engine', 'bcs-broker': 'bcs-broker', 'slingshot': 'slingshot', 'jetform': 'jetform', 'vdmplay': 'vdmplay', 'gat-lmd': 'gat-lmd', 'centra': 'centra', 'impera': 'impera', 'pptconference': 'pptconference', 'registrar': 'resource monitoring service', 'conferencetalk': 'ConferenceTalk', 'sesi-lm': 'sesi-lm', 'houdini-lm': 'houdini-lm', 'xmsg': 'xmsg', 'fj-hdnet': 'fj-hdnet', 'h323gatedisc': 'h323gatedisc', 'h323gatestat': 'h323gatestat', 'h323hostcall': 'h323hostcall', 'caicci': 'caicci', 'hks-lm': 'HKS License Manager', 'pptp': 'pptp', 'csbphonemaster': 'csbphonemaster', 'iden-ralp': 'iden-ralp', 'iberiagames': 'IBERIAGAMES', 'winddx': 'winddx', 'telindus': 'TELINDUS', 'citynl': 'CityNL License Management', 'roketz': 'roketz', 'msiccp': 'MSICCP', 'proxim': 'proxim', 'siipat': 'SIMS - SIIPAT Protocol for Alarm Transmission', 'cambertx-lm': 'Camber Corporation License Management', 'privatechat': 'PrivateChat', 'street-stream': 'street-stream', 'ultimad': 'ultimad', 'gamegen1': 'GameGen1', 'webaccess': 'webaccess', 'encore': 'encore', 'cisco-net-mgmt': 'cisco-net-mgmt', '3Com-nsd': '3Com-nsd', 'cinegrfx-lm': 'Cinema Graphics License Manager', 'ncpm-ft': 'ncpm-ft', 'remote-winsock': 'remote-winsock', 'ftrapid-1': 'ftrapid-1', 'ftrapid-2': 'ftrapid-2', 'oracle-em1': 'oracle-em1', 'aspen-services': 'aspen-services', 'sslp': "Simple Socket Library's PortMaster", 'swiftnet': 'SwiftNet', 'lofr-lm': 'Leap of Faith Research License Manager', 'oracle-em2': 'oracle-em2', 'ms-streaming': 'ms-streaming', 'capfast-lmd': 'capfast-lmd', 'cnhrp': 'cnhrp', 'tftp-mcast': 'tftp-mcast', 'spss-lm': 'SPSS License Manager', 'www-ldap-gw': 'www-ldap-gw', 'cft-0': 'cft-0', 'cft-1': 'cft-1', 'cft-2': 'cft-2', 'cft-3': 'cft-3', 'cft-4': 'cft-4', 'cft-5': 'cft-5', 'cft-6': 'cft-6', 'cft-7': 'cft-7', 'bmc-net-adm': 'bmc-net-adm', 'bmc-net-svc': 'bmc-net-svc', 'vaultbase': 'vaultbase', 'essweb-gw': 'EssWeb Gateway', 'kmscontrol': 'KMSControl', 'global-dtserv': 'global-dtserv', 'femis': 'Federal Emergency Management Information System', 'powerguardian': 'powerguardian', 'prodigy-intrnet': 'prodigy-internet', 'pharmasoft': 'pharmasoft', 'dpkeyserv': 'dpkeyserv', 'answersoft-lm': 'answersoft-lm', 'hp-hcip': 'hp-hcip', 'finle-lm': 'Finle License Manager', 'windlm': 'Wind River Systems License Manager', 'funk-logger': 'funk-logger', 'funk-license': 'funk-license', 'psmond': 'psmond', 'hello': 'hello', 'nmsp': 'Narrative Media Streaming Protocol', 'ea1': 'EA1', 'ibm-dt-2': 'ibm-dt-2', 'rsc-robot': 'rsc-robot', 'cera-bcm': 'cera-bcm', 'dpi-proxy': 'dpi-proxy', 'vocaltec-admin': 'Vocaltec Server Administration', 'uma': 'UMA', 'etp': 'Event Transfer Protocol', 'netrisk': 'NETRISK', 'ansys-lm': 'ANSYS-License manager', 'msmq': 'Microsoft Message Que', 'concomp1': 'ConComp1', 'hp-hcip-gwy': 'HP-HCIP-GWY', 'enl': 'ENL', 'enl-name': 'ENL-Name', 'musiconline': 'Musiconline', 'fhsp': 'Fujitsu Hot Standby Protocol', 'oracle-vp2': 'Oracle-VP2', 'oracle-vp1': 'Oracle-VP1', 'jerand-lm': 'Jerand License Manager', 'scientia-sdb': 'Scientia-SDB', 'radius': 'RADIUS', 'radius-acct': 'RADIUS Accounting', 'tdp-suite': 'TDP Suite', 'mmpft': 'MMPFT', 'harp': 'HARP', 'rkb-oscs': 'RKB-OSCS', 'etftp': 'Enhanced Trivial File Transfer Protocol', 'plato-lm': 'Plato License Manager', 'mcagent': 'mcagent', 'donnyworld': 'donnyworld', 'es-elmd': 'es-elmd', 'unisys-lm': 'Unisys Natural Language License Manager', 'metrics-pas': 'metrics-pas', 'direcpc-video': 'DirecPC Video', 'ardt': 'ARDT', 'asi': 'ASI', 'itm-mcell-u': 'itm-mcell-u', 'optika-emedia': 'Optika eMedia', 'net8-cman': 'Oracle Net8 CMan Admin', 'myrtle': 'Myrtle', 'tht-treasure': 'ThoughtTreasure', 'udpradio': 'udpradio', 'ardusuni': 'ARDUS Unicast', 'ardusmul': 'ARDUS Multicast', 'ste-smsc': 'ste-smsc', 'csoft1': 'csoft1', 'talnet': 'TALNET', 'netopia-vo1': 'netopia-vo1', 'netopia-vo2': 'netopia-vo2', 'netopia-vo3': 'netopia-vo3', 'netopia-vo4': 'netopia-vo4', 'netopia-vo5': 'netopia-vo5', 'direcpc-dll': 'DirecPC-DLL', 'altalink': 'altalink', 'tunstall-pnc': 'Tunstall PNC', 'slp-notify': 'SLP Notification', 'fjdocdist': 'fjdocdist', 'alpha-sms': 'ALPHA-SMS', 'gsi': 'GSI', 'ctcd': 'ctcd', 'virtual-time': 'Virtual Time', 'vids-avtp': 'VIDS-AVTP', 'buddy-draw': 'Buddy Draw', 'fiorano-rtrsvc': 'Fiorano RtrSvc', 'fiorano-msgsvc': 'Fiorano MsgSvc', 'datacaptor': 'DataCaptor', 'privateark': 'PrivateArk', 'gammafetchsvr': 'Gamma Fetcher Server', 'sunscalar-svc': 'SunSCALAR Services', 'lecroy-vicp': 'LeCroy VICP', 'mysql-cm-agent': 'MySQL Cluster Manager Agent', 'msnp': 'MSNP', 'paradym-31port': 'Paradym 31 Port', 'entp': 'ENTP', 'swrmi': 'swrmi', 'udrive': 'UDRIVE', 'viziblebrowser': 'VizibleBrowser', 'transact': 'TransAct', 'sunscalar-dns': 'SunSCALAR DNS Service', 'canocentral0': 'Cano Central 0', 'canocentral1': 'Cano Central 1', 'fjmpjps': 'Fjmpjps', 'fjswapsnp': 'Fjswapsnp', 'westell-stats': 'westell stats', 'ewcappsrv': 'ewcappsrv', 'hp-webqosdb': 'hp-webqosdb', 'drmsmc': 'drmsmc', 'nettgain-nms': 'NettGain NMS', 'vsat-control': 'Gilat VSAT Control', 'ibm-mqseries2': 'IBM WebSphere MQ Everyplace', 'ecsqdmn': 'CA eTrust Common Services', 'ibm-mqisdp': 'IBM MQSeries SCADA', 'idmaps': 'Internet Distance Map Svc', 'vrtstrapserver': 'Veritas Trap Server', 'leoip': 'Leonardo over IP', 'filex-lport': 'FileX Listening Port', 'ncconfig': 'NC Config Port', 'unify-adapter': 'Unify Web Adapter Service', 'wilkenlistener': 'wilkenListener', 'childkey-notif': 'ChildKey Notification', 'childkey-ctrl': 'ChildKey Control', 'elad': 'ELAD Protocol', 'o2server-port': 'O2Server Port', 'b-novative-ls': 'b-novative license server', 'metaagent': 'MetaAgent', 'cymtec-port': 'Cymtec secure management', 'mc2studios': 'MC2Studios', 'ssdp': 'SSDP', 'fjicl-tep-a': 'Fujitsu ICL Terminal Emulator Program A', 'fjicl-tep-b': 'Fujitsu ICL Terminal Emulator Program B', 'linkname': 'Local Link Name Resolution', 'fjicl-tep-c': 'Fujitsu ICL Terminal Emulator Program C', 'sugp': 'Secure UP.Link Gateway Protocol', 'tpmd': 'TPortMapperReq', 'intrastar': 'IntraSTAR', 'dawn': 'Dawn', 'global-wlink': 'Global World Link', 'ultrabac': 'UltraBac Software communications port', 'mtp': 'Starlight Networks Multimedia Transport Protocol', 'rhp-iibp': 'rhp-iibp', 'armadp': 'armadp', 'elm-momentum': 'Elm-Momentum', 'facelink': 'FACELINK', 'persona': 'Persoft Persona', 'noagent': 'nOAgent', 'can-nds': 'IBM Tivole Directory Service - NDS', 'can-dch': 'IBM Tivoli Directory Service - DCH', 'can-ferret': 'IBM Tivoli Directory Service - FERRET', 'noadmin': 'NoAdmin', 'tapestry': 'Tapestry', 'spice': 'SPICE', 'xiip': 'XIIP', 'discovery-port': 'Surrogate Discovery Port', 'egs': 'Evolution Game Server', 'videte-cipc': 'Videte CIPC Port', 'emsd-port': 'Expnd Maui Srvr Dscovr', 'bandwiz-system': 'Bandwiz System - Server', 'driveappserver': 'Drive AppServer', 'amdsched': 'AMD SCHED', 'ctt-broker': 'CTT Broker', 'xmapi': 'IBM LM MT Agent', 'xaapi': 'IBM LM Appl Agent', 'macromedia-fcs': 'Macromedia Flash Communications server MX', 'jetcmeserver': 'JetCmeServer Server Port', 'jwserver': 'JetVWay Server Port', 'jwclient': 'JetVWay Client Port', 'jvserver': 'JetVision Server Port', 'jvclient': 'JetVision Client Port', 'dic-aida': 'DIC-Aida', 'res': 'Real Enterprise Service', 'beeyond-media': 'Beeyond Media', 'close-combat': 'close-combat', 'dialogic-elmd': 'dialogic-elmd', 'tekpls': 'tekpls', 'sentinelsrm': 'SentinelSRM', 'eye2eye': 'eye2eye', 'ismaeasdaqlive': 'ISMA Easdaq Live', 'ismaeasdaqtest': 'ISMA Easdaq Test', 'bcs-lmserver': 'bcs-lmserver', 'mpnjsc': 'mpnjsc', 'rapidbase': 'Rapid Base', 'abr-api': 'ABR-API (diskbridge)', 'abr-secure': 'ABR-Secure Data (diskbridge)', 'vrtl-vmf-ds': 'Vertel VMF DS', 'unix-status': 'unix-status', 'dxadmind': 'CA Administration Daemon', 'simp-all': 'SIMP Channel', 'nasmanager': 'Merit DAC NASmanager', 'bts-appserver': 'BTS APPSERVER', 'biap-mp': 'BIAP-MP', 'webmachine': 'WebMachine', 'solid-e-engine': 'SOLID E ENGINE', 'tivoli-npm': 'Tivoli NPM', 'slush': 'Slush', 'sns-quote': 'SNS Quote', 'lipsinc': 'LIPSinc', 'lipsinc1': 'LIPSinc 1', 'netop-rc': 'NetOp Remote Control', 'netop-school': 'NetOp School', 'intersys-cache': 'Cache', 'dlsrap': 'Data Link Switching Remote Access Protocol', 'drp': 'DRP', 'tcoflashagent': 'TCO Flash Agent', 'tcoregagent': 'TCO Reg Agent', 'tcoaddressbook': 'TCO Address Book', 'unisql': 'UniSQL', 'unisql-java': 'UniSQL Java', 'pearldoc-xact': 'PearlDoc XACT', 'p2pq': 'p2pQ', 'estamp': 'Evidentiary Timestamp', 'lhtp': 'Loophole Test Protocol', 'bb': 'BB', 'hsrp': 'Hot Standby Router Protocol', 'licensedaemon': 'cisco license management', 'tr-rsrb-p1': 'cisco RSRB Priority 1 port', 'tr-rsrb-p2': 'cisco RSRB Priority 2 port', 'tr-rsrb-p3': 'cisco RSRB Priority 3 port', 'mshnet': 'MHSnet system', 'stun-p1': 'cisco STUN Priority 1 port', 'stun-p2': 'cisco STUN Priority 2 port', 'stun-p3': 'cisco STUN Priority 3 port', 'ipsendmsg': 'IPsendmsg', 'snmp-tcp-port': 'cisco SNMP TCP port', 'stun-port': 'cisco serial tunnel port', 'perf-port': 'cisco perf port', 'tr-rsrb-port': 'cisco Remote SRB port', 'gdp-port': 'cisco Gateway Discovery Protocol', 'x25-svc-port': 'cisco X.25 service (XOT)', 'tcp-id-port': 'cisco identification port', 'cisco-sccp': 'Cisco SCCp', 'wizard': 'curry', 'globe': '', 'brutus': 'Brutus Server', 'emce': 'CCWS mm conf', 'oracle': '', 'raid-cd': 'raid', 'raid-am': '', 'terminaldb': '', 'whosockami': '', 'pipe-server': '\nIANA assigned this well-formed service name as a replacement for "pipe_server".', 'pipe_server': '', 'servserv': '', 'raid-ac': '', 'raid-cd': '', 'raid-sf': '', 'raid-cs': '', 'bootserver': '', 'bootclient': '', 'rellpack': '', 'about': '', 'xinupageserver': '', 'xinuexpansion1': '', 'xinuexpansion2': '', 'xinuexpansion3': '', 'xinuexpansion4': '', 'xribs': '', 'scrabble': '', 'shadowserver': '', 'submitserver': '', 'hsrpv6': 'Hot Standby Router Protocol IPv6', 'device2': '', 'mobrien-chat': 'mobrien-chat', 'blackboard': '', 'glogger': '', 'scoremgr': '', 'imsldoc': '', 'e-dpnet': 'Ethernet WS DP network', 'applus': 'APplus Application Server', 'objectmanager': '', 'prizma': 'Prizma Monitoring Service', 'lam': '', 'interbase': '', 'isis': 'isis', 'isis-bcast': 'isis-bcast', 'rimsl': '', 'cdfunc': '', 'sdfunc': '', 'dls': '', 'dls-monitor': '', 'shilp': '', 'nfs': 'Network File System - Sun Microsystems', 'av-emb-config': 'Avaya EMB Config Port', 'epnsdp': 'EPNSDP', 'clearvisn': 'clearVisn Services Port', 'lot105-ds-upd': 'Lot105 DSuper Updates', 'weblogin': 'Weblogin Port', 'iop': 'Iliad-Odyssey Protocol', 'omnisky': 'OmniSky Port', 'rich-cp': 'Rich Content Protocol', 'newwavesearch': 'NewWaveSearchables RMI', 'bmc-messaging': 'BMC Messaging Service', 'teleniumdaemon': 'Telenium Daemon IF', 'netmount': 'NetMount', 'icg-swp': 'ICG SWP Port', 'icg-bridge': 'ICG Bridge Port', 'icg-iprelay': 'ICG IP Relay Port', 'dlsrpn': 'Data Link Switch Read Port Number', 'aura': 'AVM USB Remote Architecture', 'dlswpn': 'Data Link Switch Write Port Number', 'avauthsrvprtcl': 'Avocent AuthSrv Protocol', 'event-port': 'HTTP Event Port', 'ah-esp-encap': 'AH and ESP Encapsulated in UDP packet', 'acp-port': 'Axon Control Protocol', 'msync': 'GlobeCast mSync', 'gxs-data-port': 'DataReel Database Socket', 'vrtl-vmf-sa': 'Vertel VMF SA', 'newlixengine': 'Newlix ServerWare Engine', 'newlixconfig': 'Newlix JSPConfig', 'tsrmagt': 'Old Tivoli Storage Manager', 'tpcsrvr': 'IBM Total Productivity Center Server', 'idware-router': 'IDWARE Router Port', 'autodesk-nlm': 'Autodesk NLM (FLEXlm)', 'kme-trap-port': 'KME PRINTER TRAP PORT', 'infowave': 'Infowave Mobility Server', 'radsec': 'Secure Radius Service', 'sunclustergeo': 'SunCluster Geographic', 'ada-cip': 'ADA Control', 'gnunet': 'GNUnet', 'eli': 'ELI - Event Logging Integration', 'ip-blf': 'IP Busy Lamp Field', 'sep': 'Security Encapsulation Protocol - SEP', 'lrp': 'Load Report Protocol', 'prp': 'PRP', 'descent3': 'Descent 3', 'nbx-cc': 'NBX CC', 'nbx-au': 'NBX AU', 'nbx-ser': 'NBX SER', 'nbx-dir': 'NBX DIR', 'jetformpreview': 'Jet Form Preview', 'dialog-port': 'Dialog Port', 'h2250-annex-g': 'H.225.0 Annex G', 'amiganetfs': 'Amiga Network Filesystem', 'rtcm-sc104': 'rtcm-sc104', 'zephyr-srv': 'Zephyr server', 'zephyr-clt': 'Zephyr serv-hm connection', 'zephyr-hm': 'Zephyr hostmanager', 'minipay': 'MiniPay', 'mzap': 'MZAP', 'bintec-admin': 'BinTec Admin', 'comcam': 'Comcam', 'ergolight': 'Ergolight', 'umsp': 'UMSP', 'dsatp': 'OPNET Dynamic Sampling Agent Transaction Protocol', 'idonix-metanet': 'Idonix MetaNet', 'hsl-storm': 'HSL StoRM', 'newheights': 'NEWHEIGHTS', 'kdm': 'Key Distribution Manager', 'ccowcmr': 'CCOWCMR', 'mentaclient': 'MENTACLIENT', 'mentaserver': 'MENTASERVER', 'gsigatekeeper': 'GSIGATEKEEPER', 'qencp': 'Quick Eagle Networks CP', 'scientia-ssdb': 'SCIENTIA-SSDB', 'caupc-remote': 'CauPC Remote Control', 'gtp-control': 'GTP-Control Plane (3GPP)', 'elatelink': 'ELATELINK', 'lockstep': 'LOCKSTEP', 'pktcable-cops': 'PktCable-COPS', 'index-pc-wb': 'INDEX-PC-WB', 'net-steward': 'Net Steward Control', 'cs-live': 'cs-live.com', 'xds': 'XDS', 'avantageb2b': 'Avantageb2b', 'solera-epmap': 'SoleraTec End Point Map', 'zymed-zpp': 'ZYMED-ZPP', 'avenue': 'AVENUE', 'gris': 'Grid Resource Information Server', 'appworxsrv': 'APPWORXSRV', 'connect': 'CONNECT', 'unbind-cluster': 'UNBIND-CLUSTER', 'ias-auth': 'IAS-AUTH', 'ias-reg': 'IAS-REG', 'ias-admind': 'IAS-ADMIND', 'tdmoip': 'TDM OVER IP', 'lv-jc': 'Live Vault Job Control', 'lv-ffx': 'Live Vault Fast Object Transfer', 'lv-pici': 'Live Vault Remote Diagnostic Console Support', 'lv-not': 'Live Vault Admin Event Notification', 'lv-auth': 'Live Vault Authentication', 'veritas-ucl': 'VERITAS UNIVERSAL COMMUNICATION LAYER', 'acptsys': 'ACPTSYS', 'dynamic3d': 'DYNAMIC3D', 'docent': 'DOCENT', 'gtp-user': 'GTP-User Plane (3GPP)', 'ctlptc': 'Control Protocol', 'stdptc': 'Standard Protocol', 'brdptc': 'Bridge Protocol', 'trp': 'Talari Reliable Protocol', 'xnds': 'Xerox Network Document Scan Protocol', 'touchnetplus': 'TouchNetPlus Service', 'gdbremote': 'GDB Remote Debug Port', 'apc-2160': 'APC 2160', 'apc-2161': 'APC 2161', 'navisphere': 'Navisphere', 'navisphere-sec': 'Navisphere Secure', 'ddns-v3': 'Dynamic DNS Version 3', 'x-bone-api': 'X-Bone API', 'iwserver': 'iwserver', 'raw-serial': 'Raw Async Serial Link', 'easy-soft-mux': 'easy-soft Multiplexer', 'brain': 'Backbone for Academic Information Notification (BRAIN)', 'eyetv': 'EyeTV Server Port', 'msfw-storage': 'MS Firewall Storage', 'msfw-s-storage': 'MS Firewall SecureStorage', 'msfw-replica': 'MS Firewall Replication', 'msfw-array': 'MS Firewall Intra Array', 'airsync': 'Microsoft Desktop AirSync Protocol', 'rapi': 'Microsoft ActiveSync Remote API', 'qwave': 'qWAVE Bandwidth Estimate', 'bitspeer': 'Peer Services for BITS', 'vmrdp': 'Microsoft RDP for virtual machines', 'mc-gt-srv': 'Millicent Vendor Gateway Server', 'eforward': 'eforward', 'cgn-stat': 'CGN status', 'cgn-config': 'Code Green configuration', 'nvd': 'NVD User', 'onbase-dds': 'OnBase Distributed Disk Services', 'gtaua': 'Guy-Tek Automated Update Applications', 'ssmd': 'Sepehr System Management Data', 'tivoconnect': 'TiVoConnect Beacon', 'tvbus': 'TvBus Messaging', 'asdis': 'ASDIS software management', 'drwcs': 'Dr.Web Enterprise Management Service', 'mnp-exchange': 'MNP data exchange', 'onehome-remote': 'OneHome Remote Access', 'onehome-help': 'OneHome Service Port', 'ici': 'ICI', 'ats': 'Advanced Training System Program', 'imtc-map': 'Int. Multimedia Teleconferencing Cosortium', 'b2-runtime': 'b2 Runtime Protocol', 'b2-license': 'b2 License Server', 'jps': 'Java Presentation Server', 'hpocbus': 'HP OpenCall bus', 'hpssd': 'HP Status and Services', 'hpiod': 'HP I/O Backend', 'rimf-ps': 'HP RIM for Files Portal Service', 'noaaport': 'NOAAPORT Broadcast Network', 'emwin': 'EMWIN', 'leecoposserver': 'LeeCO POS Server Service', 'kali': 'Kali', 'rpi': 'RDQ Protocol Interface', 'ipcore': 'IPCore.co.za GPRS', 'vtu-comms': 'VTU data service', 'gotodevice': 'GoToDevice Device Management', 'bounzza': 'Bounzza IRC Proxy', 'netiq-ncap': 'NetIQ NCAP Protocol', 'netiq': 'NetIQ End2End', 'rockwell-csp1': 'Rockwell CSP1', 'EtherNet-IP-1': 'EtherNet/IP I/O\nIANA assigned this well-formed service name as a replacement for "EtherNet/IP-1".', 'EtherNet/IP-1': 'EtherNet/IP I/O', 'rockwell-csp2': 'Rockwell CSP2', 'efi-mg': 'Easy Flexible Internet/Multiplayer Games', 'di-drm': 'Digital Instinct DRM', 'di-msg': 'DI Messaging Service', 'ehome-ms': 'eHome Message Server', 'datalens': 'DataLens Service', 'queueadm': 'MetaSoft Job Queue Administration Service', 'wimaxasncp': 'WiMAX ASN Control Plane Protocol', 'ivs-video': 'IVS Video default', 'infocrypt': 'INFOCRYPT', 'directplay': 'DirectPlay', 'sercomm-wlink': 'Sercomm-WLink', 'nani': 'Nani', 'optech-port1-lm': 'Optech Port1 License Manager', 'aviva-sna': 'AVIVA SNA SERVER', 'imagequery': 'Image Query', 'recipe': 'RECIPe', 'ivsd': 'IVS Daemon', 'foliocorp': 'Folio Remote Server', 'magicom': 'Magicom Protocol', 'nmsserver': 'NMS Server', 'hao': 'HaO', 'pc-mta-addrmap': 'PacketCable MTA Addr Map', 'antidotemgrsvr': 'Antidote Deployment Manager Service', 'ums': 'User Management Service', 'rfmp': 'RISO File Manager Protocol', 'remote-collab': 'remote-collab', 'dif-port': 'Distributed Framework Port', 'njenet-ssl': 'NJENET using SSL', 'dtv-chan-req': 'DTV Channel Request', 'seispoc': 'Seismic P.O.C. Port', 'vrtp': 'VRTP - ViRtue Transfer Protocol', 'pcc-mfp': 'PCC MFP', 'simple-tx-rx': 'simple text/file transfer', 'rcts': 'Rotorcraft Communications Test System', 'apc-2260': 'APC 2260', 'comotionmaster': 'CoMotion Master Server', 'comotionback': 'CoMotion Backup Server', 'ecwcfg': 'ECweb Configuration Service', 'apx500api-1': 'Audio Precision Apx500 API Port 1', 'apx500api-2': 'Audio Precision Apx500 API Port 2', 'mfserver': 'M-files Server', 'ontobroker': 'OntoBroker', 'amt': 'AMT', 'mikey': 'MIKEY', 'starschool': 'starSchool', 'mmcals': 'Secure Meeting Maker Scheduling', 'mmcal': 'Meeting Maker Scheduling', 'mysql-im': 'MySQL Instance Manager', 'pcttunnell': 'PCTTunneller', 'ibridge-data': 'iBridge Conferencing', 'ibridge-mgmt': 'iBridge Management', 'bluectrlproxy': 'Bt device control proxy', 's3db': 'Simple Stacked Sequences Database', 'xmquery': 'xmquery', 'lnvpoller': 'LNVPOLLER', 'lnvconsole': 'LNVCONSOLE', 'lnvalarm': 'LNVALARM', 'lnvstatus': 'LNVSTATUS', 'lnvmaps': 'LNVMAPS', 'lnvmailmon': 'LNVMAILMON', 'nas-metering': 'NAS-Metering', 'dna': 'DNA', 'netml': 'NETML', 'dict-lookup': 'Lookup dict server', 'sonus-logging': 'Sonus Logging Services', 'eapsp': 'EPSON Advanced Printer Share Protocol', 'mib-streaming': 'Sonus Element Management Services', 'npdbgmngr': 'Network Platform Debug Manager', 'konshus-lm': 'Konshus License Manager (FLEX)', 'advant-lm': 'Advant License Manager', 'theta-lm': 'Theta License Manager (Rainbow)', 'd2k-datamover1': 'D2K DataMover 1', 'd2k-datamover2': 'D2K DataMover 2', 'pc-telecommute': 'PC Telecommute', 'cvmmon': 'CVMMON', 'cpq-wbem': 'Compaq HTTP', 'binderysupport': 'Bindery Support', 'proxy-gateway': 'Proxy Gateway', 'attachmate-uts': 'Attachmate UTS', 'mt-scaleserver': 'MT ScaleServer', 'tappi-boxnet': 'TAPPI BoxNet', 'pehelp': 'pehelp', 'sdhelp': 'sdhelp', 'sdserver': 'SD Server', 'sdclient': 'SD Client', 'messageservice': 'Message Service', 'wanscaler': 'WANScaler Communication Service', 'iapp': 'IAPP (Inter Access Point Protocol)', 'cr-websystems': 'CR WebSystems', 'precise-sft': 'Precise Sft.', 'sent-lm': 'SENT License Manager', 'attachmate-g32': 'Attachmate G32', 'cadencecontrol': 'Cadence Control', 'infolibria': 'InfoLibria', 'siebel-ns': 'Siebel NS', 'rdlap': 'RDLAP', 'ofsd': 'ofsd', '3d-nfsd': '3d-nfsd', 'cosmocall': 'Cosmocall', 'ansysli': 'ANSYS Licensing Interconnect', 'idcp': 'IDCP', 'xingcsm': 'xingcsm', 'netrix-sftm': 'Netrix SFTM', 'nvd': 'NVD', 'tscchat': 'TSCCHAT', 'agentview': 'AGENTVIEW', 'rcc-host': 'RCC Host', 'snapp': 'SNAPP', 'ace-client': 'ACE Client Auth', 'ace-proxy': 'ACE Proxy', 'appleugcontrol': 'Apple UG Control', 'ideesrv': 'ideesrv', 'norton-lambert': 'Norton Lambert', '3com-webview': '3Com WebView', 'wrs-registry': 'WRS Registry\nIANA assigned this well-formed service name as a replacement for "wrs_registry".', 'wrs_registry': 'WRS Registry', 'xiostatus': 'XIO Status', 'manage-exec': 'Seagate Manage Exec', 'nati-logos': 'nati logos', 'fcmsys': 'fcmsys', 'dbm': 'dbm', 'redstorm-join': 'Game Connection Port\nIANA assigned this well-formed service name as a replacement for "redstorm_join".', 'redstorm_join': 'Game Connection Port', 'redstorm-find': 'Game Announcement and Location\nIANA assigned this well-formed service name as a replacement for "redstorm_find".', 'redstorm_find': 'Game Announcement and Location', 'redstorm-info': 'Information to query for game status\nIANA assigned this well-formed service name as a replacement for "redstorm_info".', 'redstorm_info': 'Information to query for game status', 'redstorm-diag': 'Diagnostics Port\nIANA assigned this well-formed service name as a replacement for "redstorm_diag".', 'redstorm_diag': 'Diagnostics Port', 'psbserver': 'Pharos Booking Server', 'psrserver': 'psrserver', 'pslserver': 'pslserver', 'pspserver': 'pspserver', 'psprserver': 'psprserver', 'psdbserver': 'psdbserver', 'gxtelmd': 'GXT License Managemant', 'unihub-server': 'UniHub Server', 'futrix': 'Futrix', 'flukeserver': 'FlukeServer', 'nexstorindltd': 'NexstorIndLtd', 'tl1': 'TL1', 'digiman': 'digiman', 'mediacntrlnfsd': 'Media Central NFSD', 'oi-2000': 'OI-2000', 'dbref': 'dbref', 'qip-login': 'qip-login', 'service-ctrl': 'Service Control', 'opentable': 'OpenTable', 'l3-hbmon': 'L3-HBMon', 'worldwire': 'Compaq WorldWire Port', 'lanmessenger': 'LanMessenger', 'compaq-https': 'Compaq HTTPS', 'ms-olap3': 'Microsoft OLAP', 'ms-olap4': 'Microsoft OLAP', 'sd-capacity': 'SD-CAPACITY', 'sd-data': 'SD-DATA', 'virtualtape': 'Virtual Tape', 'vsamredirector': 'VSAM Redirector', 'mynahautostart': 'MYNAH AutoStart', 'ovsessionmgr': 'OpenView Session Mgr', 'rsmtp': 'RSMTP', '3com-net-mgmt': '3COM Net Management', 'tacticalauth': 'Tactical Auth', 'ms-olap1': 'MS OLAP 1', 'ms-olap2': 'MS OLAP 2', 'lan900-remote': 'LAN900 Remote\nIANA assigned this well-formed service name as a replacement for "lan900_remote".', 'lan900_remote': 'LAN900 Remote', 'wusage': 'Wusage', 'ncl': 'NCL', 'orbiter': 'Orbiter', 'fmpro-fdal': 'FileMaker, Inc. - Data Access Layer', 'opequus-server': 'OpEquus Server', 'cvspserver': 'cvspserver', 'taskmaster2000': 'TaskMaster 2000 Server', 'taskmaster2000': 'TaskMaster 2000 Web', 'iec-104': 'IEC 60870-5-104 process control over IP', 'trc-netpoll': 'TRC Netpoll', 'jediserver': 'JediServer', 'orion': 'Orion', 'sns-protocol': 'SNS Protocol', 'vrts-registry': 'VRTS Registry', 'netwave-ap-mgmt': 'Netwave AP Management', 'cdn': 'CDN', 'orion-rmi-reg': 'orion-rmi-reg', 'beeyond': 'Beeyond', 'codima-rtp': 'Codima Remote Transaction Protocol', 'rmtserver': 'RMT Server', 'composit-server': 'Composit Server', 'cas': 'cas', 'attachmate-s2s': 'Attachmate S2S', 'dslremote-mgmt': 'DSL Remote Management', 'g-talk': 'G-Talk', 'crmsbits': 'CRMSBITS', 'rnrp': 'RNRP', 'kofax-svr': 'KOFAX-SVR', 'fjitsuappmgr': 'Fujitsu App Manager', 'mgcp-gateway': 'Media Gateway Control Protocol Gateway', 'ott': 'One Way Trip Time', 'ft-role': 'FT-ROLE', 'venus': 'venus', 'venus-se': 'venus-se', 'codasrv': 'codasrv', 'codasrv-se': 'codasrv-se', 'pxc-epmap': 'pxc-epmap', 'optilogic': 'OptiLogic', 'topx': 'TOP/X', 'unicontrol': 'UniControl', 'msp': 'MSP', 'sybasedbsynch': 'SybaseDBSynch', 'spearway': 'Spearway Lockers', 'pvsw-inet': 'Pervasive I*net Data Server', 'netangel': 'Netangel', 'powerclientcsf': 'PowerClient Central Storage Facility', 'btpp2sectrans': 'BT PP2 Sectrans', 'dtn1': 'DTN1', 'bues-service': 'bues_service\nIANA assigned this well-formed service name as a replacement for "bues_service".', 'bues_service': 'bues_service', 'ovwdb': 'OpenView NNM daemon', 'hpppssvr': 'hpppsvr', 'ratl': 'RATL', 'netadmin': 'netadmin', 'netchat': 'netchat', 'snifferclient': 'SnifferClient', 'madge-ltd': 'madge ltd', 'indx-dds': 'IndX-DDS', 'wago-io-system': 'WAGO-IO-SYSTEM', 'altav-remmgt': 'altav-remmgt', 'rapido-ip': 'Rapido_IP', 'griffin': 'griffin', 'community': 'Community', 'ms-theater': 'ms-theater', 'qadmifoper': 'qadmifoper', 'qadmifevent': 'qadmifevent', 'lsi-raid-mgmt': 'LSI RAID Management', 'direcpc-si': 'DirecPC SI', 'lbm': 'Load Balance Management', 'lbf': 'Load Balance Forwarding', 'high-criteria': 'High Criteria', 'qip-msgd': 'qip_msgd', 'mti-tcs-comm': 'MTI-TCS-COMM', 'taskman-port': 'taskman port', 'seaodbc': 'SeaODBC', 'c3': 'C3', 'aker-cdp': 'Aker-cdp', 'vitalanalysis': 'Vital Analysis', 'ace-server': 'ACE Server', 'ace-svr-prop': 'ACE Server Propagation', 'ssm-cvs': 'SecurSight Certificate Valifation Service', 'ssm-cssps': 'SecurSight Authentication Server (SSL)', 'ssm-els': 'SecurSight Event Logging Server (SSL)', 'powerexchange': 'Informatica PowerExchange Listener', 'giop': 'Oracle GIOP', 'giop-ssl': 'Oracle GIOP SSL', 'ttc': 'Oracle TTC', 'ttc-ssl': 'Oracle TTC SSL', 'netobjects1': 'Net Objects1', 'netobjects2': 'Net Objects2', 'pns': 'Policy Notice Service', 'moy-corp': 'Moy Corporation', 'tsilb': 'TSILB', 'qip-qdhcp': 'qip_qdhcp', 'conclave-cpp': 'Conclave CPP', 'groove': 'GROOVE', 'talarian-mqs': 'Talarian MQS', 'bmc-ar': 'BMC AR', 'fast-rem-serv': 'Fast Remote Services', 'dirgis': 'DIRGIS', 'quaddb': 'Quad DB', 'odn-castraq': 'ODN-CasTraq', 'unicontrol': 'UniControl', 'rtsserv': 'Resource Tracking system server', 'rtsclient': 'Resource Tracking system client', 'kentrox-prot': 'Kentrox Protocol', 'nms-dpnss': 'NMS-DPNSS', 'wlbs': 'WLBS', 'ppcontrol': 'PowerPlay Control', 'jbroker': 'jbroker', 'spock': 'spock', 'jdatastore': 'JDataStore', 'fjmpss': 'fjmpss', 'fjappmgrbulk': 'fjappmgrbulk', 'metastorm': 'Metastorm', 'citrixima': 'Citrix IMA', 'citrixadmin': 'Citrix ADMIN', 'facsys-ntp': 'Facsys NTP', 'facsys-router': 'Facsys Router', 'maincontrol': 'Main Control', 'call-sig-trans': 'H.323 Annex E call signaling transport', 'willy': 'Willy', 'globmsgsvc': 'globmsgsvc', 'pvsw': 'Pervasive Listener', 'adaptecmgr': 'Adaptec Manager', 'windb': 'WinDb', 'qke-llc-v3': 'Qke LLC V.3', 'optiwave-lm': 'Optiwave License Management', 'ms-v-worlds': 'MS V-Worlds', 'ema-sent-lm': 'EMA License Manager', 'iqserver': 'IQ Server', 'ncr-ccl': 'NCR CCL\nIANA assigned this well-formed service name as a replacement for "ncr_ccl".', 'ncr_ccl': 'NCR CCL', 'utsftp': 'UTS FTP', 'vrcommerce': 'VR Commerce', 'ito-e-gui': 'ITO-E GUI', 'ovtopmd': 'OVTOPMD', 'snifferserver': 'SnifferServer', 'combox-web-acc': 'Combox Web Access', 'madcap': 'MADCAP', 'btpp2audctr1': 'btpp2audctr1', 'upgrade': 'Upgrade Protocol', 'vnwk-prapi': 'vnwk-prapi', 'vsiadmin': 'VSI Admin', 'lonworks': 'LonWorks', 'lonworks2': 'LonWorks2', 'udrawgraph': 'uDraw(Graph)', 'reftek': 'REFTEK', 'novell-zen': 'Management Daemon Refresh', 'sis-emt': 'sis-emt', 'vytalvaultbrtp': 'vytalvaultbrtp', 'vytalvaultvsmp': 'vytalvaultvsmp', 'vytalvaultpipe': 'vytalvaultpipe', 'ipass': 'IPASS', 'ads': 'ADS', 'isg-uda-server': 'ISG UDA Server', 'call-logging': 'Call Logging', 'efidiningport': 'efidiningport', 'vcnet-link-v10': 'VCnet-Link v10', 'compaq-wcp': 'Compaq WCP', 'nicetec-nmsvc': 'nicetec-nmsvc', 'nicetec-mgmt': 'nicetec-mgmt', 'pclemultimedia': 'PCLE Multi Media', 'lstp': 'LSTP', 'labrat': 'labrat', 'mosaixcc': 'MosaixCC', 'delibo': 'Delibo', 'cti-redwood': 'CTI Redwood', 'hp-3000-telnet': 'HP 3000 NS/VT block mode telnet', 'coord-svr': 'Coordinator Server', 'pcs-pcw': 'pcs-pcw', 'clp': 'Cisco Line Protocol', 'spamtrap': 'SPAM TRAP', 'sonuscallsig': 'Sonus Call Signal', 'hs-port': 'HS Port', 'cecsvc': 'CECSVC', 'ibp': 'IBP', 'trustestablish': 'Trust Establish', 'blockade-bpsp': 'Blockade BPSP', 'hl7': 'HL7', 'tclprodebugger': 'TCL Pro Debugger', 'scipticslsrvr': 'Scriptics Lsrvr', 'rvs-isdn-dcp': 'RVS ISDN DCP', 'mpfoncl': 'mpfoncl', 'tributary': 'Tributary', 'argis-te': 'ARGIS TE', 'argis-ds': 'ARGIS DS', 'mon': 'MON', 'cyaserv': 'cyaserv', 'netx-server': 'NETX Server', 'netx-agent': 'NETX Agent', 'masc': 'MASC', 'privilege': 'Privilege', 'quartus-tcl': 'quartus tcl', 'idotdist': 'idotdist', 'maytagshuffle': 'Maytag Shuffle', 'netrek': 'netrek', 'mns-mail': 'MNS Mail Notice Service', 'dts': 'Data Base Server', 'worldfusion1': 'World Fusion 1', 'worldfusion2': 'World Fusion 2', 'homesteadglory': 'Homestead Glory', 'citriximaclient': 'Citrix MA Client', 'snapd': 'Snap Discovery', 'hpstgmgr': 'HPSTGMGR', 'discp-client': 'discp client', 'discp-server': 'discp server', 'servicemeter': 'Service Meter', 'nsc-ccs': 'NSC CCS', 'nsc-posa': 'NSC POSA', 'netmon': 'Dell Netmon', 'connection': 'Dell Connection', 'wag-service': 'Wag Service', 'system-monitor': 'System Monitor', 'versa-tek': 'VersaTek', 'lionhead': 'LIONHEAD', 'qpasa-agent': 'Qpasa Agent', 'smntubootstrap': 'SMNTUBootstrap', 'neveroffline': 'Never Offline', 'firepower': 'firepower', 'appswitch-emp': 'appswitch-emp', 'cmadmin': 'Clinical Context Managers', 'priority-e-com': 'Priority E-Com', 'bruce': 'bruce', 'lpsrecommender': 'LPSRecommender', 'miles-apart': 'Miles Apart Jukebox Server', 'metricadbc': 'MetricaDBC', 'lmdp': 'LMDP', 'aria': 'Aria', 'blwnkl-port': 'Blwnkl Port', 'gbjd816': 'gbjd816', 'moshebeeri': 'Moshe Beeri', 'dict': 'DICT', 'sitaraserver': 'Sitara Server', 'sitaramgmt': 'Sitara Management', 'sitaradir': 'Sitara Dir', 'irdg-post': 'IRdg Post', 'interintelli': 'InterIntelli', 'pk-electronics': 'PK Electronics', 'backburner': 'Back Burner', 'solve': 'Solve', 'imdocsvc': 'Import Document Service', 'sybaseanywhere': 'Sybase Anywhere', 'aminet': 'AMInet', 'sai-sentlm': 'Sabbagh Associates Licence Manager\nIANA assigned this well-formed service name as a replacement for "sai_sentlm".', 'sai_sentlm': 'Sabbagh Associates Licence Manager', 'hdl-srv': 'HDL Server', 'tragic': 'Tragic', 'gte-samp': 'GTE-SAMP', 'travsoft-ipx-t': 'Travsoft IPX Tunnel', 'novell-ipx-cmd': 'Novell IPX CMD', 'and-lm': 'AND License Manager', 'syncserver': 'SyncServer', 'upsnotifyprot': 'Upsnotifyprot', 'vpsipport': 'VPSIPPORT', 'eristwoguns': 'eristwoguns', 'ebinsite': 'EBInSite', 'interpathpanel': 'InterPathPanel', 'sonus': 'Sonus', 'corel-vncadmin': 'Corel VNC Admin\nIANA assigned this well-formed service name as a replacement for "corel_vncadmin".', 'corel_vncadmin': 'Corel VNC Admin', 'unglue': 'UNIX Nt Glue', 'kana': 'Kana', 'sns-dispatcher': 'SNS Dispatcher', 'sns-admin': 'SNS Admin', 'sns-query': 'SNS Query', 'gcmonitor': 'GC Monitor', 'olhost': 'OLHOST', 'bintec-capi': 'BinTec-CAPI', 'bintec-tapi': 'BinTec-TAPI', 'patrol-mq-gm': 'Patrol for MQ GM', 'patrol-mq-nm': 'Patrol for MQ NM', 'extensis': 'extensis', 'alarm-clock-s': 'Alarm Clock Server', 'alarm-clock-c': 'Alarm Clock Client', 'toad': 'TOAD', 'tve-announce': 'TVE Announce', 'newlixreg': 'newlixreg', 'nhserver': 'nhserver', 'firstcall42': 'First Call 42', 'ewnn': 'ewnn', 'ttc-etap': 'TTC ETAP', 'simslink': 'SIMSLink', 'gadgetgate1way': 'Gadget Gate 1 Way', 'gadgetgate2way': 'Gadget Gate 2 Way', 'syncserverssl': 'Sync Server SSL', 'pxc-sapxom': 'pxc-sapxom', 'mpnjsomb': 'mpnjsomb', 'ncdloadbalance': 'NCDLoadBalance', 'mpnjsosv': 'mpnjsosv', 'mpnjsocl': 'mpnjsocl', 'mpnjsomg': 'mpnjsomg', 'pq-lic-mgmt': 'pq-lic-mgmt', 'md-cg-http': 'md-cf-http', 'fastlynx': 'FastLynx', 'hp-nnm-data': 'HP NNM Embedded Database', 'itinternet': 'ITInternet ISM Server', 'admins-lms': 'Admins LMS', 'pwrsevent': 'pwrsevent', 'vspread': 'VSPREAD', 'unifyadmin': 'Unify Admin', 'oce-snmp-trap': 'Oce SNMP Trap Port', 'mck-ivpip': 'MCK-IVPIP', 'csoft-plusclnt': 'Csoft Plus Client', 'tqdata': 'tqdata', 'sms-rcinfo': 'SMS RCINFO', 'sms-xfer': 'SMS XFER', 'sms-chat': 'SMS CHAT', 'sms-remctrl': 'SMS REMCTRL', 'sds-admin': 'SDS Admin', 'ncdmirroring': 'NCD Mirroring', 'emcsymapiport': 'EMCSYMAPIPORT', 'banyan-net': 'Banyan-Net', 'supermon': 'Supermon', 'sso-service': 'SSO Service', 'sso-control': 'SSO Control', 'aocp': 'Axapta Object Communication Protocol', 'raventbs': 'Raven Trinity Broker Service', 'raventdm': 'Raven Trinity Data Mover', 'hpstgmgr2': 'HPSTGMGR2', 'inova-ip-disco': 'Inova IP Disco', 'pn-requester': 'PN REQUESTER', 'pn-requester2': 'PN REQUESTER 2', 'scan-change': 'Scan & Change', 'wkars': 'wkars', 'smart-diagnose': 'Smart Diagnose', 'proactivesrvr': 'Proactive Server', 'watchdog-nt': 'WatchDog NT Protocol', 'qotps': 'qotps', 'msolap-ptp2': 'MSOLAP PTP2', 'tams': 'TAMS', 'mgcp-callagent': 'Media Gateway Control Protocol Call Agent', 'sqdr': 'SQDR', 'tcim-control': 'TCIM Control', 'nec-raidplus': 'NEC RaidPlus', 'fyre-messanger': 'Fyre Messagner', 'g5m': 'G5M', 'signet-ctf': 'Signet CTF', 'ccs-software': 'CCS Software', 'netiq-mc': 'NetIQ Monitor Console', 'radwiz-nms-srv': 'RADWIZ NMS SRV', 'srp-feedback': 'SRP Feedback', 'ndl-tcp-ois-gw': 'NDL TCP-OSI Gateway', 'tn-timing': 'TN Timing', 'alarm': 'Alarm', 'tsb': 'TSB', 'tsb2': 'TSB2', 'murx': 'murx', 'honyaku': 'honyaku', 'urbisnet': 'URBISNET', 'cpudpencap': 'CPUDPENCAP', 'fjippol-swrly': '', 'fjippol-polsvr': '', 'fjippol-cnsl': '', 'fjippol-port1': '', 'fjippol-port2': '', 'rsisysaccess': 'RSISYS ACCESS', 'de-spot': 'de-spot', 'apollo-cc': 'APOLLO CC', 'expresspay': 'Express Pay', 'simplement-tie': 'simplement-tie', 'cnrp': 'CNRP', 'apollo-status': 'APOLLO Status', 'apollo-gms': 'APOLLO GMS', 'sabams': 'Saba MS', 'dicom-iscl': 'DICOM ISCL', 'dicom-tls': 'DICOM TLS', 'desktop-dna': 'Desktop DNA', 'data-insurance': 'Data Insurance', 'qip-audup': 'qip-audup', 'compaq-scp': 'Compaq SCP', 'uadtc': 'UADTC', 'uacs': 'UACS', 'exce': 'eXcE', 'veronica': 'Veronica', 'vergencecm': 'Vergence CM', 'auris': 'auris', 'rbakcup1': 'RBackup Remote Backup', 'rbakcup2': 'RBackup Remote Backup', 'smpp': 'SMPP', 'ridgeway1': 'Ridgeway Systems & Software', 'ridgeway2': 'Ridgeway Systems & Software', 'gwen-sonya': 'Gwen-Sonya', 'lbc-sync': 'LBC Sync', 'lbc-control': 'LBC Control', 'whosells': 'whosells', 'everydayrc': 'everydayrc', 'aises': 'AISES', 'www-dev': 'world wide web - development', 'aic-np': 'aic-np', 'aic-oncrpc': 'aic-oncrpc - Destiny MCD database', 'piccolo': 'piccolo - Cornerstone Software', 'fryeserv': 'NetWare Loadable Module - Seagate Software', 'media-agent': 'Media Agent', 'plgproxy': 'PLG Proxy', 'mtport-regist': 'MT Port Registrator', 'f5-globalsite': 'f5-globalsite', 'initlsmsad': 'initlsmsad', 'livestats': 'LiveStats', 'ac-tech': 'ac-tech', 'esp-encap': 'esp-encap', 'tmesis-upshot': 'TMESIS-UPShot', 'icon-discover': 'ICON Discover', 'acc-raid': 'ACC RAID', 'igcp': 'IGCP', 'veritas-udp1': 'Veritas UDP1', 'btprjctrl': 'btprjctrl', 'dvr-esm': 'March Networks Digital Video Recorders and Enterprise Service Manager products', 'wta-wsp-s': 'WTA WSP-S', 'cspuni': 'cspuni', 'cspmulti': 'cspmulti', 'j-lan-p': 'J-LAN-P', 'corbaloc': 'CORBA LOC', 'netsteward': 'Active Net Steward', 'gsiftp': 'GSI FTP', 'atmtcp': 'atmtcp', 'llm-pass': 'llm-pass', 'llm-csv': 'llm-csv', 'lbc-measure': 'LBC Measurement', 'lbc-watchdog': 'LBC Watchdog', 'nmsigport': 'NMSig Port', 'rmlnk': 'rmlnk', 'fc-faultnotify': 'FC Fault Notification', 'univision': 'UniVision', 'vrts-at-port': 'VERITAS Authentication Service', 'ka0wuc': 'ka0wuc', 'cqg-netlan': 'CQG Net/LAN', 'cqg-netlan-1': 'CQG Net/Lan 1', 'slc-systemlog': 'slc systemlog', 'slc-ctrlrloops': 'slc ctrlrloops', 'itm-lm': 'ITM License Manager', 'silkp1': 'silkp1', 'silkp2': 'silkp2', 'silkp3': 'silkp3', 'silkp4': 'silkp4', 'glishd': 'glishd', 'evtp': 'EVTP', 'evtp-data': 'EVTP-DATA', 'catalyst': 'catalyst', 'repliweb': 'Repliweb', 'starbot': 'Starbot', 'nmsigport': 'NMSigPort', 'l3-exprt': 'l3-exprt', 'l3-ranger': 'l3-ranger', 'l3-hawk': 'l3-hawk', 'pdnet': 'PDnet', 'bpcp-poll': 'BPCP POLL', 'bpcp-trap': 'BPCP TRAP', 'aimpp-hello': 'AIMPP Hello', 'aimpp-port-req': 'AIMPP Port Req', 'amt-blc-port': 'AMT-BLC-PORT', 'fxp': 'FXP', 'metaconsole': 'MetaConsole', 'webemshttp': 'webemshttp', 'bears-01': 'bears-01', 'ispipes': 'ISPipes', 'infomover': 'InfoMover', 'msrp': 'MSRP', 'cesdinv': 'cesdinv', 'simctlp': 'SimCtIP', 'ecnp': 'ECNP', 'activememory': 'Active Memory', 'dialpad-voice1': 'Dialpad Voice 1', 'dialpad-voice2': 'Dialpad Voice 2', 'ttg-protocol': 'TTG Protocol', 'sonardata': 'Sonar Data', 'astromed-main': 'main 5001 cmd', 'pit-vpn': 'pit-vpn', 'iwlistener': 'iwlistener', 'esps-portal': 'esps-portal', 'npep-messaging': 'NPEP Messaging', 'icslap': 'ICSLAP', 'daishi': 'daishi', 'msi-selectplay': 'MSI Select Play', 'radix': 'RADIX', 'dxmessagebase1': 'DX Message Base Transport Protocol', 'dxmessagebase2': 'DX Message Base Transport Protocol', 'sps-tunnel': 'SPS Tunnel', 'bluelance': 'BLUELANCE', 'aap': 'AAP', 'ucentric-ds': 'ucentric-ds', 'synapse': 'Synapse Transport', 'ndsp': 'NDSP', 'ndtp': 'NDTP', 'ndnp': 'NDNP', 'flashmsg': 'Flash Msg', 'topflow': 'TopFlow', 'responselogic': 'RESPONSELOGIC', 'aironetddp': 'aironet', 'spcsdlobby': 'SPCSDLOBBY', 'rsom': 'RSOM', 'cspclmulti': 'CSPCLMULTI', 'cinegrfx-elmd': 'CINEGRFX-ELMD License Manager', 'snifferdata': 'SNIFFERDATA', 'vseconnector': 'VSECONNECTOR', 'abacus-remote': 'ABACUS-REMOTE', 'natuslink': 'NATUS LINK', 'ecovisiong6-1': 'ECOVISIONG6-1', 'citrix-rtmp': 'Citrix RTMP', 'appliance-cfg': 'APPLIANCE-CFG', 'powergemplus': 'POWERGEMPLUS', 'quicksuite': 'QUICKSUITE', 'allstorcns': 'ALLSTORCNS', 'netaspi': 'NET ASPI', 'suitcase': 'SUITCASE', 'm2ua': 'M2UA', 'caller9': 'CALLER9', 'webmethods-b2b': 'WEBMETHODS B2B', 'mao': 'mao', 'funk-dialout': 'Funk Dialout', 'tdaccess': 'TDAccess', 'blockade': 'Blockade', 'epicon': 'Epicon', 'boosterware': 'Booster Ware', 'gamelobby': 'Game Lobby', 'tksocket': 'TK Socket', 'elvin-server': 'Elvin Server\nIANA assigned this well-formed service name as a replacement for "elvin_server".', 'elvin_server': 'Elvin Server', 'elvin-client': 'Elvin Client\nIANA assigned this well-formed service name as a replacement for "elvin_client".', 'elvin_client': 'Elvin Client', 'kastenchasepad': 'Kasten Chase Pad', 'roboer': 'roboER', 'roboeda': 'roboEDA', 'cesdcdman': 'CESD Contents Delivery Management', 'cesdcdtrn': 'CESD Contents Delivery Data Transfer', 'wta-wsp-wtp-s': 'WTA-WSP-WTP-S', 'precise-vip': 'PRECISE-VIP', 'mobile-file-dl': 'MOBILE-FILE-DL', 'unimobilectrl': 'UNIMOBILECTRL', 'redstone-cpss': 'REDSTONE-CPSS', 'amx-webadmin': 'AMX-WEBADMIN', 'amx-weblinx': 'AMX-WEBLINX', 'circle-x': 'Circle-X', 'incp': 'INCP', '4-tieropmgw': '4-TIER OPM GW', '4-tieropmcli': '4-TIER OPM CLI', 'qtp': 'QTP', 'otpatch': 'OTPatch', 'pnaconsult-lm': 'PNACONSULT-LM', 'sm-pas-1': 'SM-PAS-1', 'sm-pas-2': 'SM-PAS-2', 'sm-pas-3': 'SM-PAS-3', 'sm-pas-4': 'SM-PAS-4', 'sm-pas-5': 'SM-PAS-5', 'ttnrepository': 'TTNRepository', 'megaco-h248': 'Megaco H-248', 'h248-binary': 'H248 Binary', 'fjsvmpor': 'FJSVmpor', 'gpsd': 'GPS Daemon request/response protocol', 'wap-push': 'WAP PUSH', 'wap-pushsecure': 'WAP PUSH SECURE', 'esip': 'ESIP', 'ottp': 'OTTP', 'mpfwsas': 'MPFWSAS', 'ovalarmsrv': 'OVALARMSRV', 'ovalarmsrv-cmd': 'OVALARMSRV-CMD', 'csnotify': 'CSNOTIFY', 'ovrimosdbman': 'OVRIMOSDBMAN', 'jmact5': 'JAMCT5', 'jmact6': 'JAMCT6', 'rmopagt': 'RMOPAGT', 'dfoxserver': 'DFOXSERVER', 'boldsoft-lm': 'BOLDSOFT-LM', 'iph-policy-cli': 'IPH-POLICY-CLI', 'iph-policy-adm': 'IPH-POLICY-ADM', 'bullant-srap': 'BULLANT SRAP', 'bullant-rap': 'BULLANT RAP', 'idp-infotrieve': 'IDP-INFOTRIEVE', 'ssc-agent': 'SSC-AGENT', 'enpp': 'ENPP', 'essp': 'ESSP', 'index-net': 'INDEX-NET', 'netclip': 'NetClip clipboard daemon', 'pmsm-webrctl': 'PMSM Webrctl', 'svnetworks': 'SV Networks', 'signal': 'Signal', 'fjmpcm': 'Fujitsu Configuration Management Service', 'cns-srv-port': 'CNS Server Port', 'ttc-etap-ns': 'TTCs Enterprise Test Access Protocol - NS', 'ttc-etap-ds': 'TTCs Enterprise Test Access Protocol - DS', 'h263-video': 'H.263 Video Streaming', 'wimd': 'Instant Messaging Service', 'mylxamport': 'MYLXAMPORT', 'iwb-whiteboard': 'IWB-WHITEBOARD', 'netplan': 'NETPLAN', 'hpidsadmin': 'HPIDSADMIN', 'hpidsagent': 'HPIDSAGENT', 'stonefalls': 'STONEFALLS', 'identify': 'identify', 'hippad': 'HIPPA Reporting Protocol', 'zarkov': 'ZARKOV Intelligent Agent Communication', 'boscap': 'BOSCAP', 'wkstn-mon': 'WKSTN-MON', 'avenyo': 'Avenyo Server', 'veritas-vis1': 'VERITAS VIS1', 'veritas-vis2': 'VERITAS VIS2', 'idrs': 'IDRS', 'vsixml': 'vsixml', 'rebol': 'REBOL', 'realsecure': 'Real Secure', 'remoteware-un': 'RemoteWare Unassigned', 'hbci': 'HBCI', 'remoteware-cl': 'RemoteWare Client', 'exlm-agent': 'EXLM Agent', 'remoteware-srv': 'RemoteWare Server', 'cgms': 'CGMS', 'csoftragent': 'Csoft Agent', 'geniuslm': 'Genius License Manager', 'ii-admin': 'Instant Internet Admin', 'lotusmtap': 'Lotus Mail Tracking Agent Protocol', 'midnight-tech': 'Midnight Technologies', 'pxc-ntfy': 'PXC-NTFY', 'ping-pong': 'Telerate Workstation', 'trusted-web': 'Trusted Web', 'twsdss': 'Trusted Web Client', 'gilatskysurfer': 'Gilat Sky Surfer', 'broker-service': 'Broker Service\nIANA assigned this well-formed service name as a replacement for "broker_service".', 'broker_service': 'Broker Service', 'nati-dstp': 'NATI DSTP', 'notify-srvr': 'Notify Server\nIANA assigned this well-formed service name as a replacement for "notify_srvr".', 'notify_srvr': 'Notify Server', 'event-listener': 'Event Listener\nIANA assigned this well-formed service name as a replacement for "event_listener".', 'event_listener': 'Event Listener', 'srvc-registry': 'Service Registry\nIANA assigned this well-formed service name as a replacement for "srvc_registry".', 'srvc_registry': 'Service Registry', 'resource-mgr': 'Resource Manager\nIANA assigned this well-formed service name as a replacement for "resource_mgr".', 'resource_mgr': 'Resource Manager', 'cifs': 'CIFS', 'agriserver': 'AGRI Server', 'csregagent': 'CSREGAGENT', 'magicnotes': 'magicnotes', 'nds-sso': 'NDS_SSO\nIANA assigned this well-formed service name as a replacement for "nds_sso".', 'nds_sso': 'NDS_SSO', 'arepa-raft': 'Arepa Raft', 'agri-gateway': 'AGRI Gateway', 'LiebDevMgmt-C': 'LiebDevMgmt_C\nIANA assigned this well-formed service name as a replacement for "LiebDevMgmt_C".', 'LiebDevMgmt_C': 'LiebDevMgmt_C', 'LiebDevMgmt-DM': 'LiebDevMgmt_DM\nIANA assigned this well-formed service name as a replacement for "LiebDevMgmt_DM".', 'LiebDevMgmt_DM': 'LiebDevMgmt_DM', 'LiebDevMgmt-A': 'LiebDevMgmt_A\nIANA assigned this well-formed service name as a replacement for "LiebDevMgmt_A".', 'LiebDevMgmt_A': 'LiebDevMgmt_A', 'arepa-cas': 'Arepa Cas', 'eppc': 'Remote AppleEvents/PPC Toolbox', 'redwood-chat': 'Redwood Chat', 'pdb': 'PDB', 'osmosis-aeea': 'Osmosis / Helix (R) AEEA Port', 'fjsv-gssagt': 'FJSV gssagt', 'hagel-dump': 'Hagel DUMP', 'hp-san-mgmt': 'HP SAN Mgmt', 'santak-ups': 'Santak UPS', 'cogitate': 'Cogitate, Inc.', 'tomato-springs': 'Tomato Springs', 'di-traceware': 'di-traceware', 'journee': 'journee', 'brp': 'Broadcast Routing Protocol', 'epp': 'EndPoint Protocol', 'responsenet': 'ResponseNet', 'di-ase': 'di-ase', 'hlserver': 'Fast Security HL Server', 'pctrader': 'Sierra Net PC Trader', 'nsws': 'NSWS', 'gds-db': 'gds_db\nIANA assigned this well-formed service name as a replacement for "gds_db".', 'gds_db': 'gds_db', 'galaxy-server': 'Galaxy Server', 'apc-3052': 'APC 3052', 'dsom-server': 'dsom-server', 'amt-cnf-prot': 'AMT CNF PROT', 'policyserver': 'Policy Server', 'cdl-server': 'CDL Server', 'goahead-fldup': 'GoAhead FldUp', 'videobeans': 'videobeans', 'qsoft': 'qsoft', 'interserver': 'interserver', 'cautcpd': 'cautcpd', 'ncacn-ip-tcp': 'ncacn-ip-tcp', 'ncadg-ip-udp': 'ncadg-ip-udp', 'rprt': 'Remote Port Redirector', 'slinterbase': 'slinterbase', 'netattachsdmp': 'NETATTACHSDMP', 'fjhpjp': 'FJHPJP', 'ls3bcast': 'ls3 Broadcast', 'ls3': 'ls3', 'mgxswitch': 'MGXSWITCH', 'csd-mgmt-port': 'ContinuStor Manager Port', 'csd-monitor': 'ContinuStor Monitor Port', 'vcrp': 'Very simple chatroom prot', 'xbox': 'Xbox game port', 'orbix-locator': 'Orbix 2000 Locator', 'orbix-config': 'Orbix 2000 Config', 'orbix-loc-ssl': 'Orbix 2000 Locator SSL', 'orbix-cfg-ssl': 'Orbix 2000 Locator SSL', 'lv-frontpanel': 'LV Front Panel', 'stm-pproc': 'stm_pproc\nIANA assigned this well-formed service name as a replacement for "stm_pproc".', 'stm_pproc': 'stm_pproc', 'tl1-lv': 'TL1-LV', 'tl1-raw': 'TL1-RAW', 'tl1-telnet': 'TL1-TELNET', 'itm-mccs': 'ITM-MCCS', 'pcihreq': 'PCIHReq', 'jdl-dbkitchen': 'JDL-DBKitchen', 'asoki-sma': 'Asoki SMA', 'xdtp': 'eXtensible Data Transfer Protocol', 'ptk-alink': 'ParaTek Agent Linking', 'stss': 'Senforce Session Services', '1ci-smcs': '1Ci Server Management', 'rapidmq-center': 'Jiiva RapidMQ Center', 'rapidmq-reg': 'Jiiva RapidMQ Registry', 'panasas': 'Panasas rendevous port', 'ndl-aps': 'Active Print Server Port', 'umm-port': 'Universal Message Manager', 'chmd': 'CHIPSY Machine Daemon', 'opcon-xps': 'OpCon/xps', 'hp-pxpib': 'HP PolicyXpert PIB Server', 'slslavemon': 'SoftlinK Slave Mon Port', 'autocuesmi': 'Autocue SMI Protocol', 'autocuetime': 'Autocue Time Service', 'cardbox': 'Cardbox', 'cardbox-http': 'Cardbox HTTP', 'business': 'Business protocol', 'geolocate': 'Geolocate protocol', 'personnel': 'Personnel protocol', 'sim-control': 'simulator control port', 'wsynch': 'Web Synchronous Services', 'ksysguard': 'KDE System Guard', 'cs-auth-svr': 'CS-Authenticate Svr Port', 'ccmad': 'CCM AutoDiscover', 'mctet-master': 'MCTET Master', 'mctet-gateway': 'MCTET Gateway', 'mctet-jserv': 'MCTET Jserv', 'pkagent': 'PKAgent', 'd2000kernel': 'D2000 Kernel Port', 'd2000webserver': 'D2000 Webserver Port', 'vtr-emulator': 'MTI VTR Emulator port', 'edix': 'EDI Translation Protocol', 'beacon-port': 'Beacon Port', 'a13-an': 'A13-AN Interface', 'ctx-bridge': 'CTX Bridge Port', 'ndl-aas': 'Active API Server Port', 'netport-id': 'NetPort Discovery Port', 'icpv2': 'ICPv2', 'netbookmark': 'Net Book Mark', 'ms-rule-engine': 'Microsoft Business Rule Engine Update Service', 'prism-deploy': 'Prism Deploy User Port', 'ecp': 'Extensible Code Protocol', 'peerbook-port': 'PeerBook Port', 'grubd': 'Grub Server Port', 'rtnt-1': 'rtnt-1 data packets', 'rtnt-2': 'rtnt-2 data packets', 'incognitorv': 'Incognito Rendez-Vous', 'ariliamulti': 'Arilia Multiplexor', 'vmodem': 'VMODEM', 'rdc-wh-eos': 'RDC WH EOS', 'seaview': 'Sea View', 'tarantella': 'Tarantella', 'csi-lfap': 'CSI-LFAP', 'bears-02': 'bears-02', 'rfio': 'RFIO', 'nm-game-admin': 'NetMike Game Administrator', 'nm-game-server': 'NetMike Game Server', 'nm-asses-admin': 'NetMike Assessor Administrator', 'nm-assessor': 'NetMike Assessor', 'feitianrockey': 'FeiTian Port', 's8-client-port': 'S8Cargo Client Port', 'ccmrmi': 'ON RMI Registry', 'jpegmpeg': 'JpegMpeg Port', 'indura': 'Indura Collector', 'e3consultants': 'CCC Listener Port', 'stvp': 'SmashTV Protocol', 'navegaweb-port': 'NavegaWeb Tarification', 'tip-app-server': 'TIP Application Server', 'doc1lm': 'DOC1 License Manager', 'sflm': 'SFLM', 'res-sap': 'RES-SAP', 'imprs': 'IMPRS', 'newgenpay': 'Newgenpay Engine Service', 'sossecollector': 'Quest Spotlight Out-Of-Process Collector', 'nowcontact': 'Now Contact Public Server', 'poweronnud': 'Now Up-to-Date Public Server', 'serverview-as': 'SERVERVIEW-AS', 'serverview-asn': 'SERVERVIEW-ASN', 'serverview-gf': 'SERVERVIEW-GF', 'serverview-rm': 'SERVERVIEW-RM', 'serverview-icc': 'SERVERVIEW-ICC', 'armi-server': 'ARMI Server', 't1-e1-over-ip': 'T1_E1_Over_IP', 'ars-master': 'ARS Master', 'phonex-port': 'Phonex Protocol', 'radclientport': 'Radiance UltraEdge Port', 'h2gf-w-2m': 'H2GF W.2m Handover prot.', 'mc-brk-srv': 'Millicent Broker Server', 'bmcpatrolagent': 'BMC Patrol Agent', 'bmcpatrolrnvu': 'BMC Patrol Rendezvous', 'cops-tls': 'COPS/TLS', 'apogeex-port': 'ApogeeX Port', 'smpppd': 'SuSE Meta PPPD', 'iiw-port': 'IIW Monitor User Port', 'odi-port': 'Open Design Listen Port', 'brcm-comm-port': 'Broadcom Port', 'pcle-infex': 'Pinnacle Sys InfEx Port', 'csvr-proxy': 'ConServR Proxy', 'csvr-sslproxy': 'ConServR SSL Proxy', 'firemonrcc': 'FireMon Revision Control', 'spandataport': 'SpanDataPort', 'magbind': 'Rockstorm MAG protocol', 'ncu-1': 'Network Control Unit', 'ncu-2': 'Network Control Unit', 'embrace-dp-s': 'Embrace Device Protocol Server', 'embrace-dp-c': 'Embrace Device Protocol Client', 'dmod-workspace': 'DMOD WorkSpace', 'tick-port': 'Press-sense Tick Port', 'cpq-tasksmart': 'CPQ-TaskSmart', 'intraintra': 'IntraIntra', 'netwatcher-mon': 'Network Watcher Monitor', 'netwatcher-db': 'Network Watcher DB Access', 'isns': 'iSNS Server Port', 'ironmail': 'IronMail POP Proxy', 'vx-auth-port': 'Veritas Authentication Port', 'pfu-prcallback': 'PFU PR Callback', 'netwkpathengine': 'HP OpenView Network Path Engine Server', 'flamenco-proxy': 'Flamenco Networks Proxy', 'avsecuremgmt': 'Avocent Secure Management', 'surveyinst': 'Survey Instrument', 'neon24x7': 'NEON 24X7 Mission Control', 'jmq-daemon-1': 'JMQ Daemon Port 1', 'jmq-daemon-2': 'JMQ Daemon Port 2', 'ferrari-foam': 'Ferrari electronic FOAM', 'unite': 'Unified IP & Telecom Environment', 'smartpackets': 'EMC SmartPackets', 'wms-messenger': 'WMS Messenger', 'xnm-ssl': 'XML NM over SSL', 'xnm-clear-text': 'XML NM over TCP', 'glbp': 'Gateway Load Balancing Pr', 'digivote': 'DIGIVOTE (R) Vote-Server', 'aes-discovery': 'AES Discovery Port', 'fcip-port': 'FCIP', 'isi-irp': 'ISI Industry Software IRP', 'dwnmshttp': 'DiamondWave NMS Server', 'dwmsgserver': 'DiamondWave MSG Server', 'global-cd-port': 'Global CD Port', 'sftdst-port': 'Software Distributor Port', 'vidigo': 'VidiGo communication (previous was: Delta Solutions Direct)', 'mdtp': 'MDT port', 'whisker': 'WhiskerControl main port', 'alchemy': 'Alchemy Server', 'mdap-port': 'MDAP Port', 'apparenet-ts': 'appareNet Test Server', 'apparenet-tps': 'appareNet Test Packet Sequencer', 'apparenet-as': 'appareNet Analysis Server', 'apparenet-ui': 'appareNet User Interface', 'triomotion': 'Trio Motion Control Port', 'sysorb': 'SysOrb Monitoring Server', 'sdp-id-port': 'Session Description ID', 'timelot': 'Timelot Port', 'onesaf': 'OneSAF', 'vieo-fe': 'VIEO Fabric Executive', 'dvt-system': 'DVT SYSTEM PORT', 'dvt-data': 'DVT DATA LINK', 'procos-lm': 'PROCOS LM', 'ssp': 'State Sync Protocol', 'hicp': 'HMS hicp port', 'sysscanner': 'Sys Scanner', 'dhe': 'DHE port', 'pda-data': 'PDA Data', 'pda-sys': 'PDA System', 'semaphore': 'Semaphore Connection Port', 'cpqrpm-agent': 'Compaq RPM Agent Port', 'cpqrpm-server': 'Compaq RPM Server Port', 'ivecon-port': 'Ivecon Server Port', 'epncdp2': 'Epson Network Common Devi', 'iscsi-target': 'iSCSI port', 'winshadow': 'winShadow', 'necp': 'NECP', 'ecolor-imager': 'E-Color Enterprise Imager', 'ccmail': 'cc:mail/lotus', 'altav-tunnel': 'Altav Tunnel', 'ns-cfg-server': 'NS CFG Server', 'ibm-dial-out': 'IBM Dial Out', 'msft-gc': 'Microsoft Global Catalog', 'msft-gc-ssl': 'Microsoft Global Catalog with LDAP/SSL', 'verismart': 'Verismart', 'csoft-prev': 'CSoft Prev Port', 'user-manager': 'Fujitsu User Manager', 'sxmp': 'Simple Extensible Multiplexed Protocol', 'ordinox-server': 'Ordinox Server', 'samd': 'SAMD', 'maxim-asics': 'Maxim ASICs', 'awg-proxy': 'AWG Proxy', 'lkcmserver': 'LKCM Server', 'admind': 'admind', 'vs-server': 'VS Server', 'sysopt': 'SYSOPT', 'datusorb': 'Datusorb', 'Apple Remote Desktop (Net Assistant)': 'Net Assistant', '4talk': '4Talk', 'plato': 'Plato', 'e-net': 'E-Net', 'directvdata': 'DIRECTVDATA', 'cops': 'COPS', 'enpc': 'ENPC', 'caps-lm': 'CAPS LOGISTICS TOOLKIT - LM', 'sah-lm': 'S A Holditch & Associates - LM', 'cart-o-rama': 'Cart O Rama', 'fg-fps': 'fg-fps', 'fg-gip': 'fg-gip', 'dyniplookup': 'Dynamic IP Lookup', 'rib-slm': 'Rib License Manager', 'cytel-lm': 'Cytel License Manager', 'deskview': 'DeskView', 'pdrncs': 'pdrncs', 'mcs-fastmail': 'MCS Fastmail', 'opsession-clnt': 'OP Session Client', 'opsession-srvr': 'OP Session Server', 'odette-ftp': 'ODETTE-FTP', 'mysql': 'MySQL', 'opsession-prxy': 'OP Session Proxy', 'tns-server': 'TNS Server', 'tns-adv': 'TNS ADV', 'dyna-access': 'Dyna Access', 'mcns-tel-ret': 'MCNS Tel Ret', 'appman-server': 'Application Management Server', 'uorb': 'Unify Object Broker', 'uohost': 'Unify Object Host', 'cdid': 'CDID', 'aicc-cmi': 'AICC/CMI', 'vsaiport': 'VSAI PORT', 'ssrip': 'Swith to Swith Routing Information Protocol', 'sdt-lmd': 'SDT License Manager', 'officelink2000': 'Office Link 2000', 'vnsstr': 'VNSSTR', 'sftu': 'SFTU', 'bbars': 'BBARS', 'egptlm': 'Eaglepoint License Manager', 'hp-device-disc': 'HP Device Disc', 'mcs-calypsoicf': 'MCS Calypso ICF', 'mcs-messaging': 'MCS Messaging', 'mcs-mailsvr': 'MCS Mail Server', 'dec-notes': 'DEC Notes', 'directv-web': 'Direct TV Webcasting', 'directv-soft': 'Direct TV Software Updates', 'directv-tick': 'Direct TV Tickers', 'directv-catlg': 'Direct TV Data Catalog', 'anet-b': 'OMF data b', 'anet-l': 'OMF data l', 'anet-m': 'OMF data m', 'anet-h': 'OMF data h', 'webtie': 'WebTIE', 'ms-cluster-net': 'MS Cluster Net', 'bnt-manager': 'BNT Manager', 'influence': 'Influence', 'trnsprntproxy': 'Trnsprnt Proxy', 'phoenix-rpc': 'Phoenix RPC', 'pangolin-laser': 'Pangolin Laser', 'chevinservices': 'Chevin Services', 'findviatv': 'FINDVIATV', 'btrieve': 'Btrieve port', 'ssql': 'Scalable SQL', 'fatpipe': 'FATPIPE', 'suitjd': 'SUITJD', 'ordinox-dbase': 'Ordinox Dbase', 'upnotifyps': 'UPNOTIFYPS', 'adtech-test': 'Adtech Test IP', 'mpsysrmsvr': 'Mp Sys Rmsvr', 'wg-netforce': 'WG NetForce', 'kv-server': 'KV Server', 'kv-agent': 'KV Agent', 'dj-ilm': 'DJ ILM', 'nati-vi-server': 'NATI Vi Server', 'creativeserver': 'Creative Server', 'contentserver': 'Content Server', 'creativepartnr': 'Creative Partner', 'tip2': 'TIP 2', 'lavenir-lm': 'Lavenir License Manager', 'cluster-disc': 'Cluster Disc', 'vsnm-agent': 'VSNM Agent', 'cdbroker': 'CD Broker', 'cogsys-lm': 'Cogsys Network License Manager', 'wsicopy': 'WSICOPY', 'socorfs': 'SOCORFS', 'sns-channels': 'SNS Channels', 'geneous': 'Geneous', 'fujitsu-neat': 'Fujitsu Network Enhanced Antitheft function', 'esp-lm': 'Enterprise Software Products License Manager', 'hp-clic': 'Hardware Management', 'qnxnetman': 'qnxnetman', 'gprs-sig': 'GPRS SIG', 'backroomnet': 'Back Room Net', 'cbserver': 'CB Server', 'ms-wbt-server': 'MS WBT Server', 'dsc': 'Distributed Service Coordinator', 'savant': 'SAVANT', 'efi-lm': 'EFI License Management', 'd2k-tapestry1': 'D2K Tapestry Client to Server', 'd2k-tapestry2': 'D2K Tapestry Server to Server', 'dyna-lm': 'Dyna License Manager (Elam)', 'printer-agent': 'Printer Agent\nIANA assigned this well-formed service name as a replacement for "printer_agent".', 'printer_agent': 'Printer Agent', 'cloanto-lm': 'Cloanto License Manager', 'mercantile': 'Mercantile', 'csms': 'CSMS', 'csms2': 'CSMS2', 'filecast': 'filecast', 'fxaengine-net': 'FXa Engine Network Port', 'nokia-ann-ch1': 'Nokia Announcement ch 1', 'nokia-ann-ch2': 'Nokia Announcement ch 2', 'ldap-admin': 'LDAP admin server port', 'BESApi': 'BES Api Port', 'networklens': 'NetworkLens Event Port', 'networklenss': 'NetworkLens SSL Event', 'biolink-auth': 'BioLink Authenteon server', 'xmlblaster': 'xmlBlaster', 'svnet': 'SpecView Networking', 'wip-port': 'BroadCloud WIP Port', 'bcinameservice': 'BCI Name Service', 'commandport': 'AirMobile IS Command Port', 'csvr': 'ConServR file translation', 'rnmap': 'Remote nmap', 'softaudit': 'ISogon SoftAudit', 'ifcp-port': 'iFCP User Port', 'bmap': 'Bull Apprise portmapper', 'rusb-sys-port': 'Remote USB System Port', 'xtrm': 'xTrade Reliable Messaging', 'xtrms': 'xTrade over TLS/SSL', 'agps-port': 'AGPS Access Port', 'arkivio': 'Arkivio Storage Protocol', 'websphere-snmp': 'WebSphere SNMP', 'twcss': '2Wire CSS', 'gcsp': 'GCSP user port', 'ssdispatch': 'Scott Studios Dispatch', 'ndl-als': 'Active License Server Port', 'osdcp': 'Secure Device Protocol', 'opnet-smp': 'OPNET Service Management Platform', 'opencm': 'OpenCM Server', 'pacom': 'Pacom Security User Port', 'gc-config': 'GuardControl Exchange Protocol', 'autocueds': 'Autocue Directory Service', 'spiral-admin': 'Spiralcraft Admin', 'hri-port': 'HRI Interface Port', 'ans-console': 'Net Steward Mgmt Console', 'connect-client': 'OC Connect Client', 'connect-server': 'OC Connect Server', 'ov-nnm-websrv': 'OpenView Network Node Manager WEB Server', 'denali-server': 'Denali Server', 'monp': 'Media Object Network', '3comfaxrpc': '3Com FAX RPC port', 'directnet': 'DirectNet IM System', 'dnc-port': 'Discovery and Net Config', 'hotu-chat': 'HotU Chat', 'castorproxy': 'CAStorProxy', 'asam': 'ASAM Services', 'sabp-signal': 'SABP-Signalling Protocol', 'pscupd': 'PSC Update Port', 'mira': 'Apple Remote Access Protocol', 'prsvp': 'RSVP Port', 'vat': 'VAT default data', 'vat-control': 'VAT default control', 'd3winosfi': 'D3WinOSFI', 'integral': 'TIP Integral', 'edm-manager': 'EDM Manger', 'edm-stager': 'EDM Stager', 'edm-std-notify': 'EDM STD Notify', 'edm-adm-notify': 'EDM ADM Notify', 'edm-mgr-sync': 'EDM MGR Sync', 'edm-mgr-cntrl': 'EDM MGR Cntrl', 'workflow': 'WORKFLOW', 'rcst': 'RCST', 'ttcmremotectrl': 'TTCM Remote Controll', 'pluribus': 'Pluribus', 'jt400': 'jt400', 'jt400-ssl': 'jt400-ssl', 'jaugsremotec-1': 'JAUGS N-G Remotec 1', 'jaugsremotec-2': 'JAUGS N-G Remotec 2', 'ttntspauto': 'TSP Automation', 'genisar-port': 'Genisar Comm Port', 'nppmp': 'NVIDIA Mgmt Protocol', 'ecomm': 'eComm link port', 'stun': 'Session Traversal Utilities for NAT (STUN) port', 'turn': 'TURN over UDP', 'stun-behavior': 'STUN Behavior Discovery over UDP', 'twrpc': '2Wire RPC', 'plethora': 'Secure Virtual Workspace', 'cleanerliverc': 'CleanerLive remote ctrl', 'vulture': 'Vulture Monitoring System', 'slim-devices': 'Slim Devices Protocol', 'gbs-stp': 'GBS SnapTalk Protocol', 'celatalk': 'CelaTalk', 'ifsf-hb-port': 'IFSF Heartbeat Port', 'ltcudp': 'LISA UDP Transfer Channel', 'fs-rh-srv': 'FS Remote Host Server', 'dtp-dia': 'DTP/DIA', 'colubris': 'Colubris Management Port', 'swr-port': 'SWR Port', 'tvdumtray-port': 'TVDUM Tray Port', 'nut': 'Network UPS Tools', 'ibm3494': 'IBM 3494', 'seclayer-tcp': 'securitylayer over tcp', 'seclayer-tls': 'securitylayer over tls', 'ipether232port': 'ipEther232Port', 'dashpas-port': 'DASHPAS user port', 'sccip-media': 'SccIP Media', 'rtmp-port': 'RTMP Port', 'isoft-p2p': 'iSoft-P2P', 'avinstalldisc': 'Avocent Install Discovery', 'lsp-ping': 'MPLS LSP-echo Port', 'ironstorm': 'IronStorm game server', 'ccmcomm': 'CCM communications port', 'apc-3506': 'APC 3506', 'nesh-broker': 'Nesh Broker Port', 'interactionweb': 'Interaction Web', 'vt-ssl': 'Virtual Token SSL Port', 'xss-port': 'XSS Port', 'webmail-2': 'WebMail/2', 'aztec': 'Aztec Distribution Port', 'arcpd': 'Adaptec Remote Protocol', 'must-p2p': 'MUST Peer to Peer', 'must-backplane': 'MUST Backplane', 'smartcard-port': 'Smartcard Port', '802-11-iapp': 'IEEE 802.11 WLANs WG IAPP', 'artifact-msg': 'Artifact Message Server', 'galileo': 'Netvion Galileo Port', 'galileolog': 'Netvion Galileo Log Port', 'mc3ss': 'Telequip Labs MC3SS', 'nssocketport': 'DO over NSSocketPort', 'odeumservlink': 'Odeum Serverlink', 'ecmport': 'ECM Server port', 'eisport': 'EIS Server port', 'starquiz-port': 'starQuiz Port', 'beserver-msg-q': 'VERITAS Backup Exec Server', 'jboss-iiop': 'JBoss IIOP', 'jboss-iiop-ssl': 'JBoss IIOP/SSL', 'gf': 'Grid Friendly', 'joltid': 'Joltid', 'raven-rmp': 'Raven Remote Management Control', 'raven-rdp': 'Raven Remote Management Data', 'urld-port': 'URL Daemon Port', 'ms-la': 'MS-LA', 'snac': 'SNAC', 'ni-visa-remote': 'Remote NI-VISA port', 'ibm-diradm': 'IBM Directory Server', 'ibm-diradm-ssl': 'IBM Directory Server SSL', 'pnrp-port': 'PNRP User Port', 'voispeed-port': 'VoiSpeed Port', 'hacl-monitor': 'HA cluster monitor', 'qftest-lookup': 'qftest Lookup Port', 'teredo': 'Teredo Port', 'camac': 'CAMAC equipment', 'symantec-sim': 'Symantec SIM', 'interworld': 'Interworld', 'tellumat-nms': 'Tellumat MDR NMS', 'ssmpp': 'Secure SMPP', 'apcupsd': 'Apcupsd Information Port', 'taserver': 'TeamAgenda Server Port', 'rbr-discovery': 'Red Box Recorder ADP', 'questnotify': 'Quest Notification Server', 'razor': "Vipul's Razor", 'sky-transport': 'Sky Transport Protocol', 'personalos-001': 'PersonalOS Comm Port', 'mcp-port': 'MCP user port', 'cctv-port': 'CCTV control port', 'iniserve-port': 'INIServe port', 'bmc-onekey': 'BMC-OneKey', 'sdbproxy': 'SDBProxy', 'watcomdebug': 'Watcom Debug', 'esimport': 'Electromed SIM port', 'oap': 'Object Access Protocol', 'oap-s': 'Object Access Protocol over SSL', 'mbg-ctrl': 'Meinberg Control Service', 'mccwebsvr-port': 'MCC Web Server Port', 'megardsvr-port': 'MegaRAID Server Port', 'megaregsvrport': 'Registration Server Port', 'tag-ups-1': 'Advantage Group UPS Suite', 'dmaf-caster': 'DMAF Caster', 'ccm-port': 'Coalsere CCM Port', 'cmc-port': 'Coalsere CMC Port', 'config-port': 'Configuration Port', 'data-port': 'Data Port', 'ttat3lb': 'Tarantella Load Balancing', 'nati-svrloc': 'NATI-ServiceLocator', 'kfxaclicensing': 'Ascent Capture Licensing', 'press': 'PEG PRESS Server', 'canex-watch': 'CANEX Watch System', 'u-dbap': 'U-DBase Access Protocol', 'emprise-lls': 'Emprise License Server', 'emprise-lsc': 'License Server Console', 'p2pgroup': 'Peer to Peer Grouping', 'sentinel': 'Sentinel Server', 'isomair': 'isomair', 'wv-csp-sms': 'WV CSP SMS Binding', 'gtrack-server': 'LOCANIS G-TRACK Server', 'gtrack-ne': 'LOCANIS G-TRACK NE Port', 'bpmd': 'BP Model Debugger', 'mediaspace': 'MediaSpace', 'shareapp': 'ShareApp', 'iw-mmogame': 'Illusion Wireless MMOG', 'a14': 'A14 (AN-to-SC/MM)', 'a15': 'A15 (AN-to-AN)', 'quasar-server': 'Quasar Accounting Server', 'trap-daemon': 'text relay-answer', 'visinet-gui': 'Visinet Gui', 'infiniswitchcl': 'InfiniSwitch Mgr Client', 'int-rcv-cntrl': 'Integrated Rcvr Control', 'bmc-jmx-port': 'BMC JMX Port', 'comcam-io': 'ComCam IO Port', 'splitlock': 'Splitlock Server', 'precise-i3': 'Precise I3', 'trendchip-dcp': 'Trendchip control protocol', 'cpdi-pidas-cm': 'CPDI PIDAS Connection Mon', 'echonet': 'ECHONET', 'six-degrees': 'Six Degrees Port', 'hp-dataprotect': 'HP Data Protector', 'alaris-disc': 'Alaris Device Discovery', 'sigma-port': 'Satchwell Sigma', 'start-network': 'Start Messaging Network', 'cd3o-protocol': 'cd3o Control Protocol', 'sharp-server': 'ATI SHARP Logic Engine', 'aairnet-1': 'AAIR-Network 1', 'aairnet-2': 'AAIR-Network 2', 'ep-pcp': 'EPSON Projector Control Port', 'ep-nsp': 'EPSON Network Screen Port', 'ff-lr-port': 'FF LAN Redundancy Port', 'haipe-discover': 'HAIPIS Dynamic Discovery', 'dist-upgrade': 'Distributed Upgrade Port', 'volley': 'Volley', 'bvcdaemon-port': 'bvControl Daemon', 'jamserverport': 'Jam Server Port', 'ept-machine': 'EPT Machine Interface', 'escvpnet': 'ESC/VP.net', 'cs-remote-db': 'C&S Remote Database Port', 'cs-services': 'C&S Web Services Port', 'distcc': 'distributed compiler', 'wacp': 'Wyrnix AIS port', 'hlibmgr': 'hNTSP Library Manager', 'sdo': 'Simple Distributed Objects', 'servistaitsm': 'SerVistaITSM', 'scservp': 'Customer Service Port', 'ehp-backup': 'EHP Backup Protocol', 'xap-ha': 'Extensible Automation', 'netplay-port1': 'Netplay Port 1', 'netplay-port2': 'Netplay Port 2', 'juxml-port': 'Juxml Replication port', 'audiojuggler': 'AudioJuggler', 'ssowatch': 'ssowatch', 'cyc': 'Cyc', 'xss-srv-port': 'XSS Server Port', 'splitlock-gw': 'Splitlock Gateway', 'fjcp': 'Fujitsu Cooperation Port', 'nmmp': 'Nishioka Miyuki Msg Protocol', 'prismiq-plugin': 'PRISMIQ VOD plug-in', 'xrpc-registry': 'XRPC Registry', 'vxcrnbuport': 'VxCR NBU Default Port', 'tsp': 'Tunnel Setup Protocol', 'vaprtm': 'VAP RealTime Messenger', 'abatemgr': 'ActiveBatch Exec Agent', 'abatjss': 'ActiveBatch Job Scheduler', 'immedianet-bcn': 'ImmediaNet Beacon', 'ps-ams': 'PlayStation AMS (Secure)', 'apple-sasl': 'Apple SASL', 'can-nds-ssl': 'IBM Tivoli Directory Service using SSL', 'can-ferret-ssl': 'IBM Tivoli Directory Service using SSL', 'pserver': 'pserver', 'dtp': 'DIRECWAY Tunnel Protocol', 'ups-engine': 'UPS Engine Port', 'ent-engine': 'Enterprise Engine Port', 'eserver-pap': 'IBM EServer PAP', 'infoexch': 'IBM Information Exchange', 'dell-rm-port': 'Dell Remote Management', 'casanswmgmt': 'CA SAN Switch Management', 'smile': 'SMILE TCP/UDP Interface', 'efcp': 'e Field Control (EIBnet)', 'lispworks-orb': 'LispWorks ORB', 'mediavault-gui': 'Openview Media Vault GUI', 'wininstall-ipc': 'WinINSTALL IPC Port', 'calltrax': 'CallTrax Data Port', 'va-pacbase': 'VisualAge Pacbase server', 'roverlog': 'RoverLog IPC', 'ipr-dglt': 'DataGuardianLT', 'Escale (Newton Dock)': 'Newton Dock', 'npds-tracker': 'NPDS Tracker', 'bts-x73': 'BTS X73 Port', 'cas-mapi': 'EMC SmartPackets-MAPI', 'bmc-ea': 'BMC EDV/EA', 'faxstfx-port': 'FAXstfX', 'dsx-agent': 'DS Expert Agent', 'tnmpv2': 'Trivial Network Management', 'simple-push': 'simple-push', 'simple-push-s': 'simple-push Secure', 'daap': 'Digital Audio Access Protocol (iTunes)', 'svn': 'Subversion', 'magaya-network': 'Magaya Network Port', 'intelsync': 'Brimstone IntelSync', 'bmc-data-coll': 'BMC Data Collection', 'telnetcpcd': 'Telnet Com Port Control', 'nw-license': 'NavisWorks Licnese System', 'sagectlpanel': 'SAGECTLPANEL', 'kpn-icw': 'Internet Call Waiting', 'lrs-paging': 'LRS NetPage', 'netcelera': 'NetCelera', 'ws-discovery': 'Web Service Discovery', 'adobeserver-3': 'Adobe Server 3', 'adobeserver-4': 'Adobe Server 4', 'adobeserver-5': 'Adobe Server 5', 'rt-event': 'Real-Time Event Port', 'rt-event-s': 'Real-Time Event Secure Port', 'sun-as-iiops': 'Sun App Svr - Naming', 'ca-idms': 'CA-IDMS Server', 'portgate-auth': 'PortGate Authentication', 'edb-server2': 'EBD Server 2', 'sentinel-ent': 'Sentinel Enterprise', 'tftps': 'TFTP over TLS', 'delos-dms': 'DELOS Direct Messaging', 'anoto-rendezv': 'Anoto Rendezvous Port', 'wv-csp-sms-cir': 'WV CSP SMS CIR Channel', 'wv-csp-udp-cir': 'WV CSP UDP/IP CIR Channel', 'opus-services': 'OPUS Server Port', 'itelserverport': 'iTel Server Port', 'ufastro-instr': 'UF Astro. Instr. Services', 'xsync': 'Xsync', 'xserveraid': 'Xserve RAID', 'sychrond': 'Sychron Service Daemon', 'blizwow': 'World of Warcraft', 'na-er-tip': 'Netia NA-ER Port', 'array-manager': 'Xyartex Array Manager', 'e-mdu': 'Ericsson Mobile Data Unit', 'e-woa': 'Ericsson Web on Air', 'fksp-audit': 'Fireking Audit Port', 'client-ctrl': 'Client Control', 'smap': 'Service Manager', 'm-wnn': 'Mobile Wnn', 'multip-msg': 'Multipuesto Msg Port', 'synel-data': 'Synel Data Collection Port', 'pwdis': 'Password Distribution', 'rs-rmi': 'RealSpace RMI', 'versatalk': 'versaTalk Server Port', 'launchbird-lm': 'Launchbird LicenseManager', 'heartbeat': 'Heartbeat Protocol', 'wysdma': 'WysDM Agent', 'cst-port': 'CST - Configuration & Service Tracker', 'ipcs-command': 'IP Control Systems Ltd.', 'sasg': 'SASG', 'gw-call-port': 'GWRTC Call Port', 'linktest': 'LXPRO.COM LinkTest', 'linktest-s': 'LXPRO.COM LinkTest SSL', 'webdata': 'webData', 'cimtrak': 'CimTrak', 'cbos-ip-port': 'CBOS/IP ncapsalatoin port', 'gprs-cube': 'CommLinx GPRS Cube', 'vipremoteagent': 'Vigil-IP RemoteAgent', 'nattyserver': 'NattyServer Port', 'timestenbroker': 'TimesTen Broker Port', 'sas-remote-hlp': 'SAS Remote Help Server', 'canon-capt': 'Canon CAPT Port', 'grf-port': 'GRF Server Port', 'apw-registry': 'apw RMI registry', 'exapt-lmgr': 'Exapt License Manager', 'adtempusclient': 'adTEmpus Client', 'gsakmp': 'gsakmp port', 'gbs-smp': 'GBS SnapMail Protocol', 'xo-wave': 'XO Wave Control Port', 'mni-prot-rout': 'MNI Protected Routing', 'rtraceroute': 'Remote Traceroute', 'listmgr-port': 'ListMGR Port', 'rblcheckd': 'rblcheckd server daemon', 'haipe-otnk': 'HAIPE Network Keying', 'cindycollab': 'Cinderella Collaboration', 'paging-port': 'RTP Paging Port', 'ctp': 'Chantry Tunnel Protocol', 'ctdhercules': 'ctdhercules', 'zicom': 'ZICOM', 'ispmmgr': 'ISPM Manager Port', 'dvcprov-port': 'Device Provisioning Port', 'jibe-eb': 'Jibe EdgeBurst', 'c-h-it-port': 'Cutler-Hammer IT Port', 'cognima': 'Cognima Replication', 'nnp': 'Nuzzler Network Protocol', 'abcvoice-port': 'ABCvoice server port', 'iso-tp0s': 'Secure ISO TP0 port', 'bim-pem': 'Impact Mgr./PEM Gateway', 'bfd-control': 'BFD Control Protocol', 'bfd-echo': 'BFD Echo Protocol', 'upstriggervsw': 'VSW Upstrigger port', 'fintrx': 'Fintrx', 'isrp-port': 'SPACEWAY Routing port', 'remotedeploy': 'RemoteDeploy Administration Port [July 2003]', 'quickbooksrds': 'QuickBooks RDS', 'tvnetworkvideo': 'TV NetworkVideo Data port', 'sitewatch': 'e-Watch Corporation SiteWatch', 'dcsoftware': 'DataCore Software', 'jaus': 'JAUS Robots', 'myblast': 'myBLAST Mekentosj port', 'spw-dialer': 'Spaceway Dialer', 'idps': 'idps', 'minilock': 'Minilock', 'radius-dynauth': 'RADIUS Dynamic Authorization', 'pwgpsi': 'Print Services Interface', 'ibm-mgr': 'ibm manager service', 'vhd': 'VHD', 'soniqsync': 'SoniqSync', 'iqnet-port': 'Harman IQNet Port', 'tcpdataserver': 'ThorGuard Server Port', 'wsmlb': 'Remote System Manager', 'spugna': 'SpuGNA Communication Port', 'sun-as-iiops-ca': 'Sun App Svr-IIOPClntAuth', 'apocd': 'Java Desktop System Configuration Agent', 'wlanauth': 'WLAN AS server', 'amp': 'AMP', 'neto-wol-server': 'netO WOL Server', 'rap-ip': 'Rhapsody Interface Protocol', 'neto-dcs': 'netO DCS', 'lansurveyorxml': 'LANsurveyor XML', 'sunlps-http': 'Sun Local Patch Server', 'tapeware': 'Yosemite Tech Tapeware', 'crinis-hb': 'Crinis Heartbeat', 'epl-slp': 'EPL Sequ Layer Protocol', 'scp': 'Siemens AuD SCP', 'pmcp': 'ATSC PMCP Standard', 'acp-discovery': 'Compute Pool Discovery', 'acp-conduit': 'Compute Pool Conduit', 'acp-policy': 'Compute Pool Policy', 'ffserver': 'Antera FlowFusion Process Simulation', 'warmux': 'WarMUX game server', 'netmpi': 'Netadmin Systems MPI service', 'neteh': 'Netadmin Systems Event Handler', 'neteh-ext': 'Netadmin Systems Event Handler External', 'cernsysmgmtagt': 'Cerner System Management Agent', 'dvapps': 'Docsvault Application Service', 'xxnetserver': 'xxNETserver', 'aipn-auth': 'AIPN LS Authentication', 'spectardata': 'Spectar Data Stream Service', 'spectardb': 'Spectar Database Rights Service', 'markem-dcp': 'MARKEM NEXTGEN DCP', 'mkm-discovery': 'MARKEM Auto-Discovery', 'sos': 'Scito Object Server', 'amx-rms': 'AMX Resource Management Suite', 'flirtmitmir': 'www.FlirtMitMir.de', 'zfirm-shiprush3': 'Z-Firm ShipRush v3', 'nhci': 'NHCI status port', 'quest-agent': 'Quest Common Agent', 'rnm': 'RNM', 'v-one-spp': 'V-ONE Single Port Proxy', 'an-pcp': 'Astare Network PCP', 'msfw-control': 'MS Firewall Control', 'item': 'IT Environmental Monitor', 'spw-dnspreload': 'SPACEWAY DNS Prelaod', 'qtms-bootstrap': 'QTMS Bootstrap Protocol', 'spectraport': 'SpectraTalk Port', 'sse-app-config': 'SSE App Configuration', 'sscan': 'SONY scanning protocol', 'stryker-com': 'Stryker Comm Port', 'opentrac': 'OpenTRAC', 'informer': 'INFORMER', 'trap-port': 'Trap Port', 'trap-port-mom': 'Trap Port MOM', 'nav-port': 'Navini Port', 'sasp': 'Server/Application State Protocol (SASP)', 'winshadow-hd': 'winShadow Host Discovery', 'giga-pocket': 'GIGA-POCKET', 'asap-udp': 'asap udp port', 'xpl': 'xpl automation protocol', 'dzdaemon': 'Sun SDViz DZDAEMON Port', 'dzoglserver': 'Sun SDViz DZOGLSERVER Port', 'ovsam-mgmt': 'hp OVSAM MgmtServer Disco', 'ovsam-d-agent': 'hp OVSAM HostAgent Disco', 'avocent-adsap': 'Avocent DS Authorization', 'oem-agent': 'OEM Agent', 'fagordnc': 'fagordnc', 'sixxsconfig': 'SixXS Configuration', 'pnbscada': 'PNBSCADA', 'dl-agent': 'DirectoryLockdown Agent\nIANA assigned this well-formed service name as a replacement for "dl_agent".', 'dl_agent': 'DirectoryLockdown Agent', 'xmpcr-interface': 'XMPCR Interface Port', 'fotogcad': 'FotoG CAD interface', 'appss-lm': 'appss license manager', 'igrs': 'IGRS', 'idac': 'Data Acquisition and Control', 'msdts1': 'DTS Service Port', 'vrpn': 'VR Peripheral Network', 'softrack-meter': 'SofTrack Metering', 'topflow-ssl': 'TopFlow SSL', 'nei-management': 'NEI management port', 'ciphire-data': 'Ciphire Data Transport', 'ciphire-serv': 'Ciphire Services', 'dandv-tester': 'D and V Tester Control Port', 'ndsconnect': 'Niche Data Server Connect', 'rtc-pm-port': 'Oracle RTC-PM port', 'pcc-image-port': 'PCC-image-port', 'cgi-starapi': 'CGI StarAPI Server', 'syam-agent': 'SyAM Agent Port', 'syam-smc': 'SyAm SMC Service Port', 'sdo-tls': 'Simple Distributed Objects over TLS', 'sdo-ssh': 'Simple Distributed Objects over SSH', 'senip': 'IAS, Inc. SmartEye NET Internet Protocol', 'itv-control': 'ITV Port', 'udt-os': 'Unidata UDT OS\nIANA assigned this well-formed service name as a replacement for "udt_os".', 'udt_os': 'Unidata UDT OS', 'nimsh': 'NIM Service Handler', 'nimaux': 'NIMsh Auxiliary Port', 'charsetmgr': 'CharsetMGR', 'omnilink-port': 'Arnet Omnilink Port', 'mupdate': 'Mailbox Update (MUPDATE) protocol', 'topovista-data': 'TopoVista elevation data', 'imoguia-port': 'Imoguia Port', 'hppronetman': 'HP Procurve NetManagement', 'surfcontrolcpa': 'SurfControl CPA', 'prnrequest': 'Printer Request Port', 'prnstatus': 'Printer Status Port', 'gbmt-stars': 'Global Maintech Stars', 'listcrt-port': 'ListCREATOR Port', 'listcrt-port-2': 'ListCREATOR Port 2', 'agcat': 'Auto-Graphics Cataloging', 'wysdmc': 'WysDM Controller', 'aftmux': 'AFT multiples port', 'pktcablemmcops': 'PacketCableMultimediaCOPS', 'hyperip': 'HyperIP', 'exasoftport1': 'Exasoft IP Port', 'herodotus-net': 'Herodotus Net', 'sor-update': 'Soronti Update Port', 'symb-sb-port': 'Symbian Service Broker', 'mpl-gprs-port': 'MPL_GPRS_Port', 'zmp': 'Zoran Media Port', 'winport': 'WINPort', 'natdataservice': 'ScsTsr', 'netboot-pxe': 'PXE NetBoot Manager', 'smauth-port': 'AMS Port', 'syam-webserver': 'Syam Web Server Port', 'msr-plugin-port': 'MSR Plugin Port', 'dyn-site': 'Dynamic Site System', 'plbserve-port': 'PL/B App Server User Port', 'sunfm-port': 'PL/B File Manager Port', 'sdp-portmapper': 'SDP Port Mapper Protocol', 'mailprox': 'Mailprox', 'dvbservdsc': 'DVB Service Discovery', 'dbcontrol-agent': 'Oracel dbControl Agent po\nIANA assigned this well-formed service name as a replacement for "dbcontrol_agent".', 'dbcontrol_agent': 'Oracel dbControl Agent po', 'aamp': 'Anti-virus Application Management Port', 'xecp-node': 'XeCP Node Service', 'homeportal-web': 'Home Portal Web Server', 'srdp': 'satellite distribution', 'tig': 'TetraNode Ip Gateway', 'sops': 'S-Ops Management', 'emcads': 'EMCADS Server Port', 'backupedge': 'BackupEDGE Server', 'ccp': 'Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices', 'apdap': 'Anton Paar Device Administration Protocol', 'drip': 'Dynamic Routing Information Protocol', 'namemunge': 'Name Munging', 'pwgippfax': 'PWG IPP Facsimile', 'i3-sessionmgr': 'I3 Session Manager', 'xmlink-connect': 'Eydeas XMLink Connect', 'adrep': 'AD Replication RPC', 'p2pcommunity': 'p2pCommunity', 'gvcp': 'GigE Vision Control', 'mqe-broker': 'MQEnterprise Broker', 'mqe-agent': 'MQEnterprise Agent', 'treehopper': 'Tree Hopper Networking', 'bess': 'Bess Peer Assessment', 'proaxess': 'ProAxess Server', 'sbi-agent': 'SBI Agent Protocol', 'thrp': 'Teran Hybrid Routing Protocol', 'sasggprs': 'SASG GPRS', 'ati-ip-to-ncpe': 'Avanti IP to NCPE API', 'bflckmgr': 'BuildForge Lock Manager', 'ppsms': 'PPS Message Service', 'ianywhere-dbns': 'iAnywhere DBNS', 'landmarks': 'Landmark Messages', 'lanrevagent': 'LANrev Agent', 'lanrevserver': 'LANrev Server', 'iconp': 'ict-control Protocol', 'progistics': 'ConnectShip Progistics', 'citysearch': 'Remote Applicant Tracking Service', 'airshot': 'Air Shot', 'opswagent': 'Opsware Agent', 'opswmanager': 'Opsware Manager', 'secure-cfg-svr': 'Secured Configuration Server', 'smwan': 'Smith Micro Wide Area Network Service', 'acms': 'Aircraft Cabin Management System', 'starfish': 'Starfish System Admin', 'eis': 'ESRI Image Server', 'eisp': 'ESRI Image Service', 'mapper-nodemgr': 'MAPPER network node manager', 'mapper-mapethd': 'MAPPER TCP/IP server', 'mapper-ws-ethd': 'MAPPER workstation server\nIANA assigned this well-formed service name as a replacement for "mapper-ws_ethd".', 'mapper-ws_ethd': 'MAPPER workstation server', 'centerline': 'Centerline', 'dcs-config': 'DCS Configuration Port', 'bv-queryengine': 'BindView-Query Engine', 'bv-is': 'BindView-IS', 'bv-smcsrv': 'BindView-SMCServer', 'bv-ds': 'BindView-DirectoryServer', 'bv-agent': 'BindView-Agent', 'iss-mgmt-ssl': 'ISS Management Svcs SSL', 'abcsoftware': 'abcsoftware-01', 'agentsease-db': 'aes_db', 'dnx': 'Distributed Nagios Executor Service', 'nvcnet': 'Norman distributes scanning service', 'terabase': 'Terabase', 'newoak': 'NewOak', 'pxc-spvr-ft': 'pxc-spvr-ft', 'pxc-splr-ft': 'pxc-splr-ft', 'pxc-roid': 'pxc-roid', 'pxc-pin': 'pxc-pin', 'pxc-spvr': 'pxc-spvr', 'pxc-splr': 'pxc-splr', 'netcheque': 'NetCheque accounting', 'chimera-hwm': 'Chimera HWM', 'samsung-unidex': 'Samsung Unidex', 'altserviceboot': 'Alternate Service Boot', 'pda-gate': 'PDA Gate', 'acl-manager': 'ACL Manager', 'taiclock': 'TAICLOCK', 'talarian-mcast1': 'Talarian Mcast', 'talarian-mcast2': 'Talarian Mcast', 'talarian-mcast3': 'Talarian Mcast', 'talarian-mcast4': 'Talarian Mcast', 'talarian-mcast5': 'Talarian Mcast', 'trap': 'TRAP Port', 'nexus-portal': 'Nexus Portal', 'dnox': 'DNOX', 'esnm-zoning': 'ESNM Zoning Port', 'tnp1-port': 'TNP1 User Port', 'partimage': 'Partition Image Port', 'as-debug': 'Graphical Debug Server', 'bxp': 'bitxpress', 'dtserver-port': 'DTServer Port', 'ip-qsig': 'IP Q signaling protocol', 'jdmn-port': 'Accell/JSP Daemon Port', 'suucp': 'UUCP over SSL', 'vrts-auth-port': 'VERITAS Authorization Service', 'sanavigator': 'SANavigator Peer Port', 'ubxd': 'Ubiquinox Daemon', 'wap-push-http': 'WAP Push OTA-HTTP port', 'wap-push-https': 'WAP Push OTA-HTTP secure', 'ravehd': 'RaveHD network control', 'fazzt-ptp': 'Fazzt Point-To-Point', 'fazzt-admin': 'Fazzt Administration', 'yo-main': 'Yo.net main service', 'houston': 'Rocketeer-Houston', 'ldxp': 'LDXP', 'nirp': 'Neighbour Identity Resolution', 'ltp': 'Location Tracking Protocol', 'npp': 'Network Paging Protocol', 'acp-proto': 'Accounting Protocol', 'ctp-state': 'Context Transfer Protocol', 'wafs': 'Wide Area File Services', 'cisco-wafs': 'Wide Area File Services', 'cppdp': 'Cisco Peer to Peer Distribution Protocol', 'interact': 'VoiceConnect Interact', 'ccu-comm-1': 'CosmoCall Universe Communications Port 1', 'ccu-comm-2': 'CosmoCall Universe Communications Port 2', 'ccu-comm-3': 'CosmoCall Universe Communications Port 3', 'lms': 'Location Message Service', 'wfm': 'Servigistics WFM server', 'kingfisher': 'Kingfisher protocol', 'dlms-cosem': 'DLMS/COSEM', 'dsmeter-iatc': 'DSMETER Inter-Agent Transfer Channel\nIANA assigned this well-formed service name as a replacement for "dsmeter_iatc".', 'dsmeter_iatc': 'DSMETER Inter-Agent Transfer Channel', 'ice-location': 'Ice Location Service (TCP)', 'ice-slocation': 'Ice Location Service (SSL)', 'ice-router': 'Ice Firewall Traversal Service (TCP)', 'ice-srouter': 'Ice Firewall Traversal Service (SSL)', 'avanti-cdp': 'Avanti Common Data\nIANA assigned this well-formed service name as a replacement for "avanti_cdp".', 'avanti_cdp': 'Avanti Common Data', 'pmas': 'Performance Measurement and Analysis', 'idp': 'Information Distribution Protocol', 'ipfltbcst': 'IP Fleet Broadcast', 'minger': 'Minger Email Address Validation Service', 'tripe': 'Trivial IP Encryption (TrIPE)', 'aibkup': 'Automatically Incremental Backup', 'zieto-sock': 'Zieto Socket Communications', 'iRAPP': 'iRAPP Server Protocol', 'cequint-cityid': 'Cequint City ID UI trigger', 'perimlan': 'ISC Alarm Message Service', 'seraph': 'Seraph DCS', 'ascomalarm': 'Ascom IP Alarming', 'santools': 'SANtools Diagnostic Server', 'lorica-in': 'Lorica inside facing', 'lorica-in-sec': 'Lorica inside facing (SSL)', 'lorica-out': 'Lorica outside facing', 'lorica-out-sec': 'Lorica outside facing (SSL)', 'fortisphere-vm': 'Fortisphere VM Service', 'ftsync': 'Firewall/NAT state table synchronization', 'opencore': 'OpenCORE Remote Control Service', 'omasgport': 'OMA BCAST Service Guide', 'ewinstaller': 'EminentWare Installer', 'ewdgs': 'EminentWare DGS', 'pvxpluscs': 'Pvx Plus CS Host', 'sysrqd': 'sysrq daemon', 'xtgui': 'xtgui information service', 'bre': 'BRE (Bridge Relay Element)', 'patrolview': 'Patrol View', 'drmsfsd': 'drmsfsd', 'dpcp': 'DPCP', 'igo-incognito': 'IGo Incognito Data Port', 'brlp-0': 'Braille protocol', 'brlp-1': 'Braille protocol', 'brlp-2': 'Braille protocol', 'brlp-3': 'Braille protocol', 'shofar': 'Shofar', 'synchronite': 'Synchronite', 'j-ac': 'JDL Accounting LAN Service', 'accel': 'ACCEL', 'izm': 'Instantiated Zero-control Messaging', 'g2tag': 'G2 RFID Tag Telemetry Data', 'xgrid': 'Xgrid', 'apple-vpns-rp': 'Apple VPN Server Reporting Protocol', 'aipn-reg': 'AIPN LS Registration', 'jomamqmonitor': 'JomaMQMonitor', 'cds': 'CDS Transfer Agent', 'smartcard-tls': 'smartcard-TLS', 'hillrserv': 'Hillr Connection Manager', 'netscript': 'Netadmin Systems NETscript service', 'assuria-slm': 'Assuria Log Manager', 'e-builder': 'e-Builder Application Communication', 'fprams': 'Fiber Patrol Alarm Service', 'z-wave': 'Zensys Z-Wave Control Protocol', 'tigv2': 'Rohill TetraNode Ip Gateway v2', 'opsview-envoy': 'Opsview Envoy', 'ddrepl': 'Data Domain Replication Service', 'unikeypro': 'NetUniKeyServer', 'nufw': 'NuFW decision delegation protocol', 'nuauth': 'NuFW authentication protocol', 'fronet': 'FRONET message protocol', 'stars': 'Global Maintech Stars', 'nuts-dem': 'NUTS Daemon\nIANA assigned this well-formed service name as a replacement for "nuts_dem".', 'nuts_dem': 'NUTS Daemon', 'nuts-bootp': 'NUTS Bootp Server\nIANA assigned this well-formed service name as a replacement for "nuts_bootp".', 'nuts_bootp': 'NUTS Bootp Server', 'nifty-hmi': 'NIFTY-Serve HMI protocol', 'cl-db-attach': 'Classic Line Database Server Attach', 'cl-db-request': 'Classic Line Database Server Request', 'cl-db-remote': 'Classic Line Database Server Remote', 'nettest': 'nettest', 'thrtx': 'Imperfect Networks Server', 'cedros-fds': 'Cedros Fraud Detection System\nIANA assigned this well-formed service name as a replacement for "cedros_fds".', 'cedros_fds': 'Cedros Fraud Detection System', 'oirtgsvc': 'Workflow Server', 'oidocsvc': 'Document Server', 'oidsr': 'Document Replication', 'vvr-control': 'VVR Control', 'tgcconnect': 'TGCConnect Beacon', 'vrxpservman': 'Multum Service Manager', 'hhb-handheld': 'HHB Handheld Client', 'agslb': 'A10 GSLB Service', 'PowerAlert-nsa': 'PowerAlert Network Shutdown Agent', 'menandmice-noh': 'Men & Mice Remote Control\nIANA assigned this well-formed service name as a replacement for "menandmice_noh".', 'menandmice_noh': 'Men & Mice Remote Control', 'idig-mux': 'iDigTech Multiplex\nIANA assigned this well-formed service name as a replacement for "idig_mux".', 'idig_mux': 'iDigTech Multiplex', 'mbl-battd': 'MBL Remote Battery Monitoring', 'atlinks': 'atlinks device discovery', 'bzr': 'Bazaar version control system', 'stat-results': 'STAT Results', 'stat-scanner': 'STAT Scanner Control', 'stat-cc': 'STAT Command Center', 'nss': 'Network Security Service', 'jini-discovery': 'Jini Discovery', 'omscontact': 'OMS Contact', 'omstopology': 'OMS Topology', 'silverpeakpeer': 'Silver Peak Peer Protocol', 'silverpeakcomm': 'Silver Peak Communication Protocol', 'altcp': 'ArcLink over Ethernet', 'joost': 'Joost Peer to Peer Protocol', 'ddgn': 'DeskDirect Global Network', 'pslicser': 'PrintSoft License Server', 'iadt-disc': 'Internet ADT Discovery Protocol', 'pcoip': 'PC over IP', 'mma-discovery': 'MMA Device Discovery', 'sm-disc': 'StorMagic Discovery', 'wello': 'Wello P2P pubsub service', 'storman': 'StorMan', 'MaxumSP': 'Maxum Services', 'httpx': 'HTTPX', 'macbak': 'MacBak', 'pcptcpservice': 'Production Company Pro TCP Service', 'gmmp': 'General Metaverse Messaging Protocol', 'universe-suite': 'UNIVERSE SUITE MESSAGE SERVICE\nIANA assigned this well-formed service name as a replacement for "universe_suite".', 'universe_suite': 'UNIVERSE SUITE MESSAGE SERVICE', 'wcpp': 'Woven Control Plane Protocol', 'vatata': 'Vatata Peer to Peer Protocol', 'dsmipv6': 'Dual Stack MIPv6 NAT Traversal', 'azeti-bd': 'azeti blinddate', 'eims-admin': 'EIMS ADMIN', 'corelccam': 'Corel CCam', 'd-data': 'Diagnostic Data', 'd-data-control': 'Diagnostic Data Control', 'srcp': 'Simple Railroad Command Protocol', 'owserver': 'One-Wire Filesystem Server', 'batman': 'better approach to mobile ad-hoc networking', 'pinghgl': 'Hellgate London', 'visicron-vs': 'Visicron Videoconference Service', 'compx-lockview': 'CompX-LockView', 'dserver': 'Exsequi Appliance Discovery', 'mirrtex': 'Mir-RT exchange service', 'fdt-rcatp': 'FDT Remote Categorization Protocol', 'rwhois': 'Remote Who Is', 'trim-event': 'TRIM Event Service', 'trim-ice': 'TRIM ICE Service', 'balour': 'Balour Game Server', 'geognosisman': 'Cadcorp GeognoSIS Manager Service', 'geognosis': 'Cadcorp GeognoSIS Service', 'jaxer-web': 'Jaxer Web Protocol', 'jaxer-manager': 'Jaxer Manager Command Protocol', 'gaia': 'Gaia Connector Protocol', 'lisp-data': 'LISP Data Packets', 'lisp-control': 'LISP Data-Triggered Control', 'unicall': 'UNICALL', 'vinainstall': 'VinaInstall', 'm4-network-as': 'Macro 4 Network AS', 'elanlm': 'ELAN LM', 'lansurveyor': 'LAN Surveyor', 'itose': 'ITOSE', 'fsportmap': 'File System Port Map', 'net-device': 'Net Device', 'plcy-net-svcs': 'PLCY Net Services', 'pjlink': 'Projector Link', 'f5-iquery': 'F5 iQuery', 'qsnet-trans': 'QSNet Transmitter', 'qsnet-workst': 'QSNet Workstation', 'qsnet-assist': 'QSNet Assistant', 'qsnet-cond': 'QSNet Conductor', 'qsnet-nucl': 'QSNet Nucleus', 'omabcastltkm': 'OMA BCAST Long-Term Key Messages', 'nacnl': 'NavCom Discovery and Control Port', 'afore-vdp-disc': 'AFORE vNode Discovery protocol', 'wxbrief': 'WeatherBrief Direct', 'epmd': 'Erlang Port Mapper Daemon', 'elpro-tunnel': 'ELPRO V2 Protocol Tunnel\nIANA assigned this well-formed service name as a replacement for "elpro_tunnel".', 'elpro_tunnel': 'ELPRO V2 Protocol Tunnel', 'l2c-disc': 'LAN2CAN Discovery', 'l2c-data': 'LAN2CAN Data', 'remctl': 'Remote Authenticated Command Service', 'tolteces': 'Toltec EasyShare', 'bip': 'BioAPI Interworking', 'cp-spxsvr': 'Cambridge Pixel SPx Server', 'cp-spxdpy': 'Cambridge Pixel SPx Display', 'ctdb': 'CTDB', 'xandros-cms': 'Xandros Community Management Service', 'wiegand': 'Physical Access Control', 'apwi-disc': 'American Printware Discovery', 'omnivisionesx': 'OmniVision communication for Virtual environments', 'ds-srv': 'ASIGRA Services', 'ds-srvr': 'ASIGRA Televaulting DS-System Service', 'ds-clnt': 'ASIGRA Televaulting DS-Client Service', 'ds-user': 'ASIGRA Televaulting DS-Client Monitoring/Management', 'ds-admin': 'ASIGRA Televaulting DS-System Monitoring/Management', 'ds-mail': 'ASIGRA Televaulting Message Level Restore service', 'ds-slp': 'ASIGRA Televaulting DS-Sleeper Service', 'netrockey6': 'NetROCKEY6 SMART Plus Service', 'beacon-port-2': 'SMARTS Beacon Port', 'rsqlserver': 'REAL SQL Server', 'l-acoustics': 'L-ACOUSTICS management', 'netblox': 'Netblox Protocol', 'saris': 'Saris', 'pharos': 'Pharos', 'krb524': 'KRB524', 'nv-video': 'NV Video default', 'upnotifyp': 'UPNOTIFYP', 'n1-fwp': 'N1-FWP', 'n1-rmgmt': 'N1-RMGMT', 'asc-slmd': 'ASC Licence Manager', 'privatewire': 'PrivateWire', 'camp': 'Common ASCII Messaging Protocol', 'ctisystemmsg': 'CTI System Msg', 'ctiprogramload': 'CTI Program Load', 'nssalertmgr': 'NSS Alert Manager', 'nssagentmgr': 'NSS Agent Manager', 'prchat-user': 'PR Chat User', 'prchat-server': 'PR Chat Server', 'prRegister': 'PR Register', 'mcp': 'Matrix Configuration Protocol', 'hpssmgmt': 'hpssmgmt service', 'icms': 'Integrated Client Message Service', 'awacs-ice': 'Apple Wide Area Connectivity Service ICE Bootstrap', 'ipsec-nat-t': 'IPsec NAT-Traversal', 'ehs': 'Event Heap Server', 'ehs-ssl': 'Event Heap Server SSL', 'wssauthsvc': 'WSS Security Service', 'swx-gate': 'Software Data Exchange Gateway', 'worldscores': 'WorldScores', 'sf-lm': 'SF License Manager (Sentinel)', 'lanner-lm': 'Lanner License Manager', 'synchromesh': 'Synchromesh', 'aegate': 'Aegate PMR Service', 'gds-adppiw-db': 'Perman I Interbase Server', 'ieee-mih': 'MIH Services', 'menandmice-mon': 'Men and Mice Monitoring', 'msfrs': 'MS FRS Replication', 'rsip': 'RSIP Port', 'dtn-bundle-udp': 'DTN Bundle UDP CL Protocol', 'mtcevrunqss': 'Marathon everRun Quorum Service Server', 'mtcevrunqman': 'Marathon everRun Quorum Service Manager', 'hylafax': 'HylaFAX', 'kwtc': 'Kids Watch Time Control Service', 'tram': 'TRAM', 'bmc-reporting': 'BMC Reporting', 'iax': 'Inter-Asterisk eXchange', 'l3t-at-an': 'HRPD L3T (AT-AN)', 'hrpd-ith-at-an': 'HRPD-ITH (AT-AN)', 'ipt-anri-anri': 'IPT (ANRI-ANRI)', 'ias-session': 'IAS-Session (ANRI-ANRI)', 'ias-paging': 'IAS-Paging (ANRI-ANRI)', 'ias-neighbor': 'IAS-Neighbor (ANRI-ANRI)', 'a21-an-1xbs': 'A21 (AN-1xBS)', 'a16-an-an': 'A16 (AN-AN)', 'a17-an-an': 'A17 (AN-AN)', 'piranha1': 'Piranha1', 'piranha2': 'Piranha2', 'playsta2-app': 'PlayStation2 App Port', 'playsta2-lob': 'PlayStation2 Lobby Port', 'smaclmgr': 'smaclmgr', 'kar2ouche': 'Kar2ouche Peer location service', 'oms': 'OrbitNet Message Service', 'noteit': 'Note It! Message Service', 'ems': 'Rimage Messaging Server', 'contclientms': 'Container Client Message Service', 'eportcomm': 'E-Port Message Service', 'mmacomm': 'MMA Comm Services', 'mmaeds': 'MMA EDS Service', 'eportcommdata': 'E-Port Data Service', 'light': 'Light packets transfer protocol', 'acter': 'Bull RSF action server', 'rfa': 'remote file access server', 'cxws': 'CXWS Operations', 'appiq-mgmt': 'AppIQ Agent Management', 'dhct-status': 'BIAP Device Status', 'dhct-alerts': 'BIAP Generic Alert', 'bcs': 'Business Continuity Servi', 'traversal': 'boundary traversal', 'mgesupervision': 'MGE UPS Supervision', 'mgemanagement': 'MGE UPS Management', 'parliant': 'Parliant Telephony System', 'finisar': 'finisar', 'spike': 'Spike Clipboard Service', 'rfid-rp1': 'RFID Reader Protocol 1.0', 'autopac': 'Autopac Protocol', 'msp-os': 'Manina Service Protocol', 'nst': 'Network Scanner Tool FTP', 'mobile-p2p': 'Mobile P2P Service', 'altovacentral': 'Altova DatabaseCentral', 'prelude': 'Prelude IDS message proto', 'mtn': 'monotone Netsync Protocol', 'conspiracy': 'Conspiracy messaging', 'netxms-agent': 'NetXMS Agent', 'netxms-mgmt': 'NetXMS Management', 'netxms-sync': 'NetXMS Server Synchronization', 'truckstar': 'TruckStar Service', 'a26-fap-fgw': 'A26 (FAP-FGW)', 'fcis-disc': 'F-Link Client Information Service Discovery', 'capmux': 'CA Port Multiplexer', 'gsmtap': 'GSM Interface Tap', 'gearman': 'Gearman Job Queue System', 'ohmtrigger': 'OHM server trigger', 'ipdr-sp': 'IPDR/SP', 'solera-lpn': 'SoleraTec Locator', 'ipfix': 'IP Flow Info Export', 'ipfixs': 'ipfix protocol over DTLS', 'lumimgrd': 'Luminizer Manager', 'sicct-sdp': 'SICCT Service Discovery Protocol', 'openhpid': 'openhpi HPI service', 'ifsp': 'Internet File Synchronization Protocol', 'fmp': 'Funambol Mobile Push', 'profilemac': 'Profile for Mac', 'ssad': 'Simple Service Auto Discovery', 'spocp': 'Simple Policy Control Protocol', 'snap': 'Simple Network Audio Protocol', 'simon-disc': 'Simple Invocation of Methods Over Network (SIMON) Discovery', 'bfd-multi-ctl': 'BFD Multihop Control', 'cncp': 'Cisco Nexus Control Protocol', 'iims': 'Icona Instant Messenging System', 'iwec': 'Icona Web Embedded Chat', 'ilss': 'Icona License System Server', 'notateit-disc': 'Notateit Messaging Discovery', 'aja-ntv4-disc': 'AJA ntv4 Video System Discovery', 'htcp': 'HTCP', 'varadero-0': 'Varadero-0', 'varadero-1': 'Varadero-1', 'varadero-2': 'Varadero-2', 'opcua-udp': 'OPC UA TCP Protocol', 'quosa': 'QUOSA Virtual Library Service', 'gw-asv': 'nCode ICE-flow Library AppServer', 'opcua-tls': 'OPC UA TCP Protocol over TLS/SSL', 'gw-log': 'nCode ICE-flow Library LogServer', 'wcr-remlib': 'WordCruncher Remote Library Service', 'contamac-icm': 'Contamac ICM Service\nIANA assigned this well-formed service name as a replacement for "contamac_icm".', 'contamac_icm': 'Contamac ICM Service', 'wfc': 'Web Fresh Communication', 'appserv-http': 'App Server - Admin HTTP', 'appserv-https': 'App Server - Admin HTTPS', 'sun-as-nodeagt': 'Sun App Server - NA', 'derby-repli': 'Apache Derby Replication', 'unify-debug': 'Unify Debugger', 'phrelay': 'Photon Relay', 'phrelaydbg': 'Photon Relay Debug', 'cc-tracking': 'Citcom Tracking Service', 'wired': 'Wired', 'tritium-can': 'Tritium CAN Bus Bridge Service', 'lmcs': 'Lighting Management Control System', 'inst-discovery': 'Agilent Instrument Discovery', 'socp-t': 'SOCP Time Synchronization Protocol', 'socp-c': 'SOCP Control Protocol', 'hivestor': 'HiveStor Distributed File System', 'abbs': 'ABBS', 'lyskom': 'LysKOM Protocol A', 'radmin-port': 'RAdmin Port', 'hfcs': 'HyperFileSQL Client/Server Database Engine', 'bones': 'Bones Remote Control', 'atsc-mh-ssc': 'ATSC-M/H Service Signaling Channel', 'eq-office-4940': 'Equitrac Office', 'eq-office-4941': 'Equitrac Office', 'eq-office-4942': 'Equitrac Office', 'munin': 'Munin Graphing Framework', 'sybasesrvmon': 'Sybase Server Monitor', 'pwgwims': 'PWG WIMS', 'sagxtsds': 'SAG Directory Server', 'ccss-qmm': 'CCSS QMessageMonitor', 'ccss-qsm': 'CCSS QSystemMonitor', 'mrip': 'Model Railway Interface Program', 'smar-se-port1': 'SMAR Ethernet Port 1', 'smar-se-port2': 'SMAR Ethernet Port 2', 'parallel': 'Parallel for GAUSS (tm)', 'busycal': 'BusySync Calendar Synch. Protocol', 'vrt': 'VITA Radio Transport', 'hfcs-manager': 'HyperFileSQL Client/Server Database Engine Manager', 'commplex-main': '', 'commplex-link': '', 'rfe': 'radio free ethernet', 'fmpro-internal': 'FileMaker, Inc. - Proprietary name binding', 'avt-profile-1': 'RTP media data', 'avt-profile-2': 'RTP control protocol', 'wsm-server': 'wsm server', 'wsm-server-ssl': 'wsm server ssl', 'synapsis-edge': 'Synapsis EDGE', 'winfs': 'Microsoft Windows Filesystem', 'telelpathstart': 'TelepathStart', 'telelpathattack': 'TelepathAttack', 'nsp': 'NetOnTap Service', 'fmpro-v6': 'FileMaker, Inc. - Proprietary transport', 'onpsocket': 'Overlay Network Protocol', 'zenginkyo-1': 'zenginkyo-1', 'zenginkyo-2': 'zenginkyo-2', 'mice': 'mice server', 'htuilsrv': 'Htuil Server for PLD2', 'scpi-telnet': 'SCPI-TELNET', 'scpi-raw': 'SCPI-RAW', 'strexec-d': 'Storix I/O daemon (data)', 'strexec-s': 'Storix I/O daemon (stat)', 'infobright': 'Infobright Database Server', 'surfpass': 'SurfPass', 'dmp': 'Direct Message Protocol', 'asnaacceler8db': 'asnaacceler8db', 'swxadmin': 'ShopWorX Administration', 'lxi-evntsvc': 'LXI Event Service', 'vpm-udp': 'Vishay PM UDP Service', 'iscape': 'iSCAPE Data Broadcasting', 'ivocalize': 'iVocalize Web Conference', 'mmcc': 'multimedia conference control tool', 'ita-agent': 'ITA Agent', 'ita-manager': 'ITA Manager', 'unot': 'UNOT', 'intecom-ps1': 'Intecom Pointspan 1', 'intecom-ps2': 'Intecom Pointspan 2', 'locus-disc': 'Locus Discovery', 'sds': 'SIP Directory Services', 'sip': 'SIP', 'sip-tls': 'SIP-TLS', 'na-localise': 'Localisation access', 'ca-1': 'Channel Access 1', 'ca-2': 'Channel Access 2', 'stanag-5066': 'STANAG-5066-SUBNET-INTF', 'authentx': 'Authentx Service', 'i-net-2000-npr': 'I/Net 2000-NPR', 'vtsas': 'VersaTrans Server Agent Service', 'powerschool': 'PowerSchool', 'ayiya': 'Anything In Anything', 'tag-pm': 'Advantage Group Port Mgr', 'alesquery': 'ALES Query', 'cp-spxrpts': 'Cambridge Pixel SPx Reports', 'onscreen': 'OnScreen Data Collection Service', 'sdl-ets': 'SDL - Ent Trans Server', 'qcp': 'Qpur Communication Protocol', 'qfp': 'Qpur File Protocol', 'llrp': 'EPCglobal Low-Level Reader Protocol', 'encrypted-llrp': 'EPCglobal Encrypted LLRP', 'magpie': 'Magpie Binary', 'sentinel-lm': 'Sentinel LM', 'hart-ip': 'HART-IP', 'sentlm-srv2srv': 'SentLM Srv2Srv', 'socalia': 'Socalia service mux', 'talarian-udp': 'Talarian_UDP', 'oms-nonsecure': 'Oracle OMS non-secure', 'tinymessage': 'TinyMessage', 'hughes-ap': 'Hughes Association Protocol', 'taep-as-svc': 'TAEP AS service', 'pm-cmdsvr': 'PeerMe Msg Cmd Service', 'emb-proj-cmd': 'EPSON Projecter Image Transfer', 'nbt-pc': 'Policy Commander', 'minotaur-sa': 'Minotaur SA', 'ctsd': 'MyCTS server port', 'rmonitor-secure': 'RMONITOR SECURE\nIANA assigned this well-formed service name as a replacement for "rmonitor_secure".', 'rmonitor_secure': 'RMONITOR SECURE', 'atmp': 'Ascend Tunnel Management Protocol', 'esri-sde': 'ESRI SDE Remote Start\n IANA assigned this well-formed service name as a replacement for "esri_sde".', 'esri_sde': 'ESRI SDE Remote Start', 'sde-discovery': 'ESRI SDE Instance Discovery', 'bzflag': 'BZFlag game server', 'asctrl-agent': 'Oracle asControl Agent', 'vpa-disc': 'Virtual Protocol Adapter Discovery', 'ife-icorp': 'ife_1corp\nIANA assigned this well-formed service name as a replacement for "ife_icorp".', 'ife_icorp': 'ife_1corp', 'winpcs': 'WinPCS Service Connection', 'scte104': 'SCTE104 Connection', 'scte30': 'SCTE30 Connection', 'aol': 'America-Online', 'aol-1': 'AmericaOnline1', 'aol-2': 'AmericaOnline2', 'aol-3': 'AmericaOnline3', 'targus-getdata': 'TARGUS GetData', 'targus-getdata1': 'TARGUS GetData 1', 'targus-getdata2': 'TARGUS GetData 2', 'targus-getdata3': 'TARGUS GetData 3', 'hpvirtgrp': 'HP Virtual Machine Group Management', 'hpvirtctrl': 'HP Virtual Machine Console Operations', 'hp-server': 'HP Server', 'hp-status': 'HP Status', 'perfd': 'HP System Performance Metric Service', 'eenet': 'EEnet communications', 'galaxy-network': 'Galaxy Network Service', 'padl2sim': '', 'mnet-discovery': 'm-net discovery', 'downtools-disc': 'DownTools Discovery Protocol', 'capwap-control': 'CAPWAP Control Protocol', 'capwap-data': 'CAPWAP Data Protocol', 'caacws': 'CA Access Control Web Service', 'caaclang2': 'CA AC Lang Service', 'soagateway': 'soaGateway', 'caevms': 'CA eTrust VM Service', 'movaz-ssc': 'Movaz SSC', '3com-njack-1': '3Com Network Jack Port 1', '3com-njack-2': '3Com Network Jack Port 2', 'cartographerxmp': 'Cartographer XMP', 'cuelink-disc': 'StageSoft CueLink discovery', 'pk': 'PK', 'transmit-port': 'Marimba Transmitter Port', 'presence': 'XMPP Link-Local Messaging', 'nlg-data': 'NLG Data Service', 'hacl-hb': 'HA cluster heartbeat', 'hacl-gs': 'HA cluster general services', 'hacl-cfg': 'HA cluster configuration', 'hacl-probe': 'HA cluster probing', 'hacl-local': 'HA Cluster Commands', 'hacl-test': 'HA Cluster Test', 'sun-mc-grp': 'Sun MC Group', 'sco-aip': 'SCO AIP', 'cfengine': 'CFengine', 'jprinter': 'J Printer', 'outlaws': 'Outlaws', 'permabit-cs': 'Permabit Client-Server', 'rrdp': 'Real-time & Reliable Data', 'opalis-rbt-ipc': 'opalis-rbt-ipc', 'hacl-poll': 'HA Cluster UDP Polling', 'kfserver': 'Sculptor Database Server', 'xkotodrcp': 'xkoto DRCP', 'stuns': 'Reserved for a future enhancement of STUN', 'turns': 'Reserved for a future enhancement of TURN', 'stun-behaviors': 'Reserved for a future enhancement of STUN-BEHAVIOR', 'nat-pmp-status': 'NAT-PMP Status Announcements', 'nat-pmp': 'NAT Port Mapping Protocol', 'dns-llq': 'DNS Long-Lived Queries', 'mdns': 'Multicast DNS', 'mdnsresponder': 'Multicast DNS Responder IPC', 'llmnr': 'LLMNR', 'ms-smlbiz': 'Microsoft Small Business', 'wsdapi': 'Web Services for Devices', 'wsdapi-s': 'WS for Devices Secured', 'ms-alerter': 'Microsoft Alerter', 'ms-sideshow': 'Protocol for Windows SideShow', 'ms-s-sideshow': 'Secure Protocol for Windows SideShow', 'serverwsd2': 'Microsoft Windows Server WSD2 Service', 'net-projection': 'Windows Network Projection', 'stresstester': 'StressTester(tm) Injector', 'elektron-admin': 'Elektron Administration', 'securitychase': 'SecurityChase', 'excerpt': 'Excerpt Search', 'excerpts': 'Excerpt Search Secure', 'mftp': 'OmniCast MFTP', 'hpoms-ci-lstn': 'HPOMS-CI-LSTN', 'hpoms-dps-lstn': 'HPOMS-DPS-LSTN', 'netsupport': 'NetSupport', 'systemics-sox': 'Systemics Sox', 'foresyte-clear': 'Foresyte-Clear', 'foresyte-sec': 'Foresyte-Sec', 'salient-dtasrv': 'Salient Data Server', 'salient-usrmgr': 'Salient User Manager', 'actnet': 'ActNet', 'continuus': 'Continuus', 'wwiotalk': 'WWIOTALK', 'statusd': 'StatusD', 'ns-server': 'NS Server', 'sns-gateway': 'SNS Gateway', 'sns-agent': 'SNS Agent', 'mcntp': 'MCNTP', 'dj-ice': 'DJ-ICE', 'cylink-c': 'Cylink-C', 'netsupport2': 'Net Support 2', 'salient-mux': 'Salient MUX', 'virtualuser': 'VIRTUALUSER', 'beyond-remote': 'Beyond Remote', 'br-channel': 'Beyond Remote Command Channel', 'devbasic': 'DEVBASIC', 'sco-peer-tta': 'SCO-PEER-TTA', 'telaconsole': 'TELACONSOLE', 'base': 'Billing and Accounting System Exchange', 'radec-corp': 'RADEC CORP', 'park-agent': 'PARK AGENT', 'postgresql': 'PostgreSQL Database', 'pyrrho': 'Pyrrho DBMS', 'sgi-arrayd': 'SGI Array Services Daemon', 'sceanics': 'SCEANICS situation and action notification', 'pmip6-cntl': 'pmip6-cntl', 'pmip6-data': 'pmip6-data', 'spss': 'Pearson HTTPS', 'surebox': 'SureBox', 'apc-5454': 'APC 5454', 'apc-5455': 'APC 5455', 'apc-5456': 'APC 5456', 'silkmeter': 'SILKMETER', 'ttl-publisher': 'TTL Publisher', 'ttlpriceproxy': 'TTL Price Proxy', 'quailnet': 'Quail Networks Object Broker', 'netops-broker': 'NETOPS-BROKER', 'fcp-addr-srvr1': 'fcp-addr-srvr1', 'fcp-addr-srvr2': 'fcp-addr-srvr2', 'fcp-srvr-inst1': 'fcp-srvr-inst1', 'fcp-srvr-inst2': 'fcp-srvr-inst2', 'fcp-cics-gw1': 'fcp-cics-gw1', 'checkoutdb': 'Checkout Database', 'amc': 'Amcom Mobile Connect', 'sgi-eventmond': 'SGI Eventmond Port', 'sgi-esphttp': 'SGI ESP HTTP', 'personal-agent': 'Personal Agent', 'freeciv': 'Freeciv gameplay', 'm-oap': 'Multicast Object Access Protocol', 'sdt': 'Session Data Transport Multicast', 'rdmnet-device': 'PLASA E1.33, Remote Device Management (RDM) messages', 'sdmmp': 'SAS Domain Management Messaging Protocol', 'tmosms0': 'T-Mobile SMS Protocol Message 0', 'tmosms1': 'T-Mobile SMS Protocol Message 1', 'fac-restore': 'T-Mobile SMS Protocol Message 3', 'tmo-icon-sync': 'T-Mobile SMS Protocol Message 2', 'bis-web': 'BeInSync-Web', 'bis-sync': 'BeInSync-sync', 'ininmessaging': 'inin secure messaging', 'mctfeed': 'MCT Market Data Feed', 'esinstall': 'Enterprise Security Remote Install', 'esmmanager': 'Enterprise Security Manager', 'esmagent': 'Enterprise Security Agent', 'a1-msc': 'A1-MSC', 'a1-bs': 'A1-BS', 'a3-sdunode': 'A3-SDUNode', 'a4-sdunode': 'A4-SDUNode', 'ninaf': 'Node Initiated Network Association Forma', 'htrust': 'HTrust API', 'symantec-sfdb': 'Symantec Storage Foundation for Database', 'precise-comm': 'PreciseCommunication', 'pcanywheredata': 'pcANYWHEREdata', 'pcanywherestat': 'pcANYWHEREstat', 'beorl': 'BE Operations Request Listener', 'xprtld': 'SF Message Service', 'amqps': 'amqp protocol over TLS/SSL', 'amqp': 'AMQP', 'jms': 'JACL Message Server', 'hyperscsi-port': 'HyperSCSI Port', 'v5ua': 'V5UA application port', 'raadmin': 'RA Administration', 'questdb2-lnchr': 'Quest Central DB2 Launchr', 'rrac': 'Remote Replication Agent Connection', 'dccm': 'Direct Cable Connect Manager', 'auriga-router': 'Auriga Router Service', 'ncxcp': 'Net-coneX Control Protocol', 'brightcore': 'BrightCore control & data transfer exchange', 'coap': 'Constrained Application Protocol', 'ggz': 'GGZ Gaming Zone', 'qmvideo': 'QM video network management protocol', 'proshareaudio': 'proshare conf audio', 'prosharevideo': 'proshare conf video', 'prosharedata': 'proshare conf data', 'prosharerequest': 'proshare conf request', 'prosharenotify': 'proshare conf notify', 'dpm': 'DPM Communication Server', 'dpm-agent': 'DPM Agent Coordinator', 'ms-licensing': 'MS-Licensing', 'dtpt': 'Desktop Passthru Service', 'msdfsr': 'Microsoft DFS Replication Service', 'omhs': 'Operations Manager - Health Service', 'omsdk': 'Operations Manager - SDK Service', 'io-dist-group': 'Dist. I/O Comm. Service Group Membership', 'openmail': 'Openmail User Agent Layer', 'unieng': "Steltor's calendar access", 'ida-discover1': 'IDA Discover Port 1', 'ida-discover2': 'IDA Discover Port 2', 'watchdoc-pod': 'Watchdoc NetPOD Protocol', 'watchdoc': 'Watchdoc Server', 'fcopy-server': 'fcopy-server', 'fcopys-server': 'fcopys-server', 'tunatic': 'Wildbits Tunatic', 'tunalyzer': 'Wildbits Tunalyzer', 'rscd': 'Bladelogic Agent Service', 'openmailg': 'OpenMail Desk Gateway server', 'x500ms': 'OpenMail X.500 Directory Server', 'openmailns': 'OpenMail NewMail Server', 's-openmail': 'OpenMail Suer Agent Layer (Secure)', 'openmailpxy': 'OpenMail CMTS Server', 'spramsca': 'x509solutions Internal CA', 'spramsd': 'x509solutions Secure Data', 'netagent': 'NetAgent', 'dali-port': 'DALI Port', '3par-evts': '3PAR Event Reporting Service', '3par-mgmt': '3PAR Management Service', '3par-mgmt-ssl': '3PAR Management Service with SSL', 'ibar': 'Cisco Interbox Application Redundancy', '3par-rcopy': '3PAR Inform Remote Copy', 'cisco-redu': 'redundancy notification', 'waascluster': 'Cisco WAAS Cluster Protocol', 'xtreamx': 'XtreamX Supervised Peer message', 'spdp': 'Simple Peered Discovery Protocol', 'icmpd': 'ICMPD', 'spt-automation': 'Support Automation', 'wherehoo': 'WHEREHOO', 'ppsuitemsg': 'PlanetPress Suite Messeng', 'rfb': 'Remote Framebuffer', 'cm': 'Context Management', 'cpdlc': 'Controller Pilot Data Link Communication', 'fis': 'Flight Information Services', 'ads-c': 'Automatic Dependent Surveillance', 'indy': 'Indy Application Server', 'mppolicy-v5': 'mppolicy-v5', 'mppolicy-mgr': 'mppolicy-mgr', 'couchdb': 'CouchDB', 'wsman': 'WBEM WS-Management HTTP', 'wsmans': 'WBEM WS-Management HTTP over TLS/SSL', 'wbem-rmi': 'WBEM RMI', 'wbem-http': 'WBEM CIM-XML (HTTP)', 'wbem-https': 'WBEM CIM-XML (HTTPS)', 'wbem-exp-https': 'WBEM Export HTTPS', 'nuxsl': 'NUXSL', 'consul-insight': 'Consul InSight Security', 'cvsup': 'CVSup', 'x11': 'X Window System', 'ndl-ahp-svc': 'NDL-AHP-SVC', 'winpharaoh': 'WinPharaoh', 'ewctsp': 'EWCTSP', 'trip': 'TRIP', 'messageasap': 'Messageasap', 'ssdtp': 'SSDTP', 'diagnose-proc': 'DIAGNOSE-PROC', 'directplay8': 'DirectPlay8', 'max': 'Microsoft Max', 'p25cai': 'APCO Project 25 Common Air Interface - UDP encapsulation', 'miami-bcast': 'telecomsoftware miami broadcast', 'konspire2b': 'konspire2b p2p network', 'pdtp': 'PDTP P2P', 'ldss': 'Local Download Sharing Service', 'doglms-notify': 'SuperDog License Manager Notifier', 'synchronet-db': 'SynchroNet-db', 'synchronet-rtc': 'SynchroNet-rtc', 'synchronet-upd': 'SynchroNet-upd', 'rets': 'RETS', 'dbdb': 'DBDB', 'primaserver': 'Prima Server', 'mpsserver': 'MPS Server', 'etc-control': 'ETC Control', 'sercomm-scadmin': 'Sercomm-SCAdmin', 'globecast-id': 'GLOBECAST-ID', 'softcm': 'HP SoftBench CM', 'spc': 'HP SoftBench Sub-Process Control', 'dtspcd': 'Desk-Top Sub-Process Control Daemon', 'tipc': 'Transparent Inter Process Communication', 'bex-webadmin': 'Backup Express Web Server', 'backup-express': 'Backup Express', 'pnbs': 'Phlexible Network Backup Service', 'nbt-wol': 'New Boundary Tech WOL', 'pulsonixnls': 'Pulsonix Network License Service', 'meta-corp': 'Meta Corporation License Manager', 'aspentec-lm': 'Aspen Technology License Manager', 'watershed-lm': 'Watershed License Manager', 'statsci1-lm': 'StatSci License Manager - 1', 'statsci2-lm': 'StatSci License Manager - 2', 'lonewolf-lm': 'Lone Wolf Systems License Manager', 'montage-lm': 'Montage License Manager', 'ricardo-lm': 'Ricardo North America License Manager', 'tal-pod': 'tal-pod', 'ecmp-data': 'Emerson Extensible Control and Management Protocol Data', 'patrol-ism': 'PATROL Internet Srv Mgr', 'patrol-coll': 'PATROL Collector', 'pscribe': 'Precision Scribe Cnx Port', 'lm-x': 'LM-X License Manager by X-Formation', 'thermo-calc': 'Management of service nodes in a processing grid for thermodynamic calculations', 'radmind': 'Radmind Access Protocol', 'jeol-nsddp-1': 'JEOL Network Services Dynamic Discovery Protocol 1', 'jeol-nsddp-2': 'JEOL Network Services Dynamic Discovery Protocol 2', 'jeol-nsddp-3': 'JEOL Network Services Dynamic Discovery Protocol 3', 'jeol-nsddp-4': 'JEOL Network Services Dynamic Discovery Protocol 4', 'tl1-raw-ssl': 'TL1 Raw Over SSL/TLS', 'tl1-ssh': 'TL1 over SSH', 'crip': 'CRIP', 'grid': 'Grid Authentication', 'grid-alt': 'Grid Authentication Alt', 'bmc-grx': 'BMC GRX', 'bmc-ctd-ldap': 'BMC CONTROL-D LDAP SERVER\nIANA assigned this well-formed service name as a replacement for "bmc_ctd_ldap".', 'bmc_ctd_ldap': 'BMC CONTROL-D LDAP SERVER', 'ufmp': 'Unified Fabric Management Protocol', 'scup-disc': 'Sensor Control Unit Protocol Discovery Protocol', 'abb-escp': 'Ethernet Sensor Communications Protocol', 'repsvc': 'Double-Take Replication Service', 'emp-server1': 'Empress Software Connectivity Server 1', 'emp-server2': 'Empress Software Connectivity Server 2', 'hrd-ns-disc': 'HR Device Network service', 'sflow': 'sFlow traffic monitoring', 'gnutella-svc': 'gnutella-svc', 'gnutella-rtr': 'gnutella-rtr', 'adap': 'App Discovery and Access Protocol', 'pmcs': 'PMCS applications', 'metaedit-mu': 'MetaEdit+ Multi-User', 'metaedit-se': 'MetaEdit+ Server Administration', 'metatude-mds': 'Metatude Dialogue Server', 'clariion-evr01': 'clariion-evr01', 'metaedit-ws': 'MetaEdit+ WebService API', 'faxcomservice': 'Faxcom Message Service', 'nim-vdrshell': 'NIM_VDRShell', 'nim-wan': 'NIM_WAN', 'sun-sr-https': 'Service Registry Default HTTPS Domain', 'sge-qmaster': 'Grid Engine Qmaster Service\nIANA assigned this well-formed service name as a replacement for "sge_qmaster".', 'sge_qmaster': 'Grid Engine Qmaster Service', 'sge-execd': 'Grid Engine Execution Service\nIANA assigned this well-formed service name as a replacement for "sge_execd".', 'sge_execd': 'Grid Engine Execution Service', 'mysql-proxy': 'MySQL Proxy', 'skip-cert-recv': 'SKIP Certificate Receive', 'skip-cert-send': 'SKIP Certificate Send', 'lvision-lm': 'LVision License Manager', 'sun-sr-http': 'Service Registry Default HTTP Domain', 'servicetags': 'Service Tags', 'ldoms-mgmt': 'Logical Domains Management Interface', 'SunVTS-RMI': 'SunVTS RMI', 'sun-sr-jms': 'Service Registry Default JMS Domain', 'sun-sr-iiop': 'Service Registry Default IIOP Domain', 'sun-sr-iiops': 'Service Registry Default IIOPS Domain', 'sun-sr-iiop-aut': 'Service Registry Default IIOPAuth Domain', 'sun-sr-jmx': 'Service Registry Default JMX Domain', 'sun-sr-admin': 'Service Registry Default Admin Domain', 'boks': 'BoKS Master', 'boks-servc': 'BoKS Servc\nIANA assigned this well-formed service name as a replacement for "boks_servc".', 'boks_servc': 'BoKS Servc', 'boks-servm': 'BoKS Servm\nIANA assigned this well-formed service name as a replacement for "boks_servm".', 'boks_servm': 'BoKS Servm', 'boks-clntd': 'BoKS Clntd\nIANA assigned this well-formed service name as a replacement for "boks_clntd".', 'boks_clntd': 'BoKS Clntd', 'badm-priv': 'BoKS Admin Private Port\nIANA assigned this well-formed service name as a replacement for "badm_priv".', 'badm_priv': 'BoKS Admin Private Port', 'badm-pub': 'BoKS Admin Public Port\nIANA assigned this well-formed service name as a replacement for "badm_pub".', 'badm_pub': 'BoKS Admin Public Port', 'bdir-priv': 'BoKS Dir Server, Private Port\nIANA assigned this well-formed service name as a replacement for "bdir_priv".', 'bdir_priv': 'BoKS Dir Server, Private Port', 'bdir-pub': 'BoKS Dir Server, Public Port\nIANA assigned this well-formed service name as a replacement for "bdir_pub".', 'bdir_pub': 'BoKS Dir Server, Public Port', 'mgcs-mfp-port': 'MGCS-MFP Port', 'mcer-port': 'MCER Port', 'dccp-udp': 'Datagram Congestion Control Protocol Encapsulation for NAT Traversal', 'syslog-tls': 'syslog over DTLS', 'elipse-rec': 'Elipse RPC Protocol', 'lds-distrib': 'lds_distrib', 'lds-dump': 'LDS Dump Service', 'apc-6547': 'APC 6547', 'apc-6548': 'APC 6548', 'apc-6549': 'APC 6549', 'fg-sysupdate': 'fg-sysupdate', 'sum': 'Software Update Manager', 'xdsxdm': '', 'sane-port': 'SANE Control Port', 'rp-reputation': 'Roaring Penguin IP Address Reputation Collection', 'affiliate': 'Affiliate', 'parsec-master': 'Parsec Masterserver', 'parsec-peer': 'Parsec Peer-to-Peer', 'parsec-game': 'Parsec Gameserver', 'joaJewelSuite': 'JOA Jewel Suite', 'odette-ftps': 'ODETTE-FTP over TLS/SSL', 'kftp-data': 'Kerberos V5 FTP Data', 'kftp': 'Kerberos V5 FTP Control', 'mcftp': 'Multicast FTP', 'ktelnet': 'Kerberos V5 Telnet', 'wago-service': 'WAGO Service and Update', 'nexgen': 'Allied Electronics NeXGen', 'afesc-mc': 'AFE Stock Channel M/C', 'cisco-vpath-tun': 'Cisco vPath Services Overlay', 'palcom-disc': 'PalCom Discovery', 'vocaltec-gold': 'Vocaltec Global Online Directory', 'p4p-portal': 'P4P Portal Service', 'vision-server': 'vision_server\nIANA assigned this well-formed service name as a replacement for "vision_server".', 'vision_server': 'vision_server', 'vision-elmd': 'vision_elmd\nIANA assigned this well-formed service name as a replacement for "vision_elmd".', 'vision_elmd': 'vision_elmd', 'vfbp-disc': 'Viscount Freedom Bridge Discovery', 'osaut': 'Osorno Automation', 'tsa': 'Tofino Security Appliance', 'babel': 'Babel Routing Protocol', 'kti-icad-srvr': 'KTI/ICAD Nameserver', 'e-design-net': 'e-Design network', 'e-design-web': 'e-Design web', 'ibprotocol': 'Internet Backplane Protocol', 'fibotrader-com': 'Fibotrader Communications', 'bmc-perf-agent': 'BMC PERFORM AGENT', 'bmc-perf-mgrd': 'BMC PERFORM MGRD', 'adi-gxp-srvprt': 'ADInstruments GxP Server', 'plysrv-http': 'PolyServe http', 'plysrv-https': 'PolyServe https', 'dgpf-exchg': 'DGPF Individual Exchange', 'smc-jmx': 'Sun Java Web Console JMX', 'smc-admin': 'Sun Web Console Admin', 'smc-http': 'SMC-HTTP', 'smc-https': 'SMC-HTTPS', 'hnmp': 'HNMP', 'hnm': 'Halcyon Network Manager', 'acnet': 'ACNET Control System Protocol', 'ambit-lm': 'ambit-lm', 'netmo-default': 'Netmo Default', 'netmo-http': 'Netmo HTTP', 'iccrushmore': 'ICCRUSHMORE', 'acctopus-st': 'Acctopus Status', 'muse': 'MUSE', 'ethoscan': 'EthoScan Service', 'xsmsvc': 'XenSource Management Service', 'bioserver': 'Biometrics Server', 'otlp': 'OTLP', 'jmact3': 'JMACT3', 'jmevt2': 'jmevt2', 'swismgr1': 'swismgr1', 'swismgr2': 'swismgr2', 'swistrap': 'swistrap', 'swispol': 'swispol', 'acmsoda': 'acmsoda', 'MobilitySrv': 'Mobility XE Protocol', 'iatp-highpri': 'IATP-highPri', 'iatp-normalpri': 'IATP-normalPri', 'afs3-fileserver': 'file server itself', 'afs3-callback': 'callbacks to cache managers', 'afs3-prserver': 'users & groups database', 'afs3-vlserver': 'volume location database', 'afs3-kaserver': 'AFS/Kerberos authentication service', 'afs3-volser': 'volume managment server', 'afs3-errors': 'error interpretation service', 'afs3-bos': 'basic overseer process', 'afs3-update': 'server-to-server updater', 'afs3-rmtsys': 'remote cache manager service', 'ups-onlinet': 'onlinet uninterruptable power supplies', 'talon-disc': 'Talon Discovery Port', 'talon-engine': 'Talon Engine', 'microtalon-dis': 'Microtalon Discovery', 'microtalon-com': 'Microtalon Communications', 'talon-webserver': 'Talon Webserver', 'doceri-view': 'doceri drawing service screen view', 'dpserve': 'DP Serve', 'dpserveadmin': 'DP Serve Admin', 'ctdp': 'CT Discovery Protocol', 'ct2nmcs': 'Comtech T2 NMCS', 'vmsvc': 'Vormetric service', 'vmsvc-2': 'Vormetric Service II', 'op-probe': 'ObjectPlanet probe', 'quest-disc': 'Quest application level network service discovery', 'arcp': 'ARCP', 'iwg1': 'IWGADTS Aircraft Housekeeping Message', 'empowerid': 'EmpowerID Communication', 'lazy-ptop': 'lazy-ptop', 'font-service': 'X Font Service', 'elcn': 'Embedded Light Control Network', 'aes-x170': 'AES-X170', 'virprot-lm': 'Virtual Prototypes License Manager', 'scenidm': 'intelligent data manager', 'scenccs': 'Catalog Content Search', 'cabsm-comm': 'CA BSM Comm', 'caistoragemgr': 'CA Storage Manager', 'cacsambroker': 'CA Connection Broker', 'fsr': 'File System Repository Agent', 'doc-server': 'Document WCF Server', 'aruba-server': 'Aruba eDiscovery Server', 'ccag-pib': 'Consequor Consulting Process Integration Bridge', 'nsrp': 'Adaptive Name/Service Resolution', 'drm-production': 'Discovery and Retention Mgt Production', 'clutild': 'Clutild', 'fodms': 'FODMS FLIP', 'dlip': 'DLIP', 'ramp': 'Registry A $ M Protocol', 'cnap': 'Calypso Network Access Protocol', 'watchme-7272': 'WatchMe Monitoring 7272', 'oma-rlp': 'OMA Roaming Location', 'oma-rlp-s': 'OMA Roaming Location SEC', 'oma-ulp': 'OMA UserPlane Location', 'oma-ilp': 'OMA Internal Location Protocol', 'oma-ilp-s': 'OMA Internal Location Secure Protocol', 'oma-dcdocbs': 'OMA Dynamic Content Delivery over CBS', 'ctxlic': 'Citrix Licensing', 'itactionserver1': 'ITACTIONSERVER 1', 'itactionserver2': 'ITACTIONSERVER 2', 'mzca-alert': 'eventACTION/ussACTION (MZCA) alert', 'lcm-server': 'LifeKeeper Communications', 'mindfilesys': 'mind-file system server', 'mrssrendezvous': 'mrss-rendezvous server', 'nfoldman': 'nFoldMan Remote Publish', 'fse': 'File system export of backup images', 'winqedit': 'winqedit', 'hexarc': 'Hexarc Command Language', 'rtps-discovery': 'RTPS Discovery', 'rtps-dd-ut': 'RTPS Data-Distribution User-Traffic', 'rtps-dd-mt': 'RTPS Data-Distribution Meta-Traffic', 'ionixnetmon': 'Ionix Network Monitor', 'mtportmon': 'Matisse Port Monitor', 'pmdmgr': 'OpenView DM Postmaster Manager', 'oveadmgr': 'OpenView DM Event Agent Manager', 'ovladmgr': 'OpenView DM Log Agent Manager', 'opi-sock': 'OpenView DM rqt communication', 'xmpv7': 'OpenView DM xmpv7 api pipe', 'pmd': 'OpenView DM ovc/xmpv3 api pipe', 'faximum': 'Faximum', 'oracleas-https': 'Oracle Application Server HTTPS', 'rise': 'Rise: The Vieneo Province', 'telops-lmd': 'telops-lmd', 'silhouette': 'Silhouette User', 'ovbus': 'HP OpenView Bus Daemon', 'ovhpas': 'HP OpenView Application Server', 'pafec-lm': 'pafec-lm', 'saratoga': 'Saratoga Transfer Protocol', 'atul': 'atul server', 'nta-ds': 'FlowAnalyzer DisplayServer', 'nta-us': 'FlowAnalyzer UtilityServer', 'cfs': 'Cisco Fabric service', 'cwmp': 'DSL Forum CWMP', 'tidp': 'Threat Information Distribution Protocol', 'nls-tl': 'Network Layer Signaling Transport Layer', 'cloudsignaling': 'Cloud Signaling Service', 'sncp': 'Sniffer Command Protocol', 'vsi-omega': 'VSI Omega', 'aries-kfinder': 'Aries Kfinder', 'sun-lm': 'Sun License Manager', 'indi': 'Instrument Neutral Distributed Interface', 'soap-http': 'SOAP Service Port', 'zen-pawn': 'Primary Agent Work Notification', 'xdas': 'OpenXDAS Wire Protocol', 'pmdfmgt': 'PMDF Management', 'cuseeme': 'bonjour-cuseeme', 'imqtunnels': 'iMQ SSL tunnel', 'imqtunnel': 'iMQ Tunnel', 'imqbrokerd': 'iMQ Broker Rendezvous', 'sun-user-https': 'Sun App Server - HTTPS', 'pando-pub': 'Pando Media Public Distribution', 'collaber': 'Collaber Network Service', 'klio': 'KLIO communications', 'sync-em7': 'EM7 Dynamic Updates', 'scinet': 'scientia.net', 'medimageportal': 'MedImage Portal', 'nsdeepfreezectl': 'Novell Snap-in Deep Freeze Control', 'nitrogen': 'Nitrogen Service', 'freezexservice': 'FreezeX Console Service', 'trident-data': 'Trident Systems Data', 'smip': 'Smith Protocol over IP', 'aiagent': 'HP Enterprise Discovery Agent', 'scriptview': 'ScriptView Network', 'sstp-1': 'Sakura Script Transfer Protocol', 'raqmon-pdu': 'RAQMON PDU', 'prgp': 'Put/Run/Get Protocol', 'cbt': 'cbt', 'interwise': 'Interwise', 'vstat': 'VSTAT', 'accu-lmgr': 'accu-lmgr', 'minivend': 'MINIVEND', 'popup-reminders': 'Popup Reminders Receive', 'office-tools': 'Office Tools Pro Receive', 'q3ade': 'Q3ADE Cluster Service', 'pnet-conn': 'Propel Connector port', 'pnet-enc': 'Propel Encoder port', 'altbsdp': 'Alternate BSDP Service', 'asr': 'Apple Software Restore', 'ssp-client': 'Secure Server Protocol - client', 'rbt-wanopt': 'Riverbed WAN Optimization Protocol', 'apc-7845': 'APC 7845', 'apc-7846': 'APC 7846', 'mipv6tls': 'TLS-based Mobile IPv6 Security', 'pss': 'Pearson', 'ubroker': 'Universal Broker', 'mevent': 'Multicast Event', 'tnos-sp': 'TNOS Service Protocol', 'tnos-dp': 'TNOS shell Protocol', 'tnos-dps': 'TNOS Secure DiaguardProtocol', 'qo-secure': 'QuickObjects secure port', 't2-drm': 'Tier 2 Data Resource Manager', 't2-brm': 'Tier 2 Business Rules Manager', 'supercell': 'Supercell', 'micromuse-ncps': 'Micromuse-ncps', 'quest-vista': 'Quest Vista', 'sossd-disc': 'Spotlight on SQL Server Desktop Agent Discovery', 'usicontentpush': 'USI Content Push Service', 'irdmi2': 'iRDMI2', 'irdmi': 'iRDMI', 'vcom-tunnel': 'VCOM Tunnel', 'teradataordbms': 'Teradata ORDBMS', 'mcreport': 'Mulberry Connect Reporting Service', 'mxi': 'MXI Generation II for z/OS', 'http-alt': 'HTTP Alternate', 'qbdb': 'QB DB Dynamic Port', 'intu-ec-svcdisc': 'Intuit Entitlement Service and Discovery', 'intu-ec-client': 'Intuit Entitlement Client', 'oa-system': 'oa-system', 'ca-audit-da': 'CA Audit Distribution Agent', 'ca-audit-ds': 'CA Audit Distribution Server', 'pro-ed': 'ProEd', 'mindprint': 'MindPrint', 'vantronix-mgmt': '.vantronix Management', 'ampify': 'Ampify Messaging Protocol', 'senomix01': 'Senomix Timesheets Server', 'senomix02': 'Senomix Timesheets Client [1 year assignment]', 'senomix03': 'Senomix Timesheets Server [1 year assignment]', 'senomix04': 'Senomix Timesheets Server [1 year assignment]', 'senomix05': 'Senomix Timesheets Server [1 year assignment]', 'senomix06': 'Senomix Timesheets Client [1 year assignment]', 'senomix07': 'Senomix Timesheets Client [1 year assignment]', 'senomix08': 'Senomix Timesheets Client [1 year assignment]', 'aero': 'Asymmetric Extended Route Optimization (AERO)', 'gadugadu': 'Gadu-Gadu', 'http-alt': 'HTTP Alternate (see port 80)', 'sunproxyadmin': 'Sun Proxy Admin Service', 'us-cli': 'Utilistor (Client)', 'us-srv': 'Utilistor (Server)', 'd-s-n': 'Distributed SCADA Networking Rendezvous Port', 'simplifymedia': 'Simplify Media SPP Protocol', 'radan-http': 'Radan HTTP', 'sac': 'SAC Port Id', 'xprint-server': 'Xprint Server', 'mtl8000-matrix': 'MTL8000 Matrix', 'cp-cluster': 'Check Point Clustering', 'privoxy': 'Privoxy HTTP proxy', 'apollo-data': 'Apollo Data Port', 'apollo-admin': 'Apollo Admin Port', 'paycash-online': 'PayCash Online Protocol', 'paycash-wbp': 'PayCash Wallet-Browser', 'indigo-vrmi': 'INDIGO-VRMI', 'indigo-vbcp': 'INDIGO-VBCP', 'dbabble': 'dbabble', 'isdd': 'i-SDD file transfer', 'eor-game': 'Edge of Reality game data', 'patrol': 'Patrol', 'patrol-snmp': 'Patrol SNMP', 'vmware-fdm': 'VMware Fault Domain Manager', 'itach': 'Remote iTach Connection', 'spytechphone': 'SpyTech Phone Service', 'blp1': 'Bloomberg data API', 'blp2': 'Bloomberg feed', 'vvr-data': 'VVR DATA', 'trivnet1': 'TRIVNET', 'trivnet2': 'TRIVNET', 'aesop': 'Audio+Ethernet Standard Open Protocol', 'lm-perfworks': 'LM Perfworks', 'lm-instmgr': 'LM Instmgr', 'lm-dta': 'LM Dta', 'lm-sserver': 'LM SServer', 'lm-webwatcher': 'LM Webwatcher', 'rexecj': 'RexecJ Server', 'synapse-nhttps': 'Synapse Non Blocking HTTPS', 'pando-sec': 'Pando Media Controlled Distribution', 'synapse-nhttp': 'Synapse Non Blocking HTTP', 'blp3': 'Bloomberg professional', 'blp4': 'Bloomberg intelligent client', 'tmi': 'Transport Management Interface', 'amberon': 'Amberon PPC/PPS', 'tnp-discover': 'Thin(ium) Network Protocol', 'tnp': 'Thin(ium) Network Protocol', 'server-find': 'Server Find', 'cruise-enum': 'Cruise ENUM', 'cruise-swroute': 'Cruise SWROUTE', 'cruise-config': 'Cruise CONFIG', 'cruise-diags': 'Cruise DIAGS', 'cruise-update': 'Cruise UPDATE', 'm2mservices': 'M2m Services', 'cvd': 'cvd', 'sabarsd': 'sabarsd', 'abarsd': 'abarsd', 'admind': 'admind', 'espeech': 'eSpeech Session Protocol', 'espeech-rtp': 'eSpeech RTP Protocol', 'cybro-a-bus': 'CyBro A-bus Protocol', 'pcsync-https': 'PCsync HTTPS', 'pcsync-http': 'PCsync HTTP', 'npmp': 'npmp', 'otv': 'Overlay Transport Virtualization (OTV)', 'vp2p': 'Virtual Point to Point', 'noteshare': 'AquaMinds NoteShare', 'fmtp': 'Flight Message Transfer Protocol', 'cmtp-av': 'CYTEL Message Transfer Audio and Video', 'rtsp-alt': 'RTSP Alternate (see port 554)', 'd-fence': 'SYMAX D-FENCE', 'oap-admin': 'Object Access Protocol Administration', 'asterix': 'Surveillance Data', 'canon-cpp-disc': 'Canon Compact Printer Protocol Discovery', 'canon-mfnp': 'Canon MFNP Service', 'canon-bjnp1': 'Canon BJNP Port 1', 'canon-bjnp2': 'Canon BJNP Port 2', 'canon-bjnp3': 'Canon BJNP Port 3', 'canon-bjnp4': 'Canon BJNP Port 4', 'msi-cps-rm-disc': 'Motorola Solutions Customer Programming Software for Radio Management Discovery', 'sun-as-jmxrmi': 'Sun App Server - JMX/RMI', 'vnyx': 'VNYX Primary Port', 'dtp-net': 'DASGIP Net Services', 'ibus': 'iBus', 'mc-appserver': 'MC-APPSERVER', 'openqueue': 'OPENQUEUE', 'ultraseek-http': 'Ultraseek HTTP', 'dpap': 'Digital Photo Access Protocol (iPhoto)', 'msgclnt': 'Message Client', 'msgsrvr': 'Message Server', 'acd-pm': 'Accedian Performance Measurement', 'sunwebadmin': 'Sun Web Server Admin Service', 'truecm': 'truecm', 'dxspider': 'dxspider linking protocol', 'cddbp-alt': 'CDDBP', 'secure-mqtt': 'Secure MQTT', 'ddi-udp-1': 'NewsEDGE server UDP (UDP 1)', 'ddi-udp-2': 'NewsEDGE server broadcast', 'ddi-udp-3': 'NewsEDGE client broadcast', 'ddi-udp-4': 'Desktop Data UDP 3: NESS application', 'ddi-udp-5': 'Desktop Data UDP 4: FARM product', 'ddi-udp-6': 'Desktop Data UDP 5: NewsEDGE/Web application', 'ddi-udp-7': 'Desktop Data UDP 6: COAL application', 'ospf-lite': 'ospf-lite', 'jmb-cds1': 'JMB-CDS 1', 'jmb-cds2': 'JMB-CDS 2', 'manyone-http': 'manyone-http', 'manyone-xml': 'manyone-xml', 'wcbackup': 'Windows Client Backup', 'dragonfly': 'Dragonfly System Service', 'cumulus-admin': 'Cumulus Admin Port', 'sunwebadmins': 'Sun Web Server SSL Admin Service', 'http-wmap': 'webmail HTTP service', 'https-wmap': 'webmail HTTPS service', 'bctp': 'Brodos Crypto Trade Protocol', 'cslistener': 'CSlistener', 'etlservicemgr': 'ETL Service Manager', 'dynamid': 'DynamID authentication', 'ogs-client': 'Open Grid Services Client', 'pichat': 'Pichat Server', 'tambora': 'TAMBORA', 'panagolin-ident': 'Pangolin Identification', 'paragent': 'PrivateArk Remote Agent', 'swa-1': 'Secure Web Access - 1', 'swa-2': 'Secure Web Access - 2', 'swa-3': 'Secure Web Access - 3', 'swa-4': 'Secure Web Access - 4', 'glrpc': 'Groove GLRPC', 'aurora': 'IBM AURORA Performance Visualizer', 'ibm-rsyscon': 'IBM Remote System Console', 'net2display': 'Vesa Net2Display', 'classic': 'Classic Data Server', 'sqlexec': 'IBM Informix SQL Interface', 'sqlexec-ssl': 'IBM Informix SQL Interface - Encrypted', 'websm': 'WebSM', 'xmltec-xmlmail': 'xmltec-xmlmail', 'XmlIpcRegSvc': 'Xml-Ipc Server Reg', 'hp-pdl-datastr': 'PDL Data Streaming Port', 'pdl-datastream': 'Printer PDL Data Stream', 'bacula-dir': 'Bacula Director', 'bacula-fd': 'Bacula File Daemon', 'bacula-sd': 'Bacula Storage Daemon', 'peerwire': 'PeerWire', 'xadmin': 'Xadmin Control Service', 'astergate-disc': 'Astergate Discovery Service', 'mxit': 'MXit Instant Messaging', 'dddp': 'Dynamic Device Discovery', 'apani1': 'apani1', 'apani2': 'apani2', 'apani3': 'apani3', 'apani4': 'apani4', 'apani5': 'apani5', 'sun-as-jpda': 'Sun AppSvr JPDA', 'wap-wsp': 'WAP connectionless session service', 'wap-wsp-wtp': 'WAP session service', 'wap-wsp-s': 'WAP secure connectionless session service', 'wap-wsp-wtp-s': 'WAP secure session service', 'wap-vcard': 'WAP vCard', 'wap-vcal': 'WAP vCal', 'wap-vcard-s': 'WAP vCard Secure', 'wap-vcal-s': 'WAP vCal Secure', 'rjcdb-vcards': 'rjcdb vCard', 'almobile-system': 'ALMobile System Service', 'oma-mlp': 'OMA Mobile Location Protocol', 'oma-mlp-s': 'OMA Mobile Location Protocol Secure', 'serverviewdbms': 'Server View dbms access', 'serverstart': 'ServerStart RemoteControl', 'ipdcesgbs': 'IPDC ESG BootstrapService', 'insis': 'Integrated Setup and Install Service', 'acme': 'Aionex Communication Management Engine', 'fsc-port': 'FSC Communication Port', 'teamcoherence': 'QSC Team Coherence', 'mon': 'Manager On Network', 'pegasus': 'Pegasus GPS Platform', 'pegasus-ctl': 'Pegaus GPS System Control Interface', 'pgps': 'Predicted GPS', 'swtp-port1': 'SofaWare transport port 1', 'swtp-port2': 'SofaWare transport port 2', 'callwaveiam': 'CallWaveIAM', 'visd': 'VERITAS Information Serve', 'n2h2server': 'N2H2 Filter Service Port', 'n2receive': 'n2 monitoring receiver', 'cumulus': 'Cumulus', 'armtechdaemon': 'ArmTech Daemon', 'storview': 'StorView Client', 'armcenterhttp': 'ARMCenter http Service', 'armcenterhttps': 'ARMCenter https Service', 'vrace': 'Virtual Racing Service', 'secure-ts': 'PKIX TimeStamp over TLS', 'guibase': 'guibase', 'mpidcmgr': 'MpIdcMgr', 'mphlpdmc': 'Mphlpdmc', 'ctechlicensing': 'C Tech Licensing', 'fjdmimgr': 'fjdmimgr', 'boxp': 'Brivs! Open Extensible Protocol', 'fjinvmgr': 'fjinvmgr', 'mpidcagt': 'MpIdcAgt', 'sec-t4net-srv': 'Samsung Twain for Network Server', 'sec-t4net-clt': 'Samsung Twain for Network Client', 'sec-pc2fax-srv': 'Samsung PC2FAX for Network Server', 'git': 'git pack transfer service', 'tungsten-https': 'WSO2 Tungsten HTTPS', 'wso2esb-console': 'WSO2 ESB Administration Console HTTPS', 'sntlkeyssrvr': 'Sentinel Keys Server', 'ismserver': 'ismserver', 'sma-spw': 'SMA Speedwire', 'mngsuite': 'Management Suite Remote Control', 'laes-bf': 'Surveillance buffering function', 'trispen-sra': 'Trispen Secure Remote Access', 'ldgateway': 'LANDesk Gateway', 'cba8': 'LANDesk Management Agent (cba8)', 'msgsys': 'Message System', 'pds': 'Ping Discovery Service', 'mercury-disc': 'Mercury Discovery', 'pd-admin': 'PD Administration', 'vscp': 'Very Simple Ctrl Protocol', 'robix': 'Robix', 'micromuse-ncpw': 'MICROMUSE-NCPW', 'streamcomm-ds': 'StreamComm User Directory', 'condor': 'Condor Collector Service', 'odbcpathway': 'ODBC Pathway Service', 'uniport': 'UniPort SSO Controller', 'mc-comm': 'Mobile-C Communications', 'xmms2': 'Cross-platform Music Multiplexing System', 'tec5-sdctp': 'tec5 Spectral Device Control Protocol', 'client-wakeup': 'T-Mobile Client Wakeup Message', 'ccnx': 'Content Centric Networking', 'board-roar': 'Board M.I.T. Service', 'l5nas-parchan': 'L5NAS Parallel Channel', 'board-voip': 'Board M.I.T. Synchronous Collaboration', 'rasadv': 'rasadv', 'tungsten-http': 'WSO2 Tungsten HTTP', 'davsrc': 'WebDav Source Port', 'sstp-2': 'Sakura Script Transfer Protocol-2', 'davsrcs': 'WebDAV Source TLS/SSL', 'sapv1': 'Session Announcement v1', 'kca-service': 'The KX509 Kerberized Certificate Issuance Protocol in Use in 2012', 'cyborg-systems': 'CYBORG Systems', 'gt-proxy': 'Port for Cable network related data proxy or repeater', 'monkeycom': 'MonkeyCom', 'sctp-tunneling': 'SCTP TUNNELING', 'iua': 'IUA', 'enrp': 'enrp server channel', 'multicast-ping': 'Multicast Ping Protocol', 'domaintime': 'domaintime', 'sype-transport': 'SYPECom Transport Protocol', 'apc-9950': 'APC 9950', 'apc-9951': 'APC 9951', 'apc-9952': 'APC 9952', 'acis': '9953', 'alljoyn-mcm': 'Contact Port for AllJoyn multiplexed constrained messaging', 'alljoyn': 'Alljoyn Name Service', 'odnsp': 'OKI Data Network Setting Protocol', 'dsm-scm-target': 'DSM/SCM Target Interface', 'osm-appsrvr': 'OSM Applet Server', 'osm-oev': 'OSM Event Server', 'palace-1': 'OnLive-1', 'palace-2': 'OnLive-2', 'palace-3': 'OnLive-3', 'palace-4': 'Palace-4', 'palace-5': 'Palace-5', 'palace-6': 'Palace-6', 'distinct32': 'Distinct32', 'distinct': 'distinct', 'ndmp': 'Network Data Management Protocol', 'scp-config': 'SCP Configuration', 'documentum': 'EMC-Documentum Content Server Product', 'documentum-s': 'EMC-Documentum Content Server Product\nIANA assigned this well-formed service name as a replacement for "documentum_s".', 'documentum_s': 'EMC-Documentum Content Server Product', 'mvs-capacity': 'MVS Capacity', 'octopus': 'Octopus Multiplexer', 'swdtp-sv': 'Systemwalker Desktop Patrol', 'zabbix-agent': 'Zabbix Agent', 'zabbix-trapper': 'Zabbix Trapper', 'amanda': 'Amanda', 'famdc': 'FAM Archive Server', 'itap-ddtp': 'VERITAS ITAP DDTP', 'ezmeeting-2': 'eZmeeting', 'ezproxy-2': 'eZproxy', 'ezrelay': 'eZrelay', 'swdtp': 'Systemwalker Desktop Patrol', 'bctp-server': 'VERITAS BCTP, server', 'nmea-0183': 'NMEA-0183 Navigational Data', 'nmea-onenet': 'NMEA OneNet multicast messaging', 'netiq-endpoint': 'NetIQ Endpoint', 'netiq-qcheck': 'NetIQ Qcheck', 'netiq-endpt': 'NetIQ Endpoint', 'netiq-voipa': 'NetIQ VoIP Assessor', 'iqrm': 'NetIQ IQCResource Managament Svc', 'bmc-perf-sd': 'BMC-PERFORM-SERVICE DAEMON', 'qb-db-server': 'QB Database Server', 'snmpdtls': 'SNMP-DTLS', 'snmpdtls-trap': 'SNMP-Trap-DTLS', 'trisoap': 'Trigence AE Soap Service', 'rscs': 'Remote Server Control and Test Service', 'apollo-relay': 'Apollo Relay Port', 'axis-wimp-port': 'Axis WIMP Port', 'blocks': 'Blocks', 'hip-nat-t': 'HIP NAT-Traversal', 'MOS-lower': 'MOS Media Object Metadata Port', 'MOS-upper': 'MOS Running Order Port', 'MOS-aux': 'MOS Low Priority Port', 'MOS-soap': 'MOS SOAP Default Port', 'MOS-soap-opt': 'MOS SOAP Optional Port', 'gap': 'Gestor de Acaparamiento para Pocket PCs', 'lpdg': 'LUCIA Pareja Data Group', 'nmc-disc': 'Nuance Mobile Care Discovery', 'helix': 'Helix Client/Server', 'rmiaux': 'Auxiliary RMI Port', 'irisa': 'IRISA', 'metasys': 'Metasys', 'sgi-lk': 'SGI LK Licensing service', 'vce': 'Viral Computing Environment (VCE)', 'dicom': 'DICOM', 'suncacao-snmp': 'sun cacao snmp access point', 'suncacao-jmxmp': 'sun cacao JMX-remoting access point', 'suncacao-rmi': 'sun cacao rmi registry access point', 'suncacao-csa': 'sun cacao command-streaming access point', 'suncacao-websvc': 'sun cacao web service access point', 'snss': 'Surgical Notes Security Service Discovery (SNSS)', 'smsqp': 'smsqp', 'wifree': 'WiFree Service', 'memcache': 'Memory cache service', 'imip': 'IMIP', 'imip-channels': 'IMIP Channels Port', 'arena-server': 'Arena Server Listen', 'atm-uhas': 'ATM UHAS', 'hkp': 'OpenPGP HTTP Keyserver', 'tempest-port': 'Tempest Protocol Port', 'h323callsigalt': 'h323 Call Signal Alternate', 'intrepid-ssl': 'Intrepid SSL', 'lanschool-mpt': 'Lanschool Multipoint', 'xoraya': 'X2E Xoraya Multichannel protocol', 'x2e-disc': 'X2E service discovery protocol', 'sysinfo-sp': 'SysInfo Sercice Protocol', 'entextxid': 'IBM Enterprise Extender SNA XID Exchange', 'entextnetwk': 'IBM Enterprise Extender SNA COS Network Priority', 'entexthigh': 'IBM Enterprise Extender SNA COS High Priority', 'entextmed': 'IBM Enterprise Extender SNA COS Medium Priority', 'entextlow': 'IBM Enterprise Extender SNA COS Low Priority', 'dbisamserver1': 'DBISAM Database Server - Regular', 'dbisamserver2': 'DBISAM Database Server - Admin', 'accuracer': 'Accuracer Database System Server', 'accuracer-dbms': 'Accuracer Database System Admin', 'ghvpn': 'Green Hills VPN', 'vipera': 'Vipera Messaging Service', 'vipera-ssl': 'Vipera Messaging Service over SSL Communication', 'rets-ssl': 'RETS over SSL', 'nupaper-ss': 'NuPaper Session Service', 'cawas': 'CA Web Access Service', 'hivep': 'HiveP', 'linogridengine': 'LinoGrid Engine', 'warehouse-sss': 'Warehouse Monitoring Syst SSS', 'warehouse': 'Warehouse Monitoring Syst', 'italk': 'Italk Chat System', 'tsaf': 'tsaf port', 'i-zipqd': 'I-ZIPQD', 'bcslogc': 'Black Crow Software application logging', 'rs-pias': 'R&S Proxy Installation Assistant Service', 'emc-vcas-udp': 'EMV Virtual CAS Service Discovery', 'powwow-client': 'PowWow Client', 'powwow-server': 'PowWow Server', 'doip-disc': 'DoIP Discovery', 'bprd': 'BPRD Protocol (VERITAS NetBackup)', 'bpdbm': 'BPDBM Protocol (VERITAS NetBackup)', 'bpjava-msvc': 'BP Java MSVC Protocol', 'vnetd': 'Veritas Network Utility', 'bpcd': 'VERITAS NetBackup', 'vopied': 'VOPIED Protocol', 'nbdb': 'NetBackup Database', 'nomdb': 'Veritas-nomdb', 'dsmcc-config': 'DSMCC Config', 'dsmcc-session': 'DSMCC Session Messages', 'dsmcc-passthru': 'DSMCC Pass-Thru Messages', 'dsmcc-download': 'DSMCC Download Protocol', 'dsmcc-ccp': 'DSMCC Channel Change Protocol', 'ucontrol': 'Ultimate Control communication protocol', 'dta-systems': 'D-TA SYSTEMS', 'scotty-ft': 'SCOTTY High-Speed Filetransfer', 'sua': 'De-Registered', 'sage-best-com1': 'sage Best! Config Server 1', 'sage-best-com2': 'sage Best! Config Server 2', 'vcs-app': 'VCS Application', 'icpp': 'IceWall Cert Protocol', 'gcm-app': 'GCM Application', 'vrts-tdd': 'Veritas Traffic Director', 'vad': 'Veritas Application Director', 'cps': 'Fencing Server', 'ca-web-update': 'CA eTrust Web Update Service', 'hde-lcesrvr-1': 'hde-lcesrvr-1', 'hde-lcesrvr-2': 'hde-lcesrvr-2', 'hydap': 'Hypack Data Aquisition', 'v2g-secc': 'v2g Supply Equipment Communication Controller Discovery Protocol', 'xpilot': 'XPilot Contact Port', '3link': '3Link Negotiation', 'cisco-snat': 'Cisco Stateful NAT', 'bex-xr': 'Backup Express Restore Server', 'ptp': 'Picture Transfer Protocol', '2ping': '2ping Bi-Directional Ping Service', 'alfin': 'Automation and Control by REGULACE.ORG', 'sun-sea-port': 'Solaris SEA Port', 'etb4j': 'etb4j', 'pduncs': 'Policy Distribute, Update Notification', 'pdefmns': 'Policy definition and update management', 'netserialext1': 'Network Serial Extension Ports One', 'netserialext2': 'Network Serial Extension Ports Two', 'netserialext3': 'Network Serial Extension Ports Three', 'netserialext4': 'Network Serial Extension Ports Four', 'connected': 'Connected Corp', 'vtp': 'Vidder Tunnel Protocol', 'newbay-snc-mc': 'Newbay Mobile Client Update Service', 'sgcip': 'Simple Generic Client Interface Protocol', 'intel-rci-mp': 'INTEL-RCI-MP', 'amt-soap-http': 'Intel(R) AMT SOAP/HTTP', 'amt-soap-https': 'Intel(R) AMT SOAP/HTTPS', 'amt-redir-tcp': 'Intel(R) AMT Redirection/TCP', 'amt-redir-tls': 'Intel(R) AMT Redirection/TLS', 'isode-dua': '', 'soundsvirtual': 'Sounds Virtual', 'chipper': 'Chipper', 'avdecc': 'IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control', 'cpsp': 'Control Plane Synchronization Protocol (SPSP)', 'integrius-stp': 'Integrius Secure Tunnel Protocol', 'ssh-mgmt': 'SSH Tectia Manager', 'db-lsp-disc': 'Dropbox LanSync Discovery', 'ea': 'Eclipse Aviation', 'zep': 'Encap. ZigBee Packets', 'zigbee-ip': 'ZigBee IP Transport Service', 'zigbee-ips': 'ZigBee IP Transport Secure Service', 'biimenu': 'Beckman Instruments, Inc.', 'opsec-cvp': 'OPSEC CVP', 'opsec-ufp': 'OPSEC UFP', 'opsec-sam': 'OPSEC SAM', 'opsec-lea': 'OPSEC LEA', 'opsec-omi': 'OPSEC OMI', 'ohsc': 'Occupational Health Sc', 'opsec-ela': 'OPSEC ELA', 'checkpoint-rtm': 'Check Point RTM', 'gv-pf': 'GV NetConfig Service', 'ac-cluster': 'AC Cluster', 'rds-ib': 'Reliable Datagram Service', 'rds-ip': 'Reliable Datagram Service over IP', 'ique': 'IQue Protocol', 'infotos': 'Infotos', 'apc-necmp': 'APCNECMP', 'igrid': 'iGrid Server', 'opsec-uaa': 'OPSEC UAA', 'ua-secureagent': 'UserAuthority SecureAgent', 'keysrvr': 'Key Server for SASSAFRAS', 'keyshadow': 'Key Shadow for SASSAFRAS', 'mtrgtrans': 'mtrgtrans', 'hp-sco': 'hp-sco', 'hp-sca': 'hp-sca', 'hp-sessmon': 'HP-SESSMON', 'fxuptp': 'FXUPTP', 'sxuptp': 'SXUPTP', 'jcp': 'JCP Client', 'dnp-sec': 'Distributed Network Protocol - Secure', 'dnp': 'DNP', 'microsan': 'MicroSAN', 'commtact-http': 'Commtact HTTP', 'commtact-https': 'Commtact HTTPS', 'openwebnet': 'OpenWebNet protocol for electric network', 'ss-idi-disc': 'Samsung Interdevice Interaction discovery', 'opendeploy': 'OpenDeploy Listener', 'nburn-id': 'NetBurner ID Port\nIANA assigned this well-formed service name as a replacement for "nburn_id".', 'nburn_id': 'NetBurner ID Port', 'tmophl7mts': 'TMOP HL7 Message Transfer Service', 'mountd': 'NFS mount protocol', 'nfsrdma': 'Network File System (NFS) over RDMA', 'tolfab': 'TOLfab Data Change', 'ipdtp-port': 'IPD Tunneling Port', 'ipulse-ics': 'iPulse-ICS', 'emwavemsg': 'emWave Message Service', 'track': 'Track', 'athand-mmp': 'AT Hand MMP', 'irtrans': 'IRTrans Control', 'dfserver': 'MineScape Design File Server', 'vofr-gateway': 'VoFR Gateway', 'tvpm': 'TVNC Pro Multiplexing', 'webphone': 'webphone', 'netspeak-is': 'NetSpeak Corp. Directory Services', 'netspeak-cs': 'NetSpeak Corp. Connection Services', 'netspeak-acd': 'NetSpeak Corp. Automatic Call Distribution', 'netspeak-cps': 'NetSpeak Corp. Credit Processing System', 'snapenetio': 'SNAPenetIO', 'optocontrol': 'OptoControl', 'optohost002': 'Opto Host Port 2', 'optohost003': 'Opto Host Port 3', 'optohost004': 'Opto Host Port 4', 'optohost004': 'Opto Host Port 5', 'wnn6': 'wnn6', 'cis': 'CompactIS Tunnel', 'cis-secure': 'CompactIS Secure Tunnel', 'WibuKey': 'WibuKey Standard WkLan', 'CodeMeter': 'CodeMeter Standard', 'vocaltec-phone': 'Vocaltec Internet Phone', 'talikaserver': 'Talika Main Server', 'aws-brf': 'Telerate Information Platform LAN', 'brf-gw': 'Telerate Information Platform WAN', 'inovaport1': 'Inova LightLink Server Type 1', 'inovaport2': 'Inova LightLink Server Type 2', 'inovaport3': 'Inova LightLink Server Type 3', 'inovaport4': 'Inova LightLink Server Type 4', 'inovaport5': 'Inova LightLink Server Type 5', 'inovaport6': 'Inova LightLink Server Type 6', 's102': 'S102 application', 'elxmgmt': 'Emulex HBAnyware Remote Management', 'novar-dbase': 'Novar Data', 'novar-alarm': 'Novar Alarm', 'novar-global': 'Novar Global', 'med-ltp': 'med-ltp', 'med-fsp-rx': 'med-fsp-rx', 'med-fsp-tx': 'med-fsp-tx', 'med-supp': 'med-supp', 'med-ovw': 'med-ovw', 'med-ci': 'med-ci', 'med-net-svc': 'med-net-svc', 'filesphere': 'fileSphere', 'vista-4gl': 'Vista 4GL', 'ild': 'Isolv Local Directory', 'intel-rci': 'Intel RCI\nIANA assigned this well-formed service name as a replacement for "intel_rci".', 'intel_rci': 'Intel RCI', 'tonidods': 'Tonido Domain Server', 'binkp': 'BINKP', 'canditv': 'Canditv Message Service', 'flashfiler': 'FlashFiler', 'proactivate': 'Turbopower Proactivate', 'tcc-http': 'TCC User HTTP Service', 'assoc-disc': 'Device Association Discovery', 'find': 'Find Identification of Network Devices', 'icl-twobase1': 'icl-twobase1', 'icl-twobase2': 'icl-twobase2', 'icl-twobase3': 'icl-twobase3', 'icl-twobase4': 'icl-twobase4', 'icl-twobase5': 'icl-twobase5', 'icl-twobase6': 'icl-twobase6', 'icl-twobase7': 'icl-twobase7', 'icl-twobase8': 'icl-twobase8', 'icl-twobase9': 'icl-twobase9', 'icl-twobase10': 'icl-twobase10', 'vocaltec-hos': 'Vocaltec Address Server', 'tasp-net': 'TASP Network Comm', 'niobserver': 'NIObserver', 'nilinkanalyst': 'NILinkAnalyst', 'niprobe': 'NIProbe', 'bf-game': 'Bitfighter game server', 'bf-master': 'Bitfighter master server', 'quake': 'quake', 'scscp': 'Symbolic Computation Software Composability Protocol', 'wnn6-ds': 'wnn6-ds', 'ezproxy': 'eZproxy', 'ezmeeting': 'eZmeeting', 'k3software-svr': 'K3 Software-Server', 'k3software-cli': 'K3 Software-Client', 'exoline-udp': 'EXOline-UDP', 'exoconfig': 'EXOconfig', 'exonet': 'EXOnet', 'imagepump': 'ImagePump', 'jesmsjc': 'Job controller service', 'kopek-httphead': 'Kopek HTTP Head Port', 'ars-vista': 'ARS VISTA Application', 'tw-auth-key': 'Attribute Certificate Services', 'nxlmd': 'NX License Manager', 'siemensgsm': 'Siemens GSM', 'a27-ran-ran': 'A27 cdma2000 RAN Management', 'otmp': 'ObTools Message Protocol', 'pago-services1': 'Pago Services 1', 'pago-services2': 'Pago Services 2', 'kingdomsonline': 'Kingdoms Online (CraigAvenue)', 'ovobs': 'OpenView Service Desk Client', 'yawn': 'YaWN - Yet Another Windows Notifier', 'xqosd': 'XQoS network monitor', 'tetrinet': 'TetriNET Protocol', 'lm-mon': 'lm mon', 'gamesmith-port': 'GameSmith Port', 'iceedcp-tx': 'Embedded Device Configuration Protocol TX\nIANA assigned this well-formed service name as a replacement for "iceedcp_tx".', 'iceedcp_tx': 'Embedded Device Configuration Protocol TX', 'iceedcp-rx': 'Embedded Device Configuration Protocol RX\nIANA assigned this well-formed service name as a replacement for "iceedcp_rx".', 'iceedcp_rx': 'Embedded Device Configuration Protocol RX', 'iracinghelper': 'iRacing helper service', 't1distproc60': 'T1 Distributed Processor', 'apm-link': 'Access Point Manager Link', 'sec-ntb-clnt': 'SecureNotebook-CLNT', 'DMExpress': 'DMExpress', 'filenet-powsrm': 'FileNet BPM WS-ReliableMessaging Client', 'filenet-tms': 'Filenet TMS', 'filenet-rpc': 'Filenet RPC', 'filenet-nch': 'Filenet NCH', 'filenet-rmi': 'FileNet RMI', 'filenet-pa': 'FileNET Process Analyzer', 'filenet-cm': 'FileNET Component Manager', 'filenet-re': 'FileNET Rules Engine', 'filenet-pch': 'Performance Clearinghouse', 'filenet-peior': 'FileNET BPM IOR', 'filenet-obrok': 'FileNet BPM CORBA', 'mlsn': 'Multiple Listing Service Network', 'idmgratm': 'Attachmate ID Manager', 'aurora-balaena': 'Aurora (Balaena Ltd)', 'diamondport': 'DiamondCentral Interface', 'speedtrace-disc': 'SpeedTrace TraceAgent Discovery', 'traceroute': 'traceroute use', 'snip-slave': 'SNIP Slave', 'turbonote-2': 'TurboNote Relay Server Default Port', 'p-net-local': 'P-Net on IP local', 'p-net-remote': 'P-Net on IP remote', 'profinet-rt': 'PROFInet RT Unicast', 'profinet-rtm': 'PROFInet RT Multicast', 'profinet-cm': 'PROFInet Context Manager', 'ethercat': 'EhterCAT Port', 'altova-lm-disc': 'Altova License Management Discovery', 'allpeers': 'AllPeers Network', 'kastenxpipe': 'KastenX Pipe', 'neckar': "science + computing's Venus Administration Port", 'unisys-eportal': 'Unisys ClearPath ePortal', 'galaxy7-data': 'Galaxy7 Data Tunnel', 'fairview': 'Fairview Message Service', 'agpolicy': 'AppGate Policy Server', 'turbonote-1': 'TurboNote Default Port', 'safetynetp': 'SafetyNET p', 'cscp': 'CSCP', 'csccredir': 'CSCCREDIR', 'csccfirewall': 'CSCCFIREWALL', 'ortec-disc': 'ORTEC Service Discovery', 'fs-qos': 'Foursticks QoS Protocol', 'crestron-cip': 'Crestron Control Port', 'crestron-ctp': 'Crestron Terminal Port', 'candp': 'Computer Associates network discovery protocol', 'candrp': 'CA discovery response', 'caerpc': 'CA eTrust RPC', 'reachout': 'REACHOUT', 'ndm-agent-port': 'NDM-AGENT-PORT', 'ip-provision': 'IP-PROVISION', 'shaperai-disc': 'Shaper Automation Server Management Discovery', 'eq3-config': 'EQ3 discovery and configuration', 'ew-disc-cmd': 'Cisco EnergyWise Discovery and Command Flooding', 'ciscocsdb': 'Cisco NetMgmt DB Ports', 'pmcd': 'PCP server (pmcd)', 'pmcdproxy': 'PCP server (pmcd) proxy', 'pcp': 'Port Control Protocol', 'domiq': 'DOMIQ Building Automation', 'rbr-debug': 'REALbasic Remote Debug', 'asihpi': 'AudioScience HPI', 'EtherNet-IP-2': 'EtherNet/IP messaging\nIANA assigned this well-formed service name as a replacement for "EtherNet/IP-2".', 'EtherNet/IP-2': 'EtherNet/IP messaging', 'asmp-mon': 'NSi AutoStore Status Monitoring Protocol device monitoring', 'invision-ag': 'InVision AG', 'eba': 'EBA PRISE', 'qdb2service': 'Qpuncture Data Access Service', 'ssr-servermgr': 'SSRServerMgr', 'mediabox': 'MediaBox Server', 'mbus': 'Message Bus', 'dbbrowse': 'Databeam Corporation', 'directplaysrvr': 'Direct Play Server', 'ap': 'ALC Protocol', 'bacnet': 'Building Automation and Control Networks', 'nimcontroller': 'Nimbus Controller', 'nimspooler': 'Nimbus Spooler', 'nimhub': 'Nimbus Hub', 'nimgtw': 'Nimbus Gateway', 'isnetserv': 'Image Systems Network Services', 'blp5': 'Bloomberg locator', 'com-bardac-dw': 'com-bardac-dw', 'iqobject': 'iqobject', 'acs-ctl-ds': 'Access Control Device', 'acs-ctl-gw': 'Access Control Gateway', 'amba-cam': 'Ambarella Cameras', 'apple-midi': 'Apple MIDI', 'arcnet': 'Arcturus Networks Inc. Hardware Services', 'astnotify': 'Asterisk Caller-ID Notification Service', 'bluevertise': 'BlueVertise Network Protocol (BNP)', 'boundaryscan': 'Proprietary', 'clique': 'Clique Link-Local Multicast Chat Room', 'dbaudio': 'd&b audiotechnik remote network', 'dltimesync': 'Local Area Dynamic Time Synchronisation Protocol', 'dns-update': 'DNS Dynamic Update Service', 'edcp': 'LaCie Ethernet Disk Configuration Protocol', 'fl-purr': 'FilmLight Cluster Power Control Service', 'fv-cert': 'Fairview Certificate', 'fv-key': 'Fairview Key', 'fv-time': 'Fairview Time/Date', 'honeywell-vid': 'Honeywell Video Systems', 'htvncconf': 'HomeTouch Vnc Configuration', 'labyrinth': 'Labyrinth local multiplayer protocol', 'logicnode': 'Logic Pro Distributed Audio', 'macfoh-audio': 'MacFOH audio stream', 'macfoh-events': 'MacFOH show control events', 'macfoh-data': 'MacFOH realtime data', 'neoriders': 'NeoRiders Client Discovery Protocol', 'nextcap': 'Proprietary communication protocol for NextCap capture solution', 'ntx': 'Tenasys', 'olpc-activity1': 'One Laptop per Child activity', 'opencu': 'Conferencing Protocol', 'oscit': 'Open Sound Control Interface Transfer', 'p2pchat': 'Peer-to-Peer Chat (Sample Java Bonjour application)', 'parity': 'PA-R-I-Ty (Public Address - Radio - Intercom - Telefony)', 'psap': 'Progal Service Advertising Protocol', 'radioport': 'RadioPort Message Service', 'recolive-cc': 'Remote Camera Control', 'sip': 'Session Initiation Protocol, signalling protocol for VoIP', 'sleep-proxy': 'Sleep Proxy Server', 'teleport': 'teleport', 'wicop': 'WiFi Control Platform', 'x-plane9': 'x-plane9', 'yakumo': 'Yakumo iPhone OS Device Control Protocol', 'z-wave': 'Z-Wave Service Discovery', 'zeromq': 'High performance brokerless messaging'}
tcp_services = {'tcpmux': 'TCP Port Service Multiplexer', 'compressnet': 'Management Utility', 'compressnet': 'Compression Process', 'rje': 'Remote Job Entry', 'echo': 'Echo', 'discard': 'Discard', 'systat': 'Active Users', 'daytime': 'Daytime', 'qotd': 'Quote of the Day', 'msp': 'Message Send Protocol (historic)', 'chargen': 'Character Generator', 'ftp-data': 'File Transfer [Default Data]', 'ftp': 'File Transfer [Control]', 'ssh': 'The Secure Shell (SSH) Protocol', 'telnet': 'Telnet', 'smtp': 'Simple Mail Transfer', 'nsw-fe': 'NSW User System FE', 'msg-icp': 'MSG ICP', 'msg-auth': 'MSG Authentication', 'dsp': 'Display Support Protocol', 'time': 'Time', 'rap': 'Route Access Protocol', 'rlp': 'Resource Location Protocol', 'graphics': 'Graphics', 'name': 'Host Name Server', 'nameserver': 'Host Name Server', 'nicname': 'Who Is', 'mpm-flags': 'MPM FLAGS Protocol', 'mpm': 'Message Processing Module [recv]', 'mpm-snd': 'MPM [default send]', 'ni-ftp': 'NI FTP', 'auditd': 'Digital Audit Daemon', 'tacacs': 'Login Host Protocol (TACACS)', 're-mail-ck': 'Remote Mail Checking Protocol', 'la-maint': 'IMP Logical Address Maintenance', 'xns-time': 'XNS Time Protocol', 'domain': 'Domain Name Server', 'xns-ch': 'XNS Clearinghouse', 'isi-gl': 'ISI Graphics Language', 'xns-auth': 'XNS Authentication', 'xns-mail': 'XNS Mail', 'ni-mail': 'NI MAIL', 'acas': 'ACA Services', 'whoispp': 'whois++\nIANA assigned this well-formed service name as a replacement for "whois++".', 'whois++': 'whois++', 'covia': 'Communications Integrator (CI)', 'tacacs-ds': 'TACACS-Database Service', 'sql-net': 'Oracle SQL*NET\nIANA assigned this well-formed service name as a replacement for "sql*net".', 'sql*net': 'Oracle SQL*NET', 'bootps': 'Bootstrap Protocol Server', 'bootpc': 'Bootstrap Protocol Client', 'tftp': 'Trivial File Transfer', 'gopher': 'Gopher', 'netrjs-1': 'Remote Job Service', 'netrjs-2': 'Remote Job Service', 'netrjs-3': 'Remote Job Service', 'netrjs-4': 'Remote Job Service', 'deos': 'Distributed External Object Store', 'vettcp': 'vettcp', 'finger': 'Finger', 'http': 'World Wide Web HTTP', 'www': 'World Wide Web HTTP', 'www-http': 'World Wide Web HTTP', 'xfer': 'XFER Utility', 'mit-ml-dev': 'MIT ML Device', 'ctf': 'Common Trace Facility', 'mit-ml-dev': 'MIT ML Device', 'mfcobol': 'Micro Focus Cobol', 'kerberos': 'Kerberos', 'su-mit-tg': 'SU/MIT Telnet Gateway', 'dnsix': 'DNSIX Securit Attribute Token Map', 'mit-dov': 'MIT Dover Spooler', 'npp': 'Network Printing Protocol', 'dcp': 'Device Control Protocol', 'objcall': 'Tivoli Object Dispatcher', 'supdup': 'SUPDUP', 'dixie': 'DIXIE Protocol Specification', 'swift-rvf': 'Swift Remote Virtural File Protocol', 'tacnews': 'TAC News', 'metagram': 'Metagram Relay', 'hostname': 'NIC Host Name Server', 'iso-tsap': 'ISO-TSAP Class 0', 'gppitnp': 'Genesis Point-to-Point Trans Net', 'acr-nema': 'ACR-NEMA Digital Imag. & Comm. 300', 'cso': 'CCSO name server protocol', 'csnet-ns': 'Mailbox Name Nameserver', '3com-tsmux': '3COM-TSMUX', 'rtelnet': 'Remote Telnet Service', 'snagas': 'SNA Gateway Access Server', 'pop2': 'Post Office Protocol - Version 2', 'pop3': 'Post Office Protocol - Version 3', 'sunrpc': 'SUN Remote Procedure Call', 'mcidas': 'McIDAS Data Transmission Protocol', 'ident': '', 'auth': 'Authentication Service', 'sftp': 'Simple File Transfer Protocol', 'ansanotify': 'ANSA REX Notify', 'uucp-path': 'UUCP Path Service', 'sqlserv': 'SQL Services', 'nntp': 'Network News Transfer Protocol', 'cfdptkt': 'CFDPTKT', 'erpc': 'Encore Expedited Remote Pro.Call', 'smakynet': 'SMAKYNET', 'ntp': 'Network Time Protocol', 'ansatrader': 'ANSA REX Trader', 'locus-map': 'Locus PC-Interface Net Map Ser', 'nxedit': 'NXEdit', 'locus-con': 'Locus PC-Interface Conn Server', 'gss-xlicen': 'GSS X License Verification', 'pwdgen': 'Password Generator Protocol', 'cisco-fna': 'cisco FNATIVE', 'cisco-tna': 'cisco TNATIVE', 'cisco-sys': 'cisco SYSMAINT', 'statsrv': 'Statistics Service', 'ingres-net': 'INGRES-NET Service', 'epmap': 'DCE endpoint resolution', 'profile': 'PROFILE Naming System', 'netbios-ns': 'NETBIOS Name Service', 'netbios-dgm': 'NETBIOS Datagram Service', 'netbios-ssn': 'NETBIOS Session Service', 'emfis-data': 'EMFIS Data Service', 'emfis-cntl': 'EMFIS Control Service', 'bl-idm': 'Britton-Lee IDM', 'imap': 'Internet Message Access Protocol', 'uma': 'Universal Management Architecture', 'uaac': 'UAAC Protocol', 'iso-tp0': 'ISO-IP0', 'iso-ip': 'ISO-IP', 'jargon': 'Jargon', 'aed-512': 'AED 512 Emulation Service', 'sql-net': 'SQL-NET', 'hems': 'HEMS', 'bftp': 'Background File Transfer Program', 'sgmp': 'SGMP', 'netsc-prod': 'NETSC', 'netsc-dev': 'NETSC', 'sqlsrv': 'SQL Service', 'knet-cmp': 'KNET/VM Command/Message Protocol', 'pcmail-srv': 'PCMail Server', 'nss-routing': 'NSS-Routing', 'sgmp-traps': 'SGMP-TRAPS', 'snmp': 'SNMP', 'snmptrap': 'SNMPTRAP', 'cmip-man': 'CMIP/TCP Manager', 'cmip-agent': 'CMIP/TCP Agent', 'xns-courier': 'Xerox', 's-net': 'Sirius Systems', 'namp': 'NAMP', 'rsvd': 'RSVD', 'send': 'SEND', 'print-srv': 'Network PostScript', 'multiplex': 'Network Innovations Multiplex', 'cl-1': 'Network Innovations CL/1\nIANA assigned this well-formed service name as a replacement for "cl/1".', 'cl/1': 'Network Innovations CL/1', 'xyplex-mux': 'Xyplex', 'mailq': 'MAILQ', 'vmnet': 'VMNET', 'genrad-mux': 'GENRAD-MUX', 'xdmcp': 'X Display Manager Control Protocol', 'nextstep': 'NextStep Window Server', 'bgp': 'Border Gateway Protocol', 'ris': 'Intergraph', 'unify': 'Unify', 'audit': 'Unisys Audit SITP', 'ocbinder': 'OCBinder', 'ocserver': 'OCServer', 'remote-kis': 'Remote-KIS', 'kis': 'KIS Protocol', 'aci': 'Application Communication Interface', 'mumps': "Plus Five's MUMPS", 'qft': 'Queued File Transport', 'gacp': 'Gateway Access Control Protocol', 'prospero': 'Prospero Directory Service', 'osu-nms': 'OSU Network Monitoring System', 'srmp': 'Spider Remote Monitoring Protocol', 'irc': 'Internet Relay Chat Protocol', 'dn6-nlm-aud': 'DNSIX Network Level Module Audit', 'dn6-smm-red': 'DNSIX Session Mgt Module Audit Redir', 'dls': 'Directory Location Service', 'dls-mon': 'Directory Location Service Monitor', 'smux': 'SMUX', 'src': 'IBM System Resource Controller', 'at-rtmp': 'AppleTalk Routing Maintenance', 'at-nbp': 'AppleTalk Name Binding', 'at-3': 'AppleTalk Unused', 'at-echo': 'AppleTalk Echo', 'at-5': 'AppleTalk Unused', 'at-zis': 'AppleTalk Zone Information', 'at-7': 'AppleTalk Unused', 'at-8': 'AppleTalk Unused', 'qmtp': 'The Quick Mail Transfer Protocol', 'z39-50': 'ANSI Z39.50\nIANA assigned this well-formed service name as a replacement for "z39.50".', 'z39.50': 'ANSI Z39.50', '914c-g': 'Texas Instruments 914C/G Terminal\nIANA assigned this well-formed service name as a replacement for "914c/g".', '914c/g': 'Texas Instruments 914C/G Terminal', 'anet': 'ATEXSSTR', 'ipx': 'IPX', 'vmpwscs': 'VM PWSCS', 'softpc': 'Insignia Solutions', 'CAIlic': "Computer Associates Int'l License Server", 'dbase': 'dBASE Unix', 'mpp': 'Netix Message Posting Protocol', 'uarps': 'Unisys ARPs', 'imap3': 'Interactive Mail Access Protocol v3', 'fln-spx': 'Berkeley rlogind with SPX auth', 'rsh-spx': 'Berkeley rshd with SPX auth', 'cdc': 'Certificate Distribution Center', 'masqdialer': 'masqdialer', 'direct': 'Direct', 'sur-meas': 'Survey Measurement', 'inbusiness': 'inbusiness', 'link': 'LINK', 'dsp3270': 'Display Systems Protocol', 'subntbcst-tftp': 'SUBNTBCST_TFTP\nIANA assigned this well-formed service name as a replacement for "subntbcst_tftp".', 'subntbcst_tftp': 'SUBNTBCST_TFTP', 'bhfhs': 'bhfhs', 'rap': 'RAP', 'set': 'Secure Electronic Transaction', 'esro-gen': 'Efficient Short Remote Operations', 'openport': 'Openport', 'nsiiops': 'IIOP Name Service over TLS/SSL', 'arcisdms': 'Arcisdms', 'hdap': 'HDAP', 'bgmp': 'BGMP', 'x-bone-ctl': 'X-Bone CTL', 'sst': 'SCSI on ST', 'td-service': 'Tobit David Service Layer', 'td-replica': 'Tobit David Replica', 'manet': 'MANET Protocols', 'pt-tls': 'IETF Network Endpoint Assessment (NEA) Posture Transport Protocol over TLS (PT-TLS)', 'http-mgmt': 'http-mgmt', 'personal-link': 'Personal Link', 'cableport-ax': 'Cable Port A/X', 'rescap': 'rescap', 'corerjd': 'corerjd', 'fxp': 'FXP Communication', 'k-block': 'K-BLOCK', 'novastorbakcup': 'Novastor Backup', 'entrusttime': 'EntrustTime', 'bhmds': 'bhmds', 'asip-webadmin': 'AppleShare IP WebAdmin', 'vslmp': 'VSLMP', 'magenta-logic': 'Magenta Logic', 'opalis-robot': 'Opalis Robot', 'dpsi': 'DPSI', 'decauth': 'decAuth', 'zannet': 'Zannet', 'pkix-timestamp': 'PKIX TimeStamp', 'ptp-event': 'PTP Event', 'ptp-general': 'PTP General', 'pip': 'PIP', 'rtsps': 'RTSPS', 'rpki-rtr': 'Resource PKI to Router Protocol', 'rpki-rtr-tls': 'Resource PKI to Router Protocol over TLS', 'texar': 'Texar Security Port', 'pdap': 'Prospero Data Access Protocol', 'pawserv': 'Perf Analysis Workbench', 'zserv': 'Zebra server', 'fatserv': 'Fatmen Server', 'csi-sgwp': 'Cabletron Management Protocol', 'mftp': 'mftp', 'matip-type-a': 'MATIP Type A', 'matip-type-b': 'MATIP Type B', 'bhoetty': 'bhoetty', 'dtag-ste-sb': 'DTAG', 'bhoedap4': 'bhoedap4', 'ndsauth': 'NDSAUTH', 'bh611': 'bh611', 'datex-asn': 'DATEX-ASN', 'cloanto-net-1': 'Cloanto Net 1', 'bhevent': 'bhevent', 'shrinkwrap': 'Shrinkwrap', 'nsrmp': 'Network Security Risk Management Protocol', 'scoi2odialog': 'scoi2odialog', 'semantix': 'Semantix', 'srssend': 'SRS Send', 'rsvp-tunnel': 'RSVP Tunnel\nIANA assigned this well-formed service name as a replacement for "rsvp_tunnel".', 'rsvp_tunnel': 'RSVP Tunnel', 'aurora-cmgr': 'Aurora CMGR', 'dtk': 'DTK', 'odmr': 'ODMR', 'mortgageware': 'MortgageWare', 'qbikgdp': 'QbikGDP', 'rpc2portmap': 'rpc2portmap', 'codaauth2': 'codaauth2', 'clearcase': 'Clearcase', 'ulistproc': 'ListProcessor', 'legent-1': 'Legent Corporation', 'legent-2': 'Legent Corporation', 'hassle': 'Hassle', 'nip': 'Amiga Envoy Network Inquiry Proto', 'tnETOS': 'NEC Corporation', 'dsETOS': 'NEC Corporation', 'is99c': 'TIA/EIA/IS-99 modem client', 'is99s': 'TIA/EIA/IS-99 modem server', 'hp-collector': 'hp performance data collector', 'hp-managed-node': 'hp performance data managed node', 'hp-alarm-mgr': 'hp performance data alarm manager', 'arns': 'A Remote Network Server System', 'ibm-app': 'IBM Application', 'asa': 'ASA Message Router Object Def.', 'aurp': 'Appletalk Update-Based Routing Pro.', 'unidata-ldm': 'Unidata LDM', 'ldap': 'Lightweight Directory Access Protocol', 'uis': 'UIS', 'synotics-relay': 'SynOptics SNMP Relay Port', 'synotics-broker': 'SynOptics Port Broker Port', 'meta5': 'Meta5', 'embl-ndt': 'EMBL Nucleic Data Transfer', 'netcp': 'NetScout Control Protocol', 'netware-ip': 'Novell Netware over IP', 'mptn': 'Multi Protocol Trans. Net.', 'kryptolan': 'Kryptolan', 'iso-tsap-c2': 'ISO Transport Class 2 Non-Control over TCP', 'osb-sd': 'Oracle Secure Backup', 'ups': 'Uninterruptible Power Supply', 'genie': 'Genie Protocol', 'decap': 'decap', 'nced': 'nced', 'ncld': 'ncld', 'imsp': 'Interactive Mail Support Protocol', 'timbuktu': 'Timbuktu', 'prm-sm': 'Prospero Resource Manager Sys. Man.', 'prm-nm': 'Prospero Resource Manager Node Man.', 'decladebug': 'DECLadebug Remote Debug Protocol', 'rmt': 'Remote MT Protocol', 'synoptics-trap': 'Trap Convention Port', 'smsp': 'Storage Management Services Protocol', 'infoseek': 'InfoSeek', 'bnet': 'BNet', 'silverplatter': 'Silverplatter', 'onmux': 'Onmux', 'hyper-g': 'Hyper-G', 'ariel1': 'Ariel 1', 'smpte': 'SMPTE', 'ariel2': 'Ariel 2', 'ariel3': 'Ariel 3', 'opc-job-start': 'IBM Operations Planning and Control Start', 'opc-job-track': 'IBM Operations Planning and Control Track', 'icad-el': 'ICAD', 'smartsdp': 'smartsdp', 'svrloc': 'Server Location', 'ocs-cmu': 'OCS_CMU\nIANA assigned this well-formed service name as a replacement for "ocs_cmu".', 'ocs_cmu': 'OCS_CMU', 'ocs-amu': 'OCS_AMU\nIANA assigned this well-formed service name as a replacement for "ocs_amu".', 'ocs_amu': 'OCS_AMU', 'utmpsd': 'UTMPSD', 'utmpcd': 'UTMPCD', 'iasd': 'IASD', 'nnsp': 'NNSP', 'mobileip-agent': 'MobileIP-Agent', 'mobilip-mn': 'MobilIP-MN', 'dna-cml': 'DNA-CML', 'comscm': 'comscm', 'dsfgw': 'dsfgw', 'dasp': 'dasp', 'sgcp': 'sgcp', 'decvms-sysmgt': 'decvms-sysmgt', 'cvc-hostd': 'cvc_hostd\nIANA assigned this well-formed service name as a replacement for "cvc_hostd".', 'cvc_hostd': 'cvc_hostd', 'https': 'http protocol over TLS/SSL', 'snpp': 'Simple Network Paging Protocol', 'microsoft-ds': 'Microsoft-DS', 'ddm-rdb': 'DDM-Remote Relational Database Access', 'ddm-dfm': 'DDM-Distributed File Management', 'ddm-ssl': 'DDM-Remote DB Access Using Secure Sockets', 'as-servermap': 'AS Server Mapper', 'tserver': 'Computer Supported Telecomunication Applications', 'sfs-smp-net': 'Cray Network Semaphore server', 'sfs-config': 'Cray SFS config server', 'creativeserver': 'CreativeServer', 'contentserver': 'ContentServer', 'creativepartnr': 'CreativePartnr', 'macon-tcp': 'macon-tcp', 'scohelp': 'scohelp', 'appleqtc': 'apple quick time', 'ampr-rcmd': 'ampr-rcmd', 'skronk': 'skronk', 'datasurfsrv': 'DataRampSrv', 'datasurfsrvsec': 'DataRampSrvSec', 'alpes': 'alpes', 'kpasswd': 'kpasswd', 'urd': 'URL Rendesvous Directory for SSM', 'digital-vrc': 'digital-vrc', 'mylex-mapd': 'mylex-mapd', 'photuris': 'proturis', 'rcp': 'Radio Control Protocol', 'scx-proxy': 'scx-proxy', 'mondex': 'Mondex', 'ljk-login': 'ljk-login', 'hybrid-pop': 'hybrid-pop', 'tn-tl-w1': 'tn-tl-w1', 'tcpnethaspsrv': 'tcpnethaspsrv', 'tn-tl-fd1': 'tn-tl-fd1', 'ss7ns': 'ss7ns', 'spsc': 'spsc', 'iafserver': 'iafserver', 'iafdbase': 'iafdbase', 'ph': 'Ph service', 'bgs-nsi': 'bgs-nsi', 'ulpnet': 'ulpnet', 'integra-sme': 'Integra Software Management Environment', 'powerburst': 'Air Soft Power Burst', 'avian': 'avian', 'saft': 'saft Simple Asynchronous File Transfer', 'gss-http': 'gss-http', 'nest-protocol': 'nest-protocol', 'micom-pfs': 'micom-pfs', 'go-login': 'go-login', 'ticf-1': 'Transport Independent Convergence for FNA', 'ticf-2': 'Transport Independent Convergence for FNA', 'pov-ray': 'POV-Ray', 'intecourier': 'intecourier', 'pim-rp-disc': 'PIM-RP-DISC', 'retrospect': 'Retrospect backup and restore service', 'siam': 'siam', 'iso-ill': 'ISO ILL Protocol', 'isakmp': 'isakmp', 'stmf': 'STMF', 'asa-appl-proto': 'asa-appl-proto', 'intrinsa': 'Intrinsa', 'citadel': 'citadel', 'mailbox-lm': 'mailbox-lm', 'ohimsrv': 'ohimsrv', 'crs': 'crs', 'xvttp': 'xvttp', 'snare': 'snare', 'fcp': 'FirstClass Protocol', 'passgo': 'PassGo', 'exec': 'remote process execution; authentication performed using passwords and UNIX login names', 'login': 'remote login a la telnet; automatic authentication performed based on priviledged port numbers and distributed data bases which identify "authentication domains"', 'shell': 'cmd like exec, but automatic authentication is performed as for login server', 'printer': 'spooler', 'videotex': 'videotex', 'talk': "like tenex link, but across machine - unfortunately, doesn't use link protocol (this is actually just a rendezvous port from which a tcp connection is established)", 'ntalk': '', 'utime': 'unixtime', 'efs': 'extended file name server', 'ripng': 'ripng', 'ulp': 'ULP', 'ibm-db2': 'IBM-DB2', 'ncp': 'NCP', 'timed': 'timeserver', 'tempo': 'newdate', 'stx': 'Stock IXChange', 'custix': 'Customer IXChange', 'irc-serv': 'IRC-SERV', 'courier': 'rpc', 'conference': 'chat', 'netnews': 'readnews', 'netwall': 'for emergency broadcasts', 'windream': 'windream Admin', 'iiop': 'iiop', 'opalis-rdv': 'opalis-rdv', 'nmsp': 'Networked Media Streaming Protocol', 'gdomap': 'gdomap', 'apertus-ldp': 'Apertus Technologies Load Determination', 'uucp': 'uucpd', 'uucp-rlogin': 'uucp-rlogin', 'commerce': 'commerce', 'klogin': '', 'kshell': 'krcmd', 'appleqtcsrvr': 'appleqtcsrvr', 'dhcpv6-client': 'DHCPv6 Client', 'dhcpv6-server': 'DHCPv6 Server', 'afpovertcp': 'AFP over TCP', 'idfp': 'IDFP', 'new-rwho': 'new-who', 'cybercash': 'cybercash', 'devshr-nts': 'DeviceShare', 'pirp': 'pirp', 'rtsp': 'Real Time Streaming Protocol (RTSP)', 'dsf': '', 'remotefs': 'rfs server', 'openvms-sysipc': 'openvms-sysipc', 'sdnskmp': 'SDNSKMP', 'teedtap': 'TEEDTAP', 'rmonitor': 'rmonitord', 'monitor': '', 'chshell': 'chcmd', 'nntps': 'nntp protocol over TLS/SSL (was snntp)', '9pfs': 'plan 9 file service', 'whoami': 'whoami', 'streettalk': 'streettalk', 'banyan-rpc': 'banyan-rpc', 'ms-shuttle': 'microsoft shuttle', 'ms-rome': 'microsoft rome', 'meter': 'demon', 'meter': 'udemon', 'sonar': 'sonar', 'banyan-vip': 'banyan-vip', 'ftp-agent': 'FTP Software Agent System', 'vemmi': 'VEMMI', 'ipcd': 'ipcd', 'vnas': 'vnas', 'ipdd': 'ipdd', 'decbsrv': 'decbsrv', 'sntp-heartbeat': 'SNTP HEARTBEAT', 'bdp': 'Bundle Discovery Protocol', 'scc-security': 'SCC Security', 'philips-vc': 'Philips Video-Conferencing', 'keyserver': 'Key Server', 'password-chg': 'Password Change', 'submission': 'Message Submission', 'cal': 'CAL', 'eyelink': 'EyeLink', 'tns-cml': 'TNS CML', 'http-alt': 'FileMaker, Inc. - HTTP Alternate (see Port 80)', 'eudora-set': 'Eudora Set', 'http-rpc-epmap': 'HTTP RPC Ep Map', 'tpip': 'TPIP', 'cab-protocol': 'CAB Protocol', 'smsd': 'SMSD', 'ptcnameservice': 'PTC Name Service', 'sco-websrvrmg3': 'SCO Web Server Manager 3', 'acp': 'Aeolon Core Protocol', 'ipcserver': 'Sun IPC server', 'syslog-conn': 'Reliable Syslog Service', 'xmlrpc-beep': 'XML-RPC over BEEP', 'idxp': 'IDXP', 'tunnel': 'TUNNEL', 'soap-beep': 'SOAP over BEEP', 'urm': 'Cray Unified Resource Manager', 'nqs': 'nqs', 'sift-uft': 'Sender-Initiated/Unsolicited File Transfer', 'npmp-trap': 'npmp-trap', 'npmp-local': 'npmp-local', 'npmp-gui': 'npmp-gui', 'hmmp-ind': 'HMMP Indication', 'hmmp-op': 'HMMP Operation', 'sshell': 'SSLshell', 'sco-inetmgr': 'Internet Configuration Manager', 'sco-sysmgr': 'SCO System Administration Server', 'sco-dtmgr': 'SCO Desktop Administration Server', 'dei-icda': 'DEI-ICDA', 'compaq-evm': 'Compaq EVM', 'sco-websrvrmgr': 'SCO WebServer Manager', 'escp-ip': 'ESCP', 'collaborator': 'Collaborator', 'oob-ws-http': 'DMTF out-of-band web services management protocol', 'cryptoadmin': 'Crypto Admin', 'dec-dlm': 'DEC DLM\nIANA assigned this well-formed service name as a replacement for "dec_dlm".', 'dec_dlm': 'DEC DLM', 'asia': 'ASIA', 'passgo-tivoli': 'PassGo Tivoli', 'qmqp': 'QMQP', '3com-amp3': '3Com AMP3', 'rda': 'RDA', 'ipp': 'IPP (Internet Printing Protocol)', 'bmpp': 'bmpp', 'servstat': 'Service Status update (Sterling Software)', 'ginad': 'ginad', 'rlzdbase': 'RLZ DBase', 'ldaps': 'ldap protocol over TLS/SSL (was sldap)', 'lanserver': 'lanserver', 'mcns-sec': 'mcns-sec', 'msdp': 'MSDP', 'entrust-sps': 'entrust-sps', 'repcmd': 'repcmd', 'esro-emsdp': 'ESRO-EMSDP V1.3', 'sanity': 'SANity', 'dwr': 'dwr', 'pssc': 'PSSC', 'ldp': 'LDP', 'dhcp-failover': 'DHCP Failover', 'rrp': 'Registry Registrar Protocol (RRP)', 'cadview-3d': 'Cadview-3d - streaming 3d models over the internet', 'obex': 'OBEX', 'ieee-mms': 'IEEE MMS', 'hello-port': 'HELLO_PORT', 'repscmd': 'RepCmd', 'aodv': 'AODV', 'tinc': 'TINC', 'spmp': 'SPMP', 'rmc': 'RMC', 'tenfold': 'TenFold', 'mac-srvr-admin': 'MacOS Server Admin', 'hap': 'HAP', 'pftp': 'PFTP', 'purenoise': 'PureNoise', 'oob-ws-https': 'DMTF out-of-band secure web services management protocol', 'sun-dr': 'Sun DR', 'mdqs': '', 'doom': 'doom Id Software', 'disclose': 'campaign contribution disclosures - SDR Technologies', 'mecomm': 'MeComm', 'meregister': 'MeRegister', 'vacdsm-sws': 'VACDSM-SWS', 'vacdsm-app': 'VACDSM-APP', 'vpps-qua': 'VPPS-QUA', 'cimplex': 'CIMPLEX', 'acap': 'ACAP', 'dctp': 'DCTP', 'vpps-via': 'VPPS Via', 'vpp': 'Virtual Presence Protocol', 'ggf-ncp': 'GNU Generation Foundation NCP', 'mrm': 'MRM', 'entrust-aaas': 'entrust-aaas', 'entrust-aams': 'entrust-aams', 'xfr': 'XFR', 'corba-iiop': 'CORBA IIOP', 'corba-iiop-ssl': 'CORBA IIOP SSL', 'mdc-portmapper': 'MDC Port Mapper', 'hcp-wismar': 'Hardware Control Protocol Wismar', 'asipregistry': 'asipregistry', 'realm-rusd': 'ApplianceWare managment protocol', 'nmap': 'NMAP', 'vatp': 'Velazquez Application Transfer Protocol', 'msexch-routing': 'MS Exchange Routing', 'hyperwave-isp': 'Hyperwave-ISP', 'connendp': 'almanid Connection Endpoint', 'ha-cluster': 'ha-cluster', 'ieee-mms-ssl': 'IEEE-MMS-SSL', 'rushd': 'RUSHD', 'uuidgen': 'UUIDGEN', 'olsr': 'OLSR', 'accessnetwork': 'Access Network', 'epp': 'Extensible Provisioning Protocol', 'lmp': 'Link Management Protocol (LMP)', 'iris-beep': 'IRIS over BEEP', 'elcsd': 'errlog copy/server daemon', 'agentx': 'AgentX', 'silc': 'SILC', 'borland-dsj': 'Borland DSJ', 'entrust-kmsh': 'Entrust Key Management Service Handler', 'entrust-ash': 'Entrust Administration Service Handler', 'cisco-tdp': 'Cisco TDP', 'tbrpf': 'TBRPF', 'iris-xpc': 'IRIS over XPC', 'iris-xpcs': 'IRIS over XPCS', 'iris-lwz': 'IRIS-LWZ', 'netviewdm1': 'IBM NetView DM/6000 Server/Client', 'netviewdm2': 'IBM NetView DM/6000 send/tcp', 'netviewdm3': 'IBM NetView DM/6000 receive/tcp', 'netgw': 'netGW', 'netrcs': 'Network based Rev. Cont. Sys.', 'flexlm': 'Flexible License Manager', 'fujitsu-dev': 'Fujitsu Device Control', 'ris-cm': 'Russell Info Sci Calendar Manager', 'kerberos-adm': 'kerberos administration', 'rfile': '', 'pump': '', 'qrh': '', 'rrh': '', 'tell': 'send', 'nlogin': '', 'con': '', 'ns': '', 'rxe': '', 'quotad': '', 'cycleserv': '', 'omserv': '', 'webster': '', 'phonebook': 'phone', 'vid': '', 'cadlock': '', 'rtip': '', 'cycleserv2': '', 'submit': '', 'rpasswd': '', 'entomb': '', 'wpages': '', 'multiling-http': 'Multiling HTTP', 'wpgs': '', 'mdbs-daemon': '\nIANA assigned this well-formed service name as a replacement for "mdbs_daemon".', 'mdbs_daemon': '', 'device': '', 'fcp-udp': 'FCP', 'itm-mcell-s': 'itm-mcell-s', 'pkix-3-ca-ra': 'PKIX-3 CA/RA', 'netconf-ssh': 'NETCONF over SSH', 'netconf-beep': 'NETCONF over BEEP', 'netconfsoaphttp': 'NETCONF for SOAP over HTTPS', 'netconfsoapbeep': 'NETCONF for SOAP over BEEP', 'dhcp-failover2': 'dhcp-failover 2', 'gdoi': 'GDOI', 'iscsi': 'iSCSI', 'owamp-control': 'OWAMP-Control', 'twamp-control': 'Two-way Active Measurement Protocol (TWAMP) Control', 'rsync': 'rsync', 'iclcnet-locate': 'ICL coNETion locate server', 'iclcnet-svinfo': 'ICL coNETion server info\nIANA assigned this well-formed service name as a replacement for "iclcnet_svinfo".', 'iclcnet_svinfo': 'ICL coNETion server info', 'accessbuilder': 'AccessBuilder', 'cddbp': 'CD Database Protocol', 'omginitialrefs': 'OMG Initial Refs', 'smpnameres': 'SMPNAMERES', 'ideafarm-door': 'self documenting Telnet Door', 'ideafarm-panic': 'self documenting Telnet Panic Door', 'kink': 'Kerberized Internet Negotiation of Keys (KINK)', 'xact-backup': 'xact-backup', 'apex-mesh': 'APEX relay-relay service', 'apex-edge': 'APEX endpoint-relay service', 'ftps-data': 'ftp protocol, data, over TLS/SSL', 'ftps': 'ftp protocol, control, over TLS/SSL', 'nas': 'Netnews Administration System', 'telnets': 'telnet protocol over TLS/SSL', 'imaps': 'imap4 protocol over TLS/SSL', 'pop3s': 'pop3 protocol over TLS/SSL (was spop3)', 'vsinet': 'vsinet', 'maitrd': '', 'busboy': '', 'garcon': '', 'puprouter': '', 'cadlock2': '', 'surf': 'surf', 'exp1': 'RFC3692-style Experiment 1', 'exp2': 'RFC3692-style Experiment 2', 'blackjack': 'network blackjack', 'cap': 'Calendar Access Protocol', 'solid-mux': 'Solid Mux Server', 'iad1': 'BBN IAD', 'iad2': 'BBN IAD', 'iad3': 'BBN IAD', 'netinfo-local': 'local netinfo port', 'activesync': 'ActiveSync Notifications', 'mxxrlogin': 'MX-XR RPC', 'nsstp': 'Nebula Secure Segment Transfer Protocol', 'ams': 'AMS', 'mtqp': 'Message Tracking Query Protocol', 'sbl': 'Streamlined Blackhole', 'netarx': 'Netarx Netcare', 'danf-ak2': 'AK2 Product', 'afrog': 'Subnet Roaming', 'boinc-client': 'BOINC Client Control', 'dcutility': 'Dev Consortium Utility', 'fpitp': 'Fingerprint Image Transfer Protocol', 'wfremotertm': 'WebFilter Remote Monitor', 'neod1': "Sun's NEO Object Request Broker", 'neod2': "Sun's NEO Object Request Broker", 'td-postman': 'Tobit David Postman VPMN', 'cma': 'CORBA Management Agent', 'optima-vnet': 'Optima VNET', 'ddt': 'Dynamic DNS Tools', 'remote-as': 'Remote Assistant (RA)', 'brvread': 'BRVREAD', 'ansyslmd': 'ANSYS - License Manager', 'vfo': 'VFO', 'startron': 'STARTRON', 'nim': 'nim', 'nimreg': 'nimreg', 'polestar': 'POLESTAR', 'kiosk': 'KIOSK', 'veracity': 'Veracity', 'kyoceranetdev': 'KyoceraNetDev', 'jstel': 'JSTEL', 'syscomlan': 'SYSCOMLAN', 'fpo-fns': 'FPO-FNS', 'instl-boots': 'Installation Bootstrap Proto. Serv.\nIANA assigned this well-formed service name as a replacement for "instl_boots".', 'instl_boots': 'Installation Bootstrap Proto. Serv.', 'instl-bootc': 'Installation Bootstrap Proto. Cli.\nIANA assigned this well-formed service name as a replacement for "instl_bootc".', 'instl_bootc': 'Installation Bootstrap Proto. Cli.', 'cognex-insight': 'COGNEX-INSIGHT', 'gmrupdateserv': 'GMRUpdateSERV', 'bsquare-voip': 'BSQUARE-VOIP', 'cardax': 'CARDAX', 'bridgecontrol': 'Bridge Control', 'warmspotMgmt': 'Warmspot Management Protocol', 'rdrmshc': 'RDRMSHC', 'dab-sti-c': 'DAB STI-C', 'imgames': 'IMGames', 'avocent-proxy': 'Avocent Proxy Protocol', 'asprovatalk': 'ASPROVATalk', 'socks': 'Socks', 'pvuniwien': 'PVUNIWIEN', 'amt-esd-prot': 'AMT-ESD-PROT', 'ansoft-lm-1': 'Anasoft License Manager', 'ansoft-lm-2': 'Anasoft License Manager', 'webobjects': 'Web Objects', 'cplscrambler-lg': 'CPL Scrambler Logging', 'cplscrambler-in': 'CPL Scrambler Internal', 'cplscrambler-al': 'CPL Scrambler Alarm Log', 'ff-annunc': 'FF Annunciation', 'ff-fms': 'FF Fieldbus Message Specification', 'ff-sm': 'FF System Management', 'obrpd': 'Open Business Reporting Protocol', 'proofd': 'PROOFD', 'rootd': 'ROOTD', 'nicelink': 'NICELink', 'cnrprotocol': 'Common Name Resolution Protocol', 'sunclustermgr': 'Sun Cluster Manager', 'rmiactivation': 'RMI Activation', 'rmiregistry': 'RMI Registry', 'mctp': 'MCTP', 'pt2-discover': 'PT2-DISCOVER', 'adobeserver-1': 'ADOBE SERVER 1', 'adobeserver-2': 'ADOBE SERVER 2', 'xrl': 'XRL', 'ftranhc': 'FTRANHC', 'isoipsigport-1': 'ISOIPSIGPORT-1', 'isoipsigport-2': 'ISOIPSIGPORT-2', 'ratio-adp': 'ratio-adp', 'webadmstart': 'Start web admin server', 'lmsocialserver': 'LM Social Server', 'icp': 'Intelligent Communication Protocol', 'ltp-deepspace': 'Licklider Transmission Protocol', 'mini-sql': 'Mini SQL', 'ardus-trns': 'ARDUS Transfer', 'ardus-cntl': 'ARDUS Control', 'ardus-mtrns': 'ARDUS Multicast Transfer', 'sacred': 'SACRED', 'bnetgame': 'Battle.net Chat/Game Protocol', 'bnetfile': 'Battle.net File Transfer Protocol', 'rmpp': 'Datalode RMPP', 'availant-mgr': 'availant-mgr', 'murray': 'Murray', 'hpvmmcontrol': 'HP VMM Control', 'hpvmmagent': 'HP VMM Agent', 'hpvmmdata': 'HP VMM Agent', 'kwdb-commn': 'KWDB Remote Communication', 'saphostctrl': 'SAPHostControl over SOAP/HTTP', 'saphostctrls': 'SAPHostControl over SOAP/HTTPS', 'casp': 'CAC App Service Protocol', 'caspssl': 'CAC App Service Protocol Encripted', 'kvm-via-ip': 'KVM-via-IP Management Service', 'dfn': 'Data Flow Network', 'aplx': 'MicroAPL APLX', 'omnivision': 'OmniVision Communication Service', 'hhb-gateway': 'HHB Gateway Control', 'trim': 'TRIM Workgroup Service', 'encrypted-admin': 'encrypted admin requests\nIANA assigned this well-formed service name as a replacement for "encrypted_admin".', 'encrypted_admin': 'encrypted admin requests', 'evm': 'Enterprise Virtual Manager', 'autonoc': 'AutoNOC Network Operations Protocol', 'mxomss': 'User Message Service', 'edtools': 'User Discovery Service', 'imyx': 'Infomatryx Exchange', 'fuscript': 'Fusion Script', 'x9-icue': 'X9 iCue Show Control', 'audit-transfer': 'audit transfer', 'capioverlan': 'CAPIoverLAN', 'elfiq-repl': 'Elfiq Replication Service', 'bvtsonar': 'BVT Sonar Service', 'blaze': 'Blaze File Server', 'unizensus': 'Unizensus Login Server', 'winpoplanmess': 'Winpopup LAN Messenger', 'c1222-acse': 'ANSI C12.22 Port', 'resacommunity': 'Community Service', 'nfa': 'Network File Access', 'iascontrol-oms': 'iasControl OMS', 'iascontrol': 'Oracle iASControl', 'dbcontrol-oms': 'dbControl OMS', 'oracle-oms': 'Oracle OMS', 'olsv': 'DB Lite Mult-User Server', 'health-polling': 'Health Polling', 'health-trap': 'Health Trap', 'sddp': 'SmartDialer Data Protocol', 'qsm-proxy': 'QSM Proxy Service', 'qsm-gui': 'QSM GUI Service', 'qsm-remote': 'QSM RemoteExec', 'cisco-ipsla': 'Cisco IP SLAs Control Protocol', 'vchat': 'VChat Conference Service', 'tripwire': 'TRIPWIRE', 'atc-lm': 'AT+C License Manager', 'atc-appserver': 'AT+C FmiApplicationServer', 'dnap': 'DNA Protocol', 'd-cinema-rrp': 'D-Cinema Request-Response', 'fnet-remote-ui': 'FlashNet Remote Admin', 'dossier': 'Dossier Server', 'indigo-server': 'Indigo Home Server', 'dkmessenger': 'DKMessenger Protocol', 'sgi-storman': 'SGI Storage Manager', 'b2n': 'Backup To Neighbor', 'mc-client': 'Millicent Client Proxy', '3comnetman': '3Com Net Management', 'accelenet': 'AcceleNet Control', 'llsurfup-http': 'LL Surfup HTTP', 'llsurfup-https': 'LL Surfup HTTPS', 'catchpole': 'Catchpole port', 'mysql-cluster': 'MySQL Cluster Manager', 'alias': 'Alias Service', 'hp-webadmin': 'HP Web Admin', 'unet': 'Unet Connection', 'commlinx-avl': 'CommLinx GPS / AVL System', 'gpfs': 'General Parallel File System', 'caids-sensor': 'caids sensors channel', 'fiveacross': 'Five Across Server', 'openvpn': 'OpenVPN', 'rsf-1': 'RSF-1 clustering', 'netmagic': 'Network Magic', 'carrius-rshell': 'Carrius Remote Access', 'cajo-discovery': 'cajo reference discovery', 'dmidi': 'DMIDI', 'scol': 'SCOL', 'nucleus-sand': 'Nucleus Sand Database Server', 'caiccipc': 'caiccipc', 'ssslic-mgr': 'License Validation', 'ssslog-mgr': 'Log Request Listener', 'accord-mgc': 'Accord-MGC', 'anthony-data': 'Anthony Data', 'metasage': 'MetaSage', 'seagull-ais': 'SEAGULL AIS', 'ipcd3': 'IPCD3', 'eoss': 'EOSS', 'groove-dpp': 'Groove DPP', 'lupa': 'lupa', 'mpc-lifenet': 'MPC LIFENET', 'kazaa': 'KAZAA', 'scanstat-1': 'scanSTAT 1.0', 'etebac5': 'ETEBAC 5', 'hpss-ndapi': 'HPSS NonDCE Gateway', 'aeroflight-ads': 'AeroFlight-ADs', 'aeroflight-ret': 'AeroFlight-Ret', 'qt-serveradmin': 'QT SERVER ADMIN', 'sweetware-apps': 'SweetWARE Apps', 'nerv': 'SNI R&D network', 'tgp': 'TrulyGlobal Protocol', 'vpnz': 'VPNz', 'slinkysearch': 'SLINKYSEARCH', 'stgxfws': 'STGXFWS', 'dns2go': 'DNS2Go', 'florence': 'FLORENCE', 'zented': 'ZENworks Tiered Electronic Distribution', 'periscope': 'Periscope', 'menandmice-lpm': 'menandmice-lpm', 'univ-appserver': 'Universal App Server', 'search-agent': 'Infoseek Search Agent', 'mosaicsyssvc1': 'mosaicsyssvc1', 'bvcontrol': 'bvcontrol', 'tsdos390': 'tsdos390', 'hacl-qs': 'hacl-qs', 'nmsd': 'NMSD', 'instantia': 'Instantia', 'nessus': 'nessus', 'nmasoverip': 'NMAS over IP', 'serialgateway': 'SerialGateway', 'isbconference1': 'isbconference1', 'isbconference2': 'isbconference2', 'payrouter': 'payrouter', 'visionpyramid': 'VisionPyramid', 'hermes': 'hermes', 'mesavistaco': 'Mesa Vista Co', 'swldy-sias': 'swldy-sias', 'servergraph': 'servergraph', 'bspne-pcc': 'bspne-pcc', 'q55-pcc': 'q55-pcc', 'de-noc': 'de-noc', 'de-cache-query': 'de-cache-query', 'de-server': 'de-server', 'shockwave2': 'Shockwave 2', 'opennl': 'Open Network Library', 'opennl-voice': 'Open Network Library Voice', 'ibm-ssd': 'ibm-ssd', 'mpshrsv': 'mpshrsv', 'qnts-orb': 'QNTS-ORB', 'dka': 'dka', 'prat': 'PRAT', 'dssiapi': 'DSSIAPI', 'dellpwrappks': 'DELLPWRAPPKS', 'epc': 'eTrust Policy Compliance', 'propel-msgsys': 'PROPEL-MSGSYS', 'watilapp': 'WATiLaPP', 'opsmgr': 'Microsoft Operations Manager', 'excw': 'eXcW', 'cspmlockmgr': 'CSPMLockMgr', 'emc-gateway': 'EMC-Gateway', 't1distproc': 't1distproc', 'ivcollector': 'ivcollector', 'ivmanager': 'ivmanager', 'miva-mqs': 'mqs', 'dellwebadmin-1': 'Dell Web Admin 1', 'dellwebadmin-2': 'Dell Web Admin 2', 'pictrography': 'Pictrography', 'healthd': 'healthd', 'emperion': 'Emperion', 'productinfo': 'Product Information', 'iee-qfx': 'IEE-QFX', 'neoiface': 'neoiface', 'netuitive': 'netuitive', 'routematch': 'RouteMatch Com', 'navbuddy': 'NavBuddy', 'jwalkserver': 'JWalkServer', 'winjaserver': 'WinJaServer', 'seagulllms': 'SEAGULLLMS', 'dsdn': 'dsdn', 'pkt-krb-ipsec': 'PKT-KRB-IPSec', 'cmmdriver': 'CMMdriver', 'ehtp': 'End-by-Hop Transmission Protocol', 'dproxy': 'dproxy', 'sdproxy': 'sdproxy', 'lpcp': 'lpcp', 'hp-sci': 'hp-sci', 'h323hostcallsc': 'H323 Host Call Secure', 'ci3-software-1': 'CI3-Software-1', 'ci3-software-2': 'CI3-Software-2', 'sftsrv': 'sftsrv', 'boomerang': 'Boomerang', 'pe-mike': 'pe-mike', 're-conn-proto': 'RE-Conn-Proto', 'pacmand': 'Pacmand', 'odsi': 'Optical Domain Service Interconnect (ODSI)', 'jtag-server': 'JTAG server', 'husky': 'Husky', 'rxmon': 'RxMon', 'sti-envision': 'STI Envision', 'bmc-patroldb': 'BMC_PATROLDB\nIANA assigned this well-formed service name as a replacement for "bmc_patroldb".', 'bmc_patroldb': 'BMC_PATROLDB', 'pdps': 'Photoscript Distributed Printing System', 'els': 'E.L.S., Event Listener Service', 'exbit-escp': 'Exbit-ESCP', 'vrts-ipcserver': 'vrts-ipcserver', 'krb5gatekeeper': 'krb5gatekeeper', 'amx-icsp': 'AMX-ICSP', 'amx-axbnet': 'AMX-AXBNET', 'pip': 'PIP', 'novation': 'Novation', 'brcd': 'brcd', 'delta-mcp': 'delta-mcp', 'dx-instrument': 'DX-Instrument', 'wimsic': 'WIMSIC', 'ultrex': 'Ultrex', 'ewall': 'EWALL', 'netdb-export': 'netdb-export', 'streetperfect': 'StreetPerfect', 'intersan': 'intersan', 'pcia-rxp-b': 'PCIA RXP-B', 'passwrd-policy': 'Password Policy', 'writesrv': 'writesrv', 'digital-notary': 'Digital Notary Protocol', 'ischat': 'Instant Service Chat', 'menandmice-dns': 'menandmice DNS', 'wmc-log-svc': 'WMC-log-svr', 'kjtsiteserver': 'kjtsiteserver', 'naap': 'NAAP', 'qubes': 'QuBES', 'esbroker': 'ESBroker', 're101': 're101', 'icap': 'ICAP', 'vpjp': 'VPJP', 'alta-ana-lm': 'Alta Analytics License Manager', 'bbn-mmc': 'multi media conferencing', 'bbn-mmx': 'multi media conferencing', 'sbook': 'Registration Network Protocol', 'editbench': 'Registration Network Protocol', 'equationbuilder': 'Digital Tool Works (MIT)', 'lotusnote': 'Lotus Note', 'relief': 'Relief Consulting', 'XSIP-network': 'Five Across XSIP Network', 'intuitive-edge': 'Intuitive Edge', 'cuillamartin': 'CuillaMartin Company', 'pegboard': 'Electronic PegBoard', 'connlcli': 'CONNLCLI', 'ftsrv': 'FTSRV', 'mimer': 'MIMER', 'linx': 'LinX', 'timeflies': 'TimeFlies', 'ndm-requester': 'Network DataMover Requester', 'ndm-server': 'Network DataMover Server', 'adapt-sna': 'Network Software Associates', 'netware-csp': 'Novell NetWare Comm Service Platform', 'dcs': 'DCS', 'screencast': 'ScreenCast', 'gv-us': 'GlobalView to Unix Shell', 'us-gv': 'Unix Shell to GlobalView', 'fc-cli': 'Fujitsu Config Protocol', 'fc-ser': 'Fujitsu Config Protocol', 'chromagrafx': 'Chromagrafx', 'molly': 'EPI Software Systems', 'bytex': 'Bytex', 'ibm-pps': 'IBM Person to Person Software', 'cichlid': 'Cichlid License Manager', 'elan': 'Elan License Manager', 'dbreporter': 'Integrity Solutions', 'telesis-licman': 'Telesis Network License Manager', 'apple-licman': 'Apple Network License Manager', 'udt-os': 'udt_os\nIANA assigned this well-formed service name as a replacement for "udt_os".', 'udt_os': 'udt_os', 'gwha': 'GW Hannaway Network License Manager', 'os-licman': 'Objective Solutions License Manager', 'atex-elmd': 'Atex Publishing License Manager\nIANA assigned this well-formed service name as a replacement for "atex_elmd".', 'atex_elmd': 'Atex Publishing License Manager', 'checksum': 'CheckSum License Manager', 'cadsi-lm': 'Computer Aided Design Software Inc LM', 'objective-dbc': 'Objective Solutions DataBase Cache', 'iclpv-dm': 'Document Manager', 'iclpv-sc': 'Storage Controller', 'iclpv-sas': 'Storage Access Server', 'iclpv-pm': 'Print Manager', 'iclpv-nls': 'Network Log Server', 'iclpv-nlc': 'Network Log Client', 'iclpv-wsm': 'PC Workstation Manager software', 'dvl-activemail': 'DVL Active Mail', 'audio-activmail': 'Audio Active Mail', 'video-activmail': 'Video Active Mail', 'cadkey-licman': 'Cadkey License Manager', 'cadkey-tablet': 'Cadkey Tablet Daemon', 'goldleaf-licman': 'Goldleaf License Manager', 'prm-sm-np': 'Prospero Resource Manager', 'prm-nm-np': 'Prospero Resource Manager', 'igi-lm': 'Infinite Graphics License Manager', 'ibm-res': 'IBM Remote Execution Starter', 'netlabs-lm': 'NetLabs License Manager', 'dbsa-lm': 'DBSA License Manager', 'sophia-lm': 'Sophia License Manager', 'here-lm': 'Here License Manager', 'hiq': 'HiQ License Manager', 'af': 'AudioFile', 'innosys': 'InnoSys', 'innosys-acl': 'Innosys-ACL', 'ibm-mqseries': 'IBM MQSeries', 'dbstar': 'DBStar', 'novell-lu6-2': 'Novell LU6.2\nIANA assigned this well-formed service name as a replacement for "novell-lu6.2".', 'novell-lu6.2': 'Novell LU6.2', 'timbuktu-srv1': 'Timbuktu Service 1 Port', 'timbuktu-srv2': 'Timbuktu Service 2 Port', 'timbuktu-srv3': 'Timbuktu Service 3 Port', 'timbuktu-srv4': 'Timbuktu Service 4 Port', 'gandalf-lm': 'Gandalf License Manager', 'autodesk-lm': 'Autodesk License Manager', 'essbase': 'Essbase Arbor Software', 'hybrid': 'Hybrid Encryption Protocol', 'zion-lm': 'Zion Software License Manager', 'sais': 'Satellite-data Acquisition System 1', 'mloadd': 'mloadd monitoring tool', 'informatik-lm': 'Informatik License Manager', 'nms': 'Hypercom NMS', 'tpdu': 'Hypercom TPDU', 'rgtp': 'Reverse Gossip Transport', 'blueberry-lm': 'Blueberry Software License Manager', 'ms-sql-s': 'Microsoft-SQL-Server', 'ms-sql-m': 'Microsoft-SQL-Monitor', 'ibm-cics': 'IBM CICS', 'saism': 'Satellite-data Acquisition System 2', 'tabula': 'Tabula', 'eicon-server': 'Eicon Security Agent/Server', 'eicon-x25': 'Eicon X25/SNA Gateway', 'eicon-slp': 'Eicon Service Location Protocol', 'cadis-1': 'Cadis License Management', 'cadis-2': 'Cadis License Management', 'ies-lm': 'Integrated Engineering Software', 'marcam-lm': 'Marcam License Management', 'proxima-lm': 'Proxima License Manager', 'ora-lm': 'Optical Research Associates License Manager', 'apri-lm': 'Applied Parallel Research LM', 'oc-lm': 'OpenConnect License Manager', 'peport': 'PEport', 'dwf': 'Tandem Distributed Workbench Facility', 'infoman': 'IBM Information Management', 'gtegsc-lm': 'GTE Government Systems License Man', 'genie-lm': 'Genie License Manager', 'interhdl-elmd': 'interHDL License Manager\nIANA assigned this well-formed service name as a replacement for "interhdl_elmd".', 'interhdl_elmd': 'interHDL License Manager', 'esl-lm': 'ESL License Manager', 'dca': 'DCA', 'valisys-lm': 'Valisys License Manager', 'nrcabq-lm': 'Nichols Research Corp.', 'proshare1': 'Proshare Notebook Application', 'proshare2': 'Proshare Notebook Application', 'ibm-wrless-lan': 'IBM Wireless LAN\nIANA assigned this well-formed service name as a replacement for "ibm_wrless_lan".', 'ibm_wrless_lan': 'IBM Wireless LAN', 'world-lm': 'World License Manager', 'nucleus': 'Nucleus', 'msl-lmd': 'MSL License Manager\nIANA assigned this well-formed service name as a replacement for "msl_lmd".', 'msl_lmd': 'MSL License Manager', 'pipes': 'Pipes Platform', 'oceansoft-lm': 'Ocean Software License Manager', 'csdmbase': 'CSDMBASE', 'csdm': 'CSDM', 'aal-lm': 'Active Analysis Limited License Manager', 'uaiact': 'Universal Analytics', 'csdmbase': 'csdmbase', 'csdm': 'csdm', 'openmath': 'OpenMath', 'telefinder': 'Telefinder', 'taligent-lm': 'Taligent License Manager', 'clvm-cfg': 'clvm-cfg', 'ms-sna-server': 'ms-sna-server', 'ms-sna-base': 'ms-sna-base', 'dberegister': 'dberegister', 'pacerforum': 'PacerForum', 'airs': 'AIRS', 'miteksys-lm': 'Miteksys License Manager', 'afs': 'AFS License Manager', 'confluent': 'Confluent License Manager', 'lansource': 'LANSource', 'nms-topo-serv': 'nms_topo_serv\nIANA assigned this well-formed service name as a replacement for "nms_topo_serv".', 'nms_topo_serv': 'nms_topo_serv', 'localinfosrvr': 'LocalInfoSrvr', 'docstor': 'DocStor', 'dmdocbroker': 'dmdocbroker', 'insitu-conf': 'insitu-conf', 'stone-design-1': 'stone-design-1', 'netmap-lm': 'netmap_lm\nIANA assigned this well-formed service name as a replacement for "netmap_lm".', 'netmap_lm': 'netmap_lm', 'ica': 'ica', 'cvc': 'cvc', 'liberty-lm': 'liberty-lm', 'rfx-lm': 'rfx-lm', 'sybase-sqlany': 'Sybase SQL Any', 'fhc': 'Federico Heinz Consultora', 'vlsi-lm': 'VLSI License Manager', 'saiscm': 'Satellite-data Acquisition System 3', 'shivadiscovery': 'Shiva', 'imtc-mcs': 'Databeam', 'evb-elm': 'EVB Software Engineering License Manager', 'funkproxy': 'Funk Software, Inc.', 'utcd': 'Universal Time daemon (utcd)', 'symplex': 'symplex', 'diagmond': 'diagmond', 'robcad-lm': 'Robcad, Ltd. License Manager', 'mvx-lm': 'Midland Valley Exploration Ltd. Lic. Man.', '3l-l1': '3l-l1', 'wins': "Microsoft's Windows Internet Name Service", 'fujitsu-dtc': 'Fujitsu Systems Business of America, Inc', 'fujitsu-dtcns': 'Fujitsu Systems Business of America, Inc', 'ifor-protocol': 'ifor-protocol', 'vpad': 'Virtual Places Audio data', 'vpac': 'Virtual Places Audio control', 'vpvd': 'Virtual Places Video data', 'vpvc': 'Virtual Places Video control', 'atm-zip-office': 'atm zip office', 'ncube-lm': 'nCube License Manager', 'ricardo-lm': 'Ricardo North America License Manager', 'cichild-lm': 'cichild', 'ingreslock': 'ingres', 'orasrv': 'oracle', 'prospero-np': 'Prospero Directory Service non-priv', 'pdap-np': 'Prospero Data Access Prot non-priv', 'tlisrv': 'oracle', 'coauthor': 'oracle', 'rap-service': 'rap-service', 'rap-listen': 'rap-listen', 'miroconnect': 'miroconnect', 'virtual-places': 'Virtual Places Software', 'micromuse-lm': 'micromuse-lm', 'ampr-info': 'ampr-info', 'ampr-inter': 'ampr-inter', 'sdsc-lm': 'isi-lm', '3ds-lm': '3ds-lm', 'intellistor-lm': 'Intellistor License Manager', 'rds': 'rds', 'rds2': 'rds2', 'gridgen-elmd': 'gridgen-elmd', 'simba-cs': 'simba-cs', 'aspeclmd': 'aspeclmd', 'vistium-share': 'vistium-share', 'abbaccuray': 'abbaccuray', 'laplink': 'laplink', 'axon-lm': 'Axon License Manager', 'shivahose': 'Shiva Hose', '3m-image-lm': 'Image Storage license manager 3M Company', 'hecmtl-db': 'HECMTL-DB', 'pciarray': 'pciarray', 'sna-cs': 'sna-cs', 'caci-lm': 'CACI Products Company License Manager', 'livelan': 'livelan', 'veritas-pbx': 'VERITAS Private Branch Exchange\nIANA assigned this well-formed service name as a replacement for "veritas_pbx".', 'veritas_pbx': 'VERITAS Private Branch Exchange', 'arbortext-lm': 'ArborText License Manager', 'xingmpeg': 'xingmpeg', 'web2host': 'web2host', 'asci-val': 'ASCI-RemoteSHADOW', 'facilityview': 'facilityview', 'pconnectmgr': 'pconnectmgr', 'cadabra-lm': 'Cadabra License Manager', 'pay-per-view': 'Pay-Per-View', 'winddlb': 'WinDD', 'corelvideo': 'CORELVIDEO', 'jlicelmd': 'jlicelmd', 'tsspmap': 'tsspmap', 'ets': 'ets', 'orbixd': 'orbixd', 'rdb-dbs-disp': 'Oracle Remote Data Base', 'chip-lm': 'Chipcom License Manager', 'itscomm-ns': 'itscomm-ns', 'mvel-lm': 'mvel-lm', 'oraclenames': 'oraclenames', 'moldflow-lm': 'Moldflow License Manager', 'hypercube-lm': 'hypercube-lm', 'jacobus-lm': 'Jacobus License Manager', 'ioc-sea-lm': 'ioc-sea-lm', 'tn-tl-r1': 'tn-tl-r1', 'mil-2045-47001': 'MIL-2045-47001', 'msims': 'MSIMS', 'simbaexpress': 'simbaexpress', 'tn-tl-fd2': 'tn-tl-fd2', 'intv': 'intv', 'ibm-abtact': 'ibm-abtact', 'pra-elmd': 'pra_elmd\nIANA assigned this well-formed service name as a replacement for "pra_elmd".', 'pra_elmd': 'pra_elmd', 'triquest-lm': 'triquest-lm', 'vqp': 'VQP', 'gemini-lm': 'gemini-lm', 'ncpm-pm': 'ncpm-pm', 'commonspace': 'commonspace', 'mainsoft-lm': 'mainsoft-lm', 'sixtrak': 'sixtrak', 'radio': 'radio', 'radio-sm': 'radio-sm', 'orbplus-iiop': 'orbplus-iiop', 'picknfs': 'picknfs', 'simbaservices': 'simbaservices', 'issd': 'issd', 'aas': 'aas', 'inspect': 'inspect', 'picodbc': 'pickodbc', 'icabrowser': 'icabrowser', 'slp': 'Salutation Manager (Salutation Protocol)', 'slm-api': 'Salutation Manager (SLM-API)', 'stt': 'stt', 'smart-lm': 'Smart Corp. License Manager', 'isysg-lm': 'isysg-lm', 'taurus-wh': 'taurus-wh', 'ill': 'Inter Library Loan', 'netbill-trans': 'NetBill Transaction Server', 'netbill-keyrep': 'NetBill Key Repository', 'netbill-cred': 'NetBill Credential Server', 'netbill-auth': 'NetBill Authorization Server', 'netbill-prod': 'NetBill Product Server', 'nimrod-agent': 'Nimrod Inter-Agent Communication', 'skytelnet': 'skytelnet', 'xs-openstorage': 'xs-openstorage', 'faxportwinport': 'faxportwinport', 'softdataphone': 'softdataphone', 'ontime': 'ontime', 'jaleosnd': 'jaleosnd', 'udp-sr-port': 'udp-sr-port', 'svs-omagent': 'svs-omagent', 'shockwave': 'Shockwave', 't128-gateway': 'T.128 Gateway', 'lontalk-norm': 'LonTalk normal', 'lontalk-urgnt': 'LonTalk urgent', 'oraclenet8cman': 'Oracle Net8 Cman', 'visitview': 'Visit view', 'pammratc': 'PAMMRATC', 'pammrpc': 'PAMMRPC', 'loaprobe': 'Log On America Probe', 'edb-server1': 'EDB Server 1', 'isdc': 'ISP shared public data control', 'islc': 'ISP shared local data control', 'ismc': 'ISP shared management control', 'cert-initiator': 'cert-initiator', 'cert-responder': 'cert-responder', 'invision': 'InVision', 'isis-am': 'isis-am', 'isis-ambc': 'isis-ambc', 'saiseh': 'Satellite-data Acquisition System 4', 'sightline': 'SightLine', 'sa-msg-port': 'sa-msg-port', 'rsap': 'rsap', 'concurrent-lm': 'concurrent-lm', 'kermit': 'kermit', 'nkd': 'nkdn', 'shiva-confsrvr': 'shiva_confsrvr\nIANA assigned this well-formed service name as a replacement for "shiva_confsrvr".', 'shiva_confsrvr': 'shiva_confsrvr', 'xnmp': 'xnmp', 'alphatech-lm': 'alphatech-lm', 'stargatealerts': 'stargatealerts', 'dec-mbadmin': 'dec-mbadmin', 'dec-mbadmin-h': 'dec-mbadmin-h', 'fujitsu-mmpdc': 'fujitsu-mmpdc', 'sixnetudr': 'sixnetudr', 'sg-lm': 'Silicon Grail License Manager', 'skip-mc-gikreq': 'skip-mc-gikreq', 'netview-aix-1': 'netview-aix-1', 'netview-aix-2': 'netview-aix-2', 'netview-aix-3': 'netview-aix-3', 'netview-aix-4': 'netview-aix-4', 'netview-aix-5': 'netview-aix-5', 'netview-aix-6': 'netview-aix-6', 'netview-aix-7': 'netview-aix-7', 'netview-aix-8': 'netview-aix-8', 'netview-aix-9': 'netview-aix-9', 'netview-aix-10': 'netview-aix-10', 'netview-aix-11': 'netview-aix-11', 'netview-aix-12': 'netview-aix-12', 'proshare-mc-1': 'Intel Proshare Multicast', 'proshare-mc-2': 'Intel Proshare Multicast', 'pdp': 'Pacific Data Products', 'netcomm1': 'netcomm1', 'groupwise': 'groupwise', 'prolink': 'prolink', 'darcorp-lm': 'darcorp-lm', 'microcom-sbp': 'microcom-sbp', 'sd-elmd': 'sd-elmd', 'lanyon-lantern': 'lanyon-lantern', 'ncpm-hip': 'ncpm-hip', 'snaresecure': 'SnareSecure', 'n2nremote': 'n2nremote', 'cvmon': 'cvmon', 'nsjtp-ctrl': 'nsjtp-ctrl', 'nsjtp-data': 'nsjtp-data', 'firefox': 'firefox', 'ng-umds': 'ng-umds', 'empire-empuma': 'empire-empuma', 'sstsys-lm': 'sstsys-lm', 'rrirtr': 'rrirtr', 'rrimwm': 'rrimwm', 'rrilwm': 'rrilwm', 'rrifmm': 'rrifmm', 'rrisat': 'rrisat', 'rsvp-encap-1': 'RSVP-ENCAPSULATION-1', 'rsvp-encap-2': 'RSVP-ENCAPSULATION-2', 'mps-raft': 'mps-raft', 'l2f': 'l2f', 'l2tp': 'l2tp', 'deskshare': 'deskshare', 'hb-engine': 'hb-engine', 'bcs-broker': 'bcs-broker', 'slingshot': 'slingshot', 'jetform': 'jetform', 'vdmplay': 'vdmplay', 'gat-lmd': 'gat-lmd', 'centra': 'centra', 'impera': 'impera', 'pptconference': 'pptconference', 'registrar': 'resource monitoring service', 'conferencetalk': 'ConferenceTalk', 'sesi-lm': 'sesi-lm', 'houdini-lm': 'houdini-lm', 'xmsg': 'xmsg', 'fj-hdnet': 'fj-hdnet', 'h323gatedisc': 'h323gatedisc', 'h323gatestat': 'h323gatestat', 'h323hostcall': 'h323hostcall', 'caicci': 'caicci', 'hks-lm': 'HKS License Manager', 'pptp': 'pptp', 'csbphonemaster': 'csbphonemaster', 'iden-ralp': 'iden-ralp', 'iberiagames': 'IBERIAGAMES', 'winddx': 'winddx', 'telindus': 'TELINDUS', 'citynl': 'CityNL License Management', 'roketz': 'roketz', 'msiccp': 'MSICCP', 'proxim': 'proxim', 'siipat': 'SIMS - SIIPAT Protocol for Alarm Transmission', 'cambertx-lm': 'Camber Corporation License Management', 'privatechat': 'PrivateChat', 'street-stream': 'street-stream', 'ultimad': 'ultimad', 'gamegen1': 'GameGen1', 'webaccess': 'webaccess', 'encore': 'encore', 'cisco-net-mgmt': 'cisco-net-mgmt', '3Com-nsd': '3Com-nsd', 'cinegrfx-lm': 'Cinema Graphics License Manager', 'ncpm-ft': 'ncpm-ft', 'remote-winsock': 'remote-winsock', 'ftrapid-1': 'ftrapid-1', 'ftrapid-2': 'ftrapid-2', 'oracle-em1': 'oracle-em1', 'aspen-services': 'aspen-services', 'sslp': "Simple Socket Library's PortMaster", 'swiftnet': 'SwiftNet', 'lofr-lm': 'Leap of Faith Research License Manager', 'predatar-comms': 'Predatar Comms Service', 'oracle-em2': 'oracle-em2', 'ms-streaming': 'ms-streaming', 'capfast-lmd': 'capfast-lmd', 'cnhrp': 'cnhrp', 'tftp-mcast': 'tftp-mcast', 'spss-lm': 'SPSS License Manager', 'www-ldap-gw': 'www-ldap-gw', 'cft-0': 'cft-0', 'cft-1': 'cft-1', 'cft-2': 'cft-2', 'cft-3': 'cft-3', 'cft-4': 'cft-4', 'cft-5': 'cft-5', 'cft-6': 'cft-6', 'cft-7': 'cft-7', 'bmc-net-adm': 'bmc-net-adm', 'bmc-net-svc': 'bmc-net-svc', 'vaultbase': 'vaultbase', 'essweb-gw': 'EssWeb Gateway', 'kmscontrol': 'KMSControl', 'global-dtserv': 'global-dtserv', 'femis': 'Federal Emergency Management Information System', 'powerguardian': 'powerguardian', 'prodigy-intrnet': 'prodigy-internet', 'pharmasoft': 'pharmasoft', 'dpkeyserv': 'dpkeyserv', 'answersoft-lm': 'answersoft-lm', 'hp-hcip': 'hp-hcip', 'finle-lm': 'Finle License Manager', 'windlm': 'Wind River Systems License Manager', 'funk-logger': 'funk-logger', 'funk-license': 'funk-license', 'psmond': 'psmond', 'hello': 'hello', 'nmsp': 'Narrative Media Streaming Protocol', 'ea1': 'EA1', 'ibm-dt-2': 'ibm-dt-2', 'rsc-robot': 'rsc-robot', 'cera-bcm': 'cera-bcm', 'dpi-proxy': 'dpi-proxy', 'vocaltec-admin': 'Vocaltec Server Administration', 'uma': 'UMA', 'etp': 'Event Transfer Protocol', 'netrisk': 'NETRISK', 'ansys-lm': 'ANSYS-License manager', 'msmq': 'Microsoft Message Que', 'concomp1': 'ConComp1', 'hp-hcip-gwy': 'HP-HCIP-GWY', 'enl': 'ENL', 'enl-name': 'ENL-Name', 'musiconline': 'Musiconline', 'fhsp': 'Fujitsu Hot Standby Protocol', 'oracle-vp2': 'Oracle-VP2', 'oracle-vp1': 'Oracle-VP1', 'jerand-lm': 'Jerand License Manager', 'scientia-sdb': 'Scientia-SDB', 'radius': 'RADIUS', 'radius-acct': 'RADIUS Accounting', 'tdp-suite': 'TDP Suite', 'mmpft': 'MMPFT', 'harp': 'HARP', 'rkb-oscs': 'RKB-OSCS', 'etftp': 'Enhanced Trivial File Transfer Protocol', 'plato-lm': 'Plato License Manager', 'mcagent': 'mcagent', 'donnyworld': 'donnyworld', 'es-elmd': 'es-elmd', 'unisys-lm': 'Unisys Natural Language License Manager', 'metrics-pas': 'metrics-pas', 'direcpc-video': 'DirecPC Video', 'ardt': 'ARDT', 'asi': 'ASI', 'itm-mcell-u': 'itm-mcell-u', 'optika-emedia': 'Optika eMedia', 'net8-cman': 'Oracle Net8 CMan Admin', 'myrtle': 'Myrtle', 'tht-treasure': 'ThoughtTreasure', 'udpradio': 'udpradio', 'ardusuni': 'ARDUS Unicast', 'ardusmul': 'ARDUS Multicast', 'ste-smsc': 'ste-smsc', 'csoft1': 'csoft1', 'talnet': 'TALNET', 'netopia-vo1': 'netopia-vo1', 'netopia-vo2': 'netopia-vo2', 'netopia-vo3': 'netopia-vo3', 'netopia-vo4': 'netopia-vo4', 'netopia-vo5': 'netopia-vo5', 'direcpc-dll': 'DirecPC-DLL', 'altalink': 'altalink', 'tunstall-pnc': 'Tunstall PNC', 'slp-notify': 'SLP Notification', 'fjdocdist': 'fjdocdist', 'alpha-sms': 'ALPHA-SMS', 'gsi': 'GSI', 'ctcd': 'ctcd', 'virtual-time': 'Virtual Time', 'vids-avtp': 'VIDS-AVTP', 'buddy-draw': 'Buddy Draw', 'fiorano-rtrsvc': 'Fiorano RtrSvc', 'fiorano-msgsvc': 'Fiorano MsgSvc', 'datacaptor': 'DataCaptor', 'privateark': 'PrivateArk', 'gammafetchsvr': 'Gamma Fetcher Server', 'sunscalar-svc': 'SunSCALAR Services', 'lecroy-vicp': 'LeCroy VICP', 'mysql-cm-agent': 'MySQL Cluster Manager Agent', 'msnp': 'MSNP', 'paradym-31port': 'Paradym 31 Port', 'entp': 'ENTP', 'swrmi': 'swrmi', 'udrive': 'UDRIVE', 'viziblebrowser': 'VizibleBrowser', 'transact': 'TransAct', 'sunscalar-dns': 'SunSCALAR DNS Service', 'canocentral0': 'Cano Central 0', 'canocentral1': 'Cano Central 1', 'fjmpjps': 'Fjmpjps', 'fjswapsnp': 'Fjswapsnp', 'westell-stats': 'westell stats', 'ewcappsrv': 'ewcappsrv', 'hp-webqosdb': 'hp-webqosdb', 'drmsmc': 'drmsmc', 'nettgain-nms': 'NettGain NMS', 'vsat-control': 'Gilat VSAT Control', 'ibm-mqseries2': 'IBM WebSphere MQ Everyplace', 'ecsqdmn': 'CA eTrust Common Services', 'ibm-mqisdp': 'IBM MQSeries SCADA', 'idmaps': 'Internet Distance Map Svc', 'vrtstrapserver': 'Veritas Trap Server', 'leoip': 'Leonardo over IP', 'filex-lport': 'FileX Listening Port', 'ncconfig': 'NC Config Port', 'unify-adapter': 'Unify Web Adapter Service', 'wilkenlistener': 'wilkenListener', 'childkey-notif': 'ChildKey Notification', 'childkey-ctrl': 'ChildKey Control', 'elad': 'ELAD Protocol', 'o2server-port': 'O2Server Port', 'b-novative-ls': 'b-novative license server', 'metaagent': 'MetaAgent', 'cymtec-port': 'Cymtec secure management', 'mc2studios': 'MC2Studios', 'ssdp': 'SSDP', 'fjicl-tep-a': 'Fujitsu ICL Terminal Emulator Program A', 'fjicl-tep-b': 'Fujitsu ICL Terminal Emulator Program B', 'linkname': 'Local Link Name Resolution', 'fjicl-tep-c': 'Fujitsu ICL Terminal Emulator Program C', 'sugp': 'Secure UP.Link Gateway Protocol', 'tpmd': 'TPortMapperReq', 'intrastar': 'IntraSTAR', 'dawn': 'Dawn', 'global-wlink': 'Global World Link', 'ultrabac': 'UltraBac Software communications port', 'mtp': 'Starlight Networks Multimedia Transport Protocol', 'rhp-iibp': 'rhp-iibp', 'armadp': 'armadp', 'elm-momentum': 'Elm-Momentum', 'facelink': 'FACELINK', 'persona': 'Persoft Persona', 'noagent': 'nOAgent', 'can-nds': 'IBM Tivole Directory Service - NDS', 'can-dch': 'IBM Tivoli Directory Service - DCH', 'can-ferret': 'IBM Tivoli Directory Service - FERRET', 'noadmin': 'NoAdmin', 'tapestry': 'Tapestry', 'spice': 'SPICE', 'xiip': 'XIIP', 'discovery-port': 'Surrogate Discovery Port', 'egs': 'Evolution Game Server', 'videte-cipc': 'Videte CIPC Port', 'emsd-port': 'Expnd Maui Srvr Dscovr', 'bandwiz-system': 'Bandwiz System - Server', 'driveappserver': 'Drive AppServer', 'amdsched': 'AMD SCHED', 'ctt-broker': 'CTT Broker', 'xmapi': 'IBM LM MT Agent', 'xaapi': 'IBM LM Appl Agent', 'macromedia-fcs': 'Macromedia Flash Communications Server MX', 'jetcmeserver': 'JetCmeServer Server Port', 'jwserver': 'JetVWay Server Port', 'jwclient': 'JetVWay Client Port', 'jvserver': 'JetVision Server Port', 'jvclient': 'JetVision Client Port', 'dic-aida': 'DIC-Aida', 'res': 'Real Enterprise Service', 'beeyond-media': 'Beeyond Media', 'close-combat': 'close-combat', 'dialogic-elmd': 'dialogic-elmd', 'tekpls': 'tekpls', 'sentinelsrm': 'SentinelSRM', 'eye2eye': 'eye2eye', 'ismaeasdaqlive': 'ISMA Easdaq Live', 'ismaeasdaqtest': 'ISMA Easdaq Test', 'bcs-lmserver': 'bcs-lmserver', 'mpnjsc': 'mpnjsc', 'rapidbase': 'Rapid Base', 'abr-api': 'ABR-API (diskbridge)', 'abr-secure': 'ABR-Secure Data (diskbridge)', 'vrtl-vmf-ds': 'Vertel VMF DS', 'unix-status': 'unix-status', 'dxadmind': 'CA Administration Daemon', 'simp-all': 'SIMP Channel', 'nasmanager': 'Merit DAC NASmanager', 'bts-appserver': 'BTS APPSERVER', 'biap-mp': 'BIAP-MP', 'webmachine': 'WebMachine', 'solid-e-engine': 'SOLID E ENGINE', 'tivoli-npm': 'Tivoli NPM', 'slush': 'Slush', 'sns-quote': 'SNS Quote', 'lipsinc': 'LIPSinc', 'lipsinc1': 'LIPSinc 1', 'netop-rc': 'NetOp Remote Control', 'netop-school': 'NetOp School', 'intersys-cache': 'Cache', 'dlsrap': 'Data Link Switching Remote Access Protocol', 'drp': 'DRP', 'tcoflashagent': 'TCO Flash Agent', 'tcoregagent': 'TCO Reg Agent', 'tcoaddressbook': 'TCO Address Book', 'unisql': 'UniSQL', 'unisql-java': 'UniSQL Java', 'pearldoc-xact': 'PearlDoc XACT', 'p2pq': 'p2pQ', 'estamp': 'Evidentiary Timestamp', 'lhtp': 'Loophole Test Protocol', 'bb': 'BB', 'hsrp': 'Hot Standby Router Protocol', 'licensedaemon': 'cisco license management', 'tr-rsrb-p1': 'cisco RSRB Priority 1 port', 'tr-rsrb-p2': 'cisco RSRB Priority 2 port', 'tr-rsrb-p3': 'cisco RSRB Priority 3 port', 'mshnet': 'MHSnet system', 'stun-p1': 'cisco STUN Priority 1 port', 'stun-p2': 'cisco STUN Priority 2 port', 'stun-p3': 'cisco STUN Priority 3 port', 'ipsendmsg': 'IPsendmsg', 'snmp-tcp-port': 'cisco SNMP TCP port', 'stun-port': 'cisco serial tunnel port', 'perf-port': 'cisco perf port', 'tr-rsrb-port': 'cisco Remote SRB port', 'gdp-port': 'cisco Gateway Discovery Protocol', 'x25-svc-port': 'cisco X.25 service (XOT)', 'tcp-id-port': 'cisco identification port', 'cisco-sccp': 'Cisco SCCP', 'dc': '', 'globe': '', 'brutus': 'Brutus Server', 'mailbox': '', 'berknet': '', 'invokator': '', 'dectalk': '', 'conf': '', 'news': '', 'search': '', 'raid-cc': 'raid', 'ttyinfo': '', 'raid-am': '', 'troff': '', 'cypress': '', 'bootserver': '', 'cypress-stat': '', 'terminaldb': '', 'whosockami': '', 'xinupageserver': '', 'servexec': '', 'down': '', 'xinuexpansion3': '', 'xinuexpansion4': '', 'ellpack': '', 'scrabble': '', 'shadowserver': '', 'submitserver': '', 'hsrpv6': 'Hot Standby Router Protocol IPv6', 'device2': '', 'mobrien-chat': 'mobrien-chat', 'blackboard': '', 'glogger': '', 'scoremgr': '', 'imsldoc': '', 'e-dpnet': 'Ethernet WS DP network', 'applus': 'APplus Application Server', 'objectmanager': '', 'prizma': 'Prizma Monitoring Service', 'lam': '', 'interbase': '', 'isis': 'isis', 'isis-bcast': 'isis-bcast', 'rimsl': '', 'cdfunc': '', 'sdfunc': '', 'dls': '', 'dls-monitor': '', 'shilp': '', 'nfs': 'Network File System - Sun Microsystems', 'av-emb-config': 'Avaya EMB Config Port', 'epnsdp': 'EPNSDP', 'clearvisn': 'clearVisn Services Port', 'lot105-ds-upd': 'Lot105 DSuper Updates', 'weblogin': 'Weblogin Port', 'iop': 'Iliad-Odyssey Protocol', 'omnisky': 'OmniSky Port', 'rich-cp': 'Rich Content Protocol', 'newwavesearch': 'NewWaveSearchables RMI', 'bmc-messaging': 'BMC Messaging Service', 'teleniumdaemon': 'Telenium Daemon IF', 'netmount': 'NetMount', 'icg-swp': 'ICG SWP Port', 'icg-bridge': 'ICG Bridge Port', 'icg-iprelay': 'ICG IP Relay Port', 'dlsrpn': 'Data Link Switch Read Port Number', 'aura': 'AVM USB Remote Architecture', 'dlswpn': 'Data Link Switch Write Port Number', 'avauthsrvprtcl': 'Avocent AuthSrv Protocol', 'event-port': 'HTTP Event Port', 'ah-esp-encap': 'AH and ESP Encapsulated in UDP packet', 'acp-port': 'Axon Control Protocol', 'msync': 'GlobeCast mSync', 'gxs-data-port': 'DataReel Database Socket', 'vrtl-vmf-sa': 'Vertel VMF SA', 'newlixengine': 'Newlix ServerWare Engine', 'newlixconfig': 'Newlix JSPConfig', 'tsrmagt': 'Old Tivoli Storage Manager', 'tpcsrvr': 'IBM Total Productivity Center Server', 'idware-router': 'IDWARE Router Port', 'autodesk-nlm': 'Autodesk NLM (FLEXlm)', 'kme-trap-port': 'KME PRINTER TRAP PORT', 'infowave': 'Infowave Mobility Server', 'radsec': 'Secure Radius Service', 'sunclustergeo': 'SunCluster Geographic', 'ada-cip': 'ADA Control', 'gnunet': 'GNUnet', 'eli': 'ELI - Event Logging Integration', 'ip-blf': 'IP Busy Lamp Field', 'sep': 'Security Encapsulation Protocol - SEP', 'lrp': 'Load Report Protocol', 'prp': 'PRP', 'descent3': 'Descent 3', 'nbx-cc': 'NBX CC', 'nbx-au': 'NBX AU', 'nbx-ser': 'NBX SER', 'nbx-dir': 'NBX DIR', 'jetformpreview': 'Jet Form Preview', 'dialog-port': 'Dialog Port', 'h2250-annex-g': 'H.225.0 Annex G', 'amiganetfs': 'Amiga Network Filesystem', 'rtcm-sc104': 'rtcm-sc104', 'zephyr-srv': 'Zephyr server', 'zephyr-clt': 'Zephyr serv-hm connection', 'zephyr-hm': 'Zephyr hostmanager', 'minipay': 'MiniPay', 'mzap': 'MZAP', 'bintec-admin': 'BinTec Admin', 'comcam': 'Comcam', 'ergolight': 'Ergolight', 'umsp': 'UMSP', 'dsatp': 'OPNET Dynamic Sampling Agent Transaction Protocol', 'idonix-metanet': 'Idonix MetaNet', 'hsl-storm': 'HSL StoRM', 'newheights': 'NEWHEIGHTS', 'kdm': 'Key Distribution Manager', 'ccowcmr': 'CCOWCMR', 'mentaclient': 'MENTACLIENT', 'mentaserver': 'MENTASERVER', 'gsigatekeeper': 'GSIGATEKEEPER', 'qencp': 'Quick Eagle Networks CP', 'scientia-ssdb': 'SCIENTIA-SSDB', 'caupc-remote': 'CauPC Remote Control', 'gtp-control': 'GTP-Control Plane (3GPP)', 'elatelink': 'ELATELINK', 'lockstep': 'LOCKSTEP', 'pktcable-cops': 'PktCable-COPS', 'index-pc-wb': 'INDEX-PC-WB', 'net-steward': 'Net Steward Control', 'cs-live': 'cs-live.com', 'xds': 'XDS', 'avantageb2b': 'Avantageb2b', 'solera-epmap': 'SoleraTec End Point Map', 'zymed-zpp': 'ZYMED-ZPP', 'avenue': 'AVENUE', 'gris': 'Grid Resource Information Server', 'appworxsrv': 'APPWORXSRV', 'connect': 'CONNECT', 'unbind-cluster': 'UNBIND-CLUSTER', 'ias-auth': 'IAS-AUTH', 'ias-reg': 'IAS-REG', 'ias-admind': 'IAS-ADMIND', 'tdmoip': 'TDM OVER IP', 'lv-jc': 'Live Vault Job Control', 'lv-ffx': 'Live Vault Fast Object Transfer', 'lv-pici': 'Live Vault Remote Diagnostic Console Support', 'lv-not': 'Live Vault Admin Event Notification', 'lv-auth': 'Live Vault Authentication', 'veritas-ucl': 'VERITAS UNIVERSAL COMMUNICATION LAYER', 'acptsys': 'ACPTSYS', 'dynamic3d': 'DYNAMIC3D', 'docent': 'DOCENT', 'gtp-user': 'GTP-User Plane (3GPP)', 'ctlptc': 'Control Protocol', 'stdptc': 'Standard Protocol', 'brdptc': 'Bridge Protocol', 'trp': 'Talari Reliable Protocol', 'xnds': 'Xerox Network Document Scan Protocol', 'touchnetplus': 'TouchNetPlus Service', 'gdbremote': 'GDB Remote Debug Port', 'apc-2160': 'APC 2160', 'apc-2161': 'APC 2161', 'navisphere': 'Navisphere', 'navisphere-sec': 'Navisphere Secure', 'ddns-v3': 'Dynamic DNS Version 3', 'x-bone-api': 'X-Bone API', 'iwserver': 'iwserver', 'raw-serial': 'Raw Async Serial Link', 'easy-soft-mux': 'easy-soft Multiplexer', 'brain': 'Backbone for Academic Information Notification (BRAIN)', 'eyetv': 'EyeTV Server Port', 'msfw-storage': 'MS Firewall Storage', 'msfw-s-storage': 'MS Firewall SecureStorage', 'msfw-replica': 'MS Firewall Replication', 'msfw-array': 'MS Firewall Intra Array', 'airsync': 'Microsoft Desktop AirSync Protocol', 'rapi': 'Microsoft ActiveSync Remote API', 'qwave': 'qWAVE Bandwidth Estimate', 'bitspeer': 'Peer Services for BITS', 'vmrdp': 'Microsoft RDP for virtual machines', 'mc-gt-srv': 'Millicent Vendor Gateway Server', 'eforward': 'eforward', 'cgn-stat': 'CGN status', 'cgn-config': 'Code Green configuration', 'nvd': 'NVD User', 'onbase-dds': 'OnBase Distributed Disk Services', 'gtaua': 'Guy-Tek Automated Update Applications', 'ssmc': 'Sepehr System Management Control', 'radware-rpm': 'Radware Resource Pool Manager', 'radware-rpm-s': 'Secure Radware Resource Pool Manager', 'tivoconnect': 'TiVoConnect Beacon', 'tvbus': 'TvBus Messaging', 'asdis': 'ASDIS software management', 'drwcs': 'Dr.Web Enterprise Management Service', 'mnp-exchange': 'MNP data exchange', 'onehome-remote': 'OneHome Remote Access', 'onehome-help': 'OneHome Service Port', 'ici': 'ICI', 'ats': 'Advanced Training System Program', 'imtc-map': 'Int. Multimedia Teleconferencing Cosortium', 'b2-runtime': 'b2 Runtime Protocol', 'b2-license': 'b2 License Server', 'jps': 'Java Presentation Server', 'hpocbus': 'HP OpenCall bus', 'hpssd': 'HP Status and Services', 'hpiod': 'HP I/O Backend', 'rimf-ps': 'HP RIM for Files Portal Service', 'noaaport': 'NOAAPORT Broadcast Network', 'emwin': 'EMWIN', 'leecoposserver': 'LeeCO POS Server Service', 'kali': 'Kali', 'rpi': 'RDQ Protocol Interface', 'ipcore': 'IPCore.co.za GPRS', 'vtu-comms': 'VTU data service', 'gotodevice': 'GoToDevice Device Management', 'bounzza': 'Bounzza IRC Proxy', 'netiq-ncap': 'NetIQ NCAP Protocol', 'netiq': 'NetIQ End2End', 'rockwell-csp1': 'Rockwell CSP1', 'EtherNet-IP-1': 'EtherNet/IP I/O\nIANA assigned this well-formed service name as a replacement for "EtherNet/IP-1".', 'EtherNet/IP-1': 'EtherNet/IP I/O', 'rockwell-csp2': 'Rockwell CSP2', 'efi-mg': 'Easy Flexible Internet/Multiplayer Games', 'rcip-itu': 'Resource Connection Initiation Protocol', 'di-drm': 'Digital Instinct DRM', 'di-msg': 'DI Messaging Service', 'ehome-ms': 'eHome Message Server', 'datalens': 'DataLens Service', 'queueadm': 'MetaSoft Job Queue Administration Service', 'wimaxasncp': 'WiMAX ASN Control Plane Protocol', 'ivs-video': 'IVS Video default', 'infocrypt': 'INFOCRYPT', 'directplay': 'DirectPlay', 'sercomm-wlink': 'Sercomm-WLink', 'nani': 'Nani', 'optech-port1-lm': 'Optech Port1 License Manager', 'aviva-sna': 'AVIVA SNA SERVER', 'imagequery': 'Image Query', 'recipe': 'RECIPe', 'ivsd': 'IVS Daemon', 'foliocorp': 'Folio Remote Server', 'magicom': 'Magicom Protocol', 'nmsserver': 'NMS Server', 'hao': 'HaO', 'pc-mta-addrmap': 'PacketCable MTA Addr Map', 'antidotemgrsvr': 'Antidote Deployment Manager Service', 'ums': 'User Management Service', 'rfmp': 'RISO File Manager Protocol', 'remote-collab': 'remote-collab', 'dif-port': 'Distributed Framework Port', 'njenet-ssl': 'NJENET using SSL', 'dtv-chan-req': 'DTV Channel Request', 'seispoc': 'Seismic P.O.C. Port', 'vrtp': 'VRTP - ViRtue Transfer Protocol', 'pcc-mfp': 'PCC MFP', 'simple-tx-rx': 'simple text/file transfer', 'rcts': 'Rotorcraft Communications Test System', 'apc-2260': 'APC 2260', 'comotionmaster': 'CoMotion Master Server', 'comotionback': 'CoMotion Backup Server', 'ecwcfg': 'ECweb Configuration Service', 'apx500api-1': 'Audio Precision Apx500 API Port 1', 'apx500api-2': 'Audio Precision Apx500 API Port 2', 'mfserver': 'M-Files Server', 'ontobroker': 'OntoBroker', 'amt': 'AMT', 'mikey': 'MIKEY', 'starschool': 'starSchool', 'mmcals': 'Secure Meeting Maker Scheduling', 'mmcal': 'Meeting Maker Scheduling', 'mysql-im': 'MySQL Instance Manager', 'pcttunnell': 'PCTTunneller', 'ibridge-data': 'iBridge Conferencing', 'ibridge-mgmt': 'iBridge Management', 'bluectrlproxy': 'Bt device control proxy', 's3db': 'Simple Stacked Sequences Database', 'xmquery': 'xmquery', 'lnvpoller': 'LNVPOLLER', 'lnvconsole': 'LNVCONSOLE', 'lnvalarm': 'LNVALARM', 'lnvstatus': 'LNVSTATUS', 'lnvmaps': 'LNVMAPS', 'lnvmailmon': 'LNVMAILMON', 'nas-metering': 'NAS-Metering', 'dna': 'DNA', 'netml': 'NETML', 'dict-lookup': 'Lookup dict server', 'sonus-logging': 'Sonus Logging Services', 'eapsp': 'EPSON Advanced Printer Share Protocol', 'mib-streaming': 'Sonus Element Management Services', 'npdbgmngr': 'Network Platform Debug Manager', 'konshus-lm': 'Konshus License Manager (FLEX)', 'advant-lm': 'Advant License Manager', 'theta-lm': 'Theta License Manager (Rainbow)', 'd2k-datamover1': 'D2K DataMover 1', 'd2k-datamover2': 'D2K DataMover 2', 'pc-telecommute': 'PC Telecommute', 'cvmmon': 'CVMMON', 'cpq-wbem': 'Compaq HTTP', 'binderysupport': 'Bindery Support', 'proxy-gateway': 'Proxy Gateway', 'attachmate-uts': 'Attachmate UTS', 'mt-scaleserver': 'MT ScaleServer', 'tappi-boxnet': 'TAPPI BoxNet', 'pehelp': 'pehelp', 'sdhelp': 'sdhelp', 'sdserver': 'SD Server', 'sdclient': 'SD Client', 'messageservice': 'Message Service', 'wanscaler': 'WANScaler Communication Service', 'iapp': 'IAPP (Inter Access Point Protocol)', 'cr-websystems': 'CR WebSystems', 'precise-sft': 'Precise Sft.', 'sent-lm': 'SENT License Manager', 'attachmate-g32': 'Attachmate G32', 'cadencecontrol': 'Cadence Control', 'infolibria': 'InfoLibria', 'siebel-ns': 'Siebel NS', 'rdlap': 'RDLAP', 'ofsd': 'ofsd', '3d-nfsd': '3d-nfsd', 'cosmocall': 'Cosmocall', 'ansysli': 'ANSYS Licensing Interconnect', 'idcp': 'IDCP', 'xingcsm': 'xingcsm', 'netrix-sftm': 'Netrix SFTM', 'nvd': 'NVD', 'tscchat': 'TSCCHAT', 'agentview': 'AGENTVIEW', 'rcc-host': 'RCC Host', 'snapp': 'SNAPP', 'ace-client': 'ACE Client Auth', 'ace-proxy': 'ACE Proxy', 'appleugcontrol': 'Apple UG Control', 'ideesrv': 'ideesrv', 'norton-lambert': 'Norton Lambert', '3com-webview': '3Com WebView', 'wrs-registry': 'WRS Registry\nIANA assigned this well-formed service name as a replacement for "wrs_registry".', 'wrs_registry': 'WRS Registry', 'xiostatus': 'XIO Status', 'manage-exec': 'Seagate Manage Exec', 'nati-logos': 'nati logos', 'fcmsys': 'fcmsys', 'dbm': 'dbm', 'redstorm-join': 'Game Connection Port\nIANA assigned this well-formed service name as a replacement for "redstorm_join".', 'redstorm_join': 'Game Connection Port', 'redstorm-find': 'Game Announcement and Location\nIANA assigned this well-formed service name as a replacement for "redstorm_find".', 'redstorm_find': 'Game Announcement and Location', 'redstorm-info': 'Information to query for game status\nIANA assigned this well-formed service name as a replacement for "redstorm_info".', 'redstorm_info': 'Information to query for game status', 'redstorm-diag': 'Diagnostics Port\nIANA assigned this well-formed service name as a replacement for "redstorm_diag".', 'redstorm_diag': 'Diagnostics Port', 'psbserver': 'Pharos Booking Server', 'psrserver': 'psrserver', 'pslserver': 'pslserver', 'pspserver': 'pspserver', 'psprserver': 'psprserver', 'psdbserver': 'psdbserver', 'gxtelmd': 'GXT License Managemant', 'unihub-server': 'UniHub Server', 'futrix': 'Futrix', 'flukeserver': 'FlukeServer', 'nexstorindltd': 'NexstorIndLtd', 'tl1': 'TL1', 'digiman': 'digiman', 'mediacntrlnfsd': 'Media Central NFSD', 'oi-2000': 'OI-2000', 'dbref': 'dbref', 'qip-login': 'qip-login', 'service-ctrl': 'Service Control', 'opentable': 'OpenTable', 'l3-hbmon': 'L3-HBMon', 'worldwire': 'Compaq WorldWire Port', 'lanmessenger': 'LanMessenger', 'remographlm': 'Remograph License Manager', 'hydra': 'Hydra RPC', 'compaq-https': 'Compaq HTTPS', 'ms-olap3': 'Microsoft OLAP', 'ms-olap4': 'Microsoft OLAP', 'sd-request': 'SD-REQUEST', 'sd-data': 'SD-DATA', 'virtualtape': 'Virtual Tape', 'vsamredirector': 'VSAM Redirector', 'mynahautostart': 'MYNAH AutoStart', 'ovsessionmgr': 'OpenView Session Mgr', 'rsmtp': 'RSMTP', '3com-net-mgmt': '3COM Net Management', 'tacticalauth': 'Tactical Auth', 'ms-olap1': 'MS OLAP 1', 'ms-olap2': 'MS OLAP 2', 'lan900-remote': 'LAN900 Remote\nIANA assigned this well-formed service name as a replacement for "lan900_remote".', 'lan900_remote': 'LAN900 Remote', 'wusage': 'Wusage', 'ncl': 'NCL', 'orbiter': 'Orbiter', 'fmpro-fdal': 'FileMaker, Inc. - Data Access Layer', 'opequus-server': 'OpEquus Server', 'cvspserver': 'cvspserver', 'taskmaster2000': 'TaskMaster 2000 Server', 'taskmaster2000': 'TaskMaster 2000 Web', 'iec-104': 'IEC 60870-5-104 process control over IP', 'trc-netpoll': 'TRC Netpoll', 'jediserver': 'JediServer', 'orion': 'Orion', 'railgun-webaccl': 'CloudFlare Railgun Web Acceleration Protocol', 'sns-protocol': 'SNS Protocol', 'vrts-registry': 'VRTS Registry', 'netwave-ap-mgmt': 'Netwave AP Management', 'cdn': 'CDN', 'orion-rmi-reg': 'orion-rmi-reg', 'beeyond': 'Beeyond', 'codima-rtp': 'Codima Remote Transaction Protocol', 'rmtserver': 'RMT Server', 'composit-server': 'Composit Server', 'cas': 'cas', 'attachmate-s2s': 'Attachmate S2S', 'dslremote-mgmt': 'DSL Remote Management', 'g-talk': 'G-Talk', 'crmsbits': 'CRMSBITS', 'rnrp': 'RNRP', 'kofax-svr': 'KOFAX-SVR', 'fjitsuappmgr': 'Fujitsu App Manager', 'mgcp-gateway': 'Media Gateway Control Protocol Gateway', 'ott': 'One Way Trip Time', 'ft-role': 'FT-ROLE', 'venus': 'venus', 'venus-se': 'venus-se', 'codasrv': 'codasrv', 'codasrv-se': 'codasrv-se', 'pxc-epmap': 'pxc-epmap', 'optilogic': 'OptiLogic', 'topx': 'TOP/X', 'unicontrol': 'UniControl', 'msp': 'MSP', 'sybasedbsynch': 'SybaseDBSynch', 'spearway': 'Spearway Lockers', 'pvsw-inet': 'Pervasive I*net Data Server', 'netangel': 'Netangel', 'powerclientcsf': 'PowerClient Central Storage Facility', 'btpp2sectrans': 'BT PP2 Sectrans', 'dtn1': 'DTN1', 'bues-service': 'bues_service\nIANA assigned this well-formed service name as a replacement for "bues_service".', 'bues_service': 'bues_service', 'ovwdb': 'OpenView NNM daemon', 'hpppssvr': 'hpppsvr', 'ratl': 'RATL', 'netadmin': 'netadmin', 'netchat': 'netchat', 'snifferclient': 'SnifferClient', 'madge-ltd': 'madge ltd', 'indx-dds': 'IndX-DDS', 'wago-io-system': 'WAGO-IO-SYSTEM', 'altav-remmgt': 'altav-remmgt', 'rapido-ip': 'Rapido_IP', 'griffin': 'griffin', 'community': 'Community', 'ms-theater': 'ms-theater', 'qadmifoper': 'qadmifoper', 'qadmifevent': 'qadmifevent', 'lsi-raid-mgmt': 'LSI RAID Management', 'direcpc-si': 'DirecPC SI', 'lbm': 'Load Balance Management', 'lbf': 'Load Balance Forwarding', 'high-criteria': 'High Criteria', 'qip-msgd': 'qip_msgd', 'mti-tcs-comm': 'MTI-TCS-COMM', 'taskman-port': 'taskman port', 'seaodbc': 'SeaODBC', 'c3': 'C3', 'aker-cdp': 'Aker-cdp', 'vitalanalysis': 'Vital Analysis', 'ace-server': 'ACE Server', 'ace-svr-prop': 'ACE Server Propagation', 'ssm-cvs': 'SecurSight Certificate Valifation Service', 'ssm-cssps': 'SecurSight Authentication Server (SSL)', 'ssm-els': 'SecurSight Event Logging Server (SSL)', 'powerexchange': 'Informatica PowerExchange Listener', 'giop': 'Oracle GIOP', 'giop-ssl': 'Oracle GIOP SSL', 'ttc': 'Oracle TTC', 'ttc-ssl': 'Oracle TTC SSL', 'netobjects1': 'Net Objects1', 'netobjects2': 'Net Objects2', 'pns': 'Policy Notice Service', 'moy-corp': 'Moy Corporation', 'tsilb': 'TSILB', 'qip-qdhcp': 'qip_qdhcp', 'conclave-cpp': 'Conclave CPP', 'groove': 'GROOVE', 'talarian-mqs': 'Talarian MQS', 'bmc-ar': 'BMC AR', 'fast-rem-serv': 'Fast Remote Services', 'dirgis': 'DIRGIS', 'quaddb': 'Quad DB', 'odn-castraq': 'ODN-CasTraq', 'unicontrol': 'UniControl', 'rtsserv': 'Resource Tracking system server', 'rtsclient': 'Resource Tracking system client', 'kentrox-prot': 'Kentrox Protocol', 'nms-dpnss': 'NMS-DPNSS', 'wlbs': 'WLBS', 'ppcontrol': 'PowerPlay Control', 'jbroker': 'jbroker', 'spock': 'spock', 'jdatastore': 'JDataStore', 'fjmpss': 'fjmpss', 'fjappmgrbulk': 'fjappmgrbulk', 'metastorm': 'Metastorm', 'citrixima': 'Citrix IMA', 'citrixadmin': 'Citrix ADMIN', 'facsys-ntp': 'Facsys NTP', 'facsys-router': 'Facsys Router', 'maincontrol': 'Main Control', 'call-sig-trans': 'H.323 Annex E call signaling transport', 'willy': 'Willy', 'globmsgsvc': 'globmsgsvc', 'pvsw': 'Pervasive Listener', 'adaptecmgr': 'Adaptec Manager', 'windb': 'WinDb', 'qke-llc-v3': 'Qke LLC V.3', 'optiwave-lm': 'Optiwave License Management', 'ms-v-worlds': 'MS V-Worlds', 'ema-sent-lm': 'EMA License Manager', 'iqserver': 'IQ Server', 'ncr-ccl': 'NCR CCL\nIANA assigned this well-formed service name as a replacement for "ncr_ccl".', 'ncr_ccl': 'NCR CCL', 'utsftp': 'UTS FTP', 'vrcommerce': 'VR Commerce', 'ito-e-gui': 'ITO-E GUI', 'ovtopmd': 'OVTOPMD', 'snifferserver': 'SnifferServer', 'combox-web-acc': 'Combox Web Access', 'madcap': 'MADCAP', 'btpp2audctr1': 'btpp2audctr1', 'upgrade': 'Upgrade Protocol', 'vnwk-prapi': 'vnwk-prapi', 'vsiadmin': 'VSI Admin', 'lonworks': 'LonWorks', 'lonworks2': 'LonWorks2', 'udrawgraph': 'uDraw(Graph)', 'reftek': 'REFTEK', 'novell-zen': 'Management Daemon Refresh', 'sis-emt': 'sis-emt', 'vytalvaultbrtp': 'vytalvaultbrtp', 'vytalvaultvsmp': 'vytalvaultvsmp', 'vytalvaultpipe': 'vytalvaultpipe', 'ipass': 'IPASS', 'ads': 'ADS', 'isg-uda-server': 'ISG UDA Server', 'call-logging': 'Call Logging', 'efidiningport': 'efidiningport', 'vcnet-link-v10': 'VCnet-Link v10', 'compaq-wcp': 'Compaq WCP', 'nicetec-nmsvc': 'nicetec-nmsvc', 'nicetec-mgmt': 'nicetec-mgmt', 'pclemultimedia': 'PCLE Multi Media', 'lstp': 'LSTP', 'labrat': 'labrat', 'mosaixcc': 'MosaixCC', 'delibo': 'Delibo', 'cti-redwood': 'CTI Redwood', 'hp-3000-telnet': 'HP 3000 NS/VT block mode telnet', 'coord-svr': 'Coordinator Server', 'pcs-pcw': 'pcs-pcw', 'clp': 'Cisco Line Protocol', 'spamtrap': 'SPAM TRAP', 'sonuscallsig': 'Sonus Call Signal', 'hs-port': 'HS Port', 'cecsvc': 'CECSVC', 'ibp': 'IBP', 'trustestablish': 'Trust Establish', 'blockade-bpsp': 'Blockade BPSP', 'hl7': 'HL7', 'tclprodebugger': 'TCL Pro Debugger', 'scipticslsrvr': 'Scriptics Lsrvr', 'rvs-isdn-dcp': 'RVS ISDN DCP', 'mpfoncl': 'mpfoncl', 'tributary': 'Tributary', 'argis-te': 'ARGIS TE', 'argis-ds': 'ARGIS DS', 'mon': 'MON', 'cyaserv': 'cyaserv', 'netx-server': 'NETX Server', 'netx-agent': 'NETX Agent', 'masc': 'MASC', 'privilege': 'Privilege', 'quartus-tcl': 'quartus tcl', 'idotdist': 'idotdist', 'maytagshuffle': 'Maytag Shuffle', 'netrek': 'netrek', 'mns-mail': 'MNS Mail Notice Service', 'dts': 'Data Base Server', 'worldfusion1': 'World Fusion 1', 'worldfusion2': 'World Fusion 2', 'homesteadglory': 'Homestead Glory', 'citriximaclient': 'Citrix MA Client', 'snapd': 'Snap Discovery', 'hpstgmgr': 'HPSTGMGR', 'discp-client': 'discp client', 'discp-server': 'discp server', 'servicemeter': 'Service Meter', 'nsc-ccs': 'NSC CCS', 'nsc-posa': 'NSC POSA', 'netmon': 'Dell Netmon', 'connection': 'Dell Connection', 'wag-service': 'Wag Service', 'system-monitor': 'System Monitor', 'versa-tek': 'VersaTek', 'lionhead': 'LIONHEAD', 'qpasa-agent': 'Qpasa Agent', 'smntubootstrap': 'SMNTUBootstrap', 'neveroffline': 'Never Offline', 'firepower': 'firepower', 'appswitch-emp': 'appswitch-emp', 'cmadmin': 'Clinical Context Managers', 'priority-e-com': 'Priority E-Com', 'bruce': 'bruce', 'lpsrecommender': 'LPSRecommender', 'miles-apart': 'Miles Apart Jukebox Server', 'metricadbc': 'MetricaDBC', 'lmdp': 'LMDP', 'aria': 'Aria', 'blwnkl-port': 'Blwnkl Port', 'gbjd816': 'gbjd816', 'moshebeeri': 'Moshe Beeri', 'dict': 'DICT', 'sitaraserver': 'Sitara Server', 'sitaramgmt': 'Sitara Management', 'sitaradir': 'Sitara Dir', 'irdg-post': 'IRdg Post', 'interintelli': 'InterIntelli', 'pk-electronics': 'PK Electronics', 'backburner': 'Back Burner', 'solve': 'Solve', 'imdocsvc': 'Import Document Service', 'sybaseanywhere': 'Sybase Anywhere', 'aminet': 'AMInet', 'sai-sentlm': 'Sabbagh Associates Licence Manager\nIANA assigned this well-formed service name as a replacement for "sai_sentlm".', 'sai_sentlm': 'Sabbagh Associates Licence Manager', 'hdl-srv': 'HDL Server', 'tragic': 'Tragic', 'gte-samp': 'GTE-SAMP', 'travsoft-ipx-t': 'Travsoft IPX Tunnel', 'novell-ipx-cmd': 'Novell IPX CMD', 'and-lm': 'AND License Manager', 'syncserver': 'SyncServer', 'upsnotifyprot': 'Upsnotifyprot', 'vpsipport': 'VPSIPPORT', 'eristwoguns': 'eristwoguns', 'ebinsite': 'EBInSite', 'interpathpanel': 'InterPathPanel', 'sonus': 'Sonus', 'corel-vncadmin': 'Corel VNC Admin\nIANA assigned this well-formed service name as a replacement for "corel_vncadmin".', 'corel_vncadmin': 'Corel VNC Admin', 'unglue': 'UNIX Nt Glue', 'kana': 'Kana', 'sns-dispatcher': 'SNS Dispatcher', 'sns-admin': 'SNS Admin', 'sns-query': 'SNS Query', 'gcmonitor': 'GC Monitor', 'olhost': 'OLHOST', 'bintec-capi': 'BinTec-CAPI', 'bintec-tapi': 'BinTec-TAPI', 'patrol-mq-gm': 'Patrol for MQ GM', 'patrol-mq-nm': 'Patrol for MQ NM', 'extensis': 'extensis', 'alarm-clock-s': 'Alarm Clock Server', 'alarm-clock-c': 'Alarm Clock Client', 'toad': 'TOAD', 'tve-announce': 'TVE Announce', 'newlixreg': 'newlixreg', 'nhserver': 'nhserver', 'firstcall42': 'First Call 42', 'ewnn': 'ewnn', 'ttc-etap': 'TTC ETAP', 'simslink': 'SIMSLink', 'gadgetgate1way': 'Gadget Gate 1 Way', 'gadgetgate2way': 'Gadget Gate 2 Way', 'syncserverssl': 'Sync Server SSL', 'pxc-sapxom': 'pxc-sapxom', 'mpnjsomb': 'mpnjsomb', 'ncdloadbalance': 'NCDLoadBalance', 'mpnjsosv': 'mpnjsosv', 'mpnjsocl': 'mpnjsocl', 'mpnjsomg': 'mpnjsomg', 'pq-lic-mgmt': 'pq-lic-mgmt', 'md-cg-http': 'md-cf-http', 'fastlynx': 'FastLynx', 'hp-nnm-data': 'HP NNM Embedded Database', 'itinternet': 'ITInternet ISM Server', 'admins-lms': 'Admins LMS', 'pwrsevent': 'pwrsevent', 'vspread': 'VSPREAD', 'unifyadmin': 'Unify Admin', 'oce-snmp-trap': 'Oce SNMP Trap Port', 'mck-ivpip': 'MCK-IVPIP', 'csoft-plusclnt': 'Csoft Plus Client', 'tqdata': 'tqdata', 'sms-rcinfo': 'SMS RCINFO', 'sms-xfer': 'SMS XFER', 'sms-chat': 'SMS CHAT', 'sms-remctrl': 'SMS REMCTRL', 'sds-admin': 'SDS Admin', 'ncdmirroring': 'NCD Mirroring', 'emcsymapiport': 'EMCSYMAPIPORT', 'banyan-net': 'Banyan-Net', 'supermon': 'Supermon', 'sso-service': 'SSO Service', 'sso-control': 'SSO Control', 'aocp': 'Axapta Object Communication Protocol', 'raventbs': 'Raven Trinity Broker Service', 'raventdm': 'Raven Trinity Data Mover', 'hpstgmgr2': 'HPSTGMGR2', 'inova-ip-disco': 'Inova IP Disco', 'pn-requester': 'PN REQUESTER', 'pn-requester2': 'PN REQUESTER 2', 'scan-change': 'Scan & Change', 'wkars': 'wkars', 'smart-diagnose': 'Smart Diagnose', 'proactivesrvr': 'Proactive Server', 'watchdog-nt': 'WatchDog NT Protocol', 'qotps': 'qotps', 'msolap-ptp2': 'MSOLAP PTP2', 'tams': 'TAMS', 'mgcp-callagent': 'Media Gateway Control Protocol Call Agent', 'sqdr': 'SQDR', 'tcim-control': 'TCIM Control', 'nec-raidplus': 'NEC RaidPlus', 'fyre-messanger': 'Fyre Messanger', 'g5m': 'G5M', 'signet-ctf': 'Signet CTF', 'ccs-software': 'CCS Software', 'netiq-mc': 'NetIQ Monitor Console', 'radwiz-nms-srv': 'RADWIZ NMS SRV', 'srp-feedback': 'SRP Feedback', 'ndl-tcp-ois-gw': 'NDL TCP-OSI Gateway', 'tn-timing': 'TN Timing', 'alarm': 'Alarm', 'tsb': 'TSB', 'tsb2': 'TSB2', 'murx': 'murx', 'honyaku': 'honyaku', 'urbisnet': 'URBISNET', 'cpudpencap': 'CPUDPENCAP', 'fjippol-swrly': '', 'fjippol-polsvr': '', 'fjippol-cnsl': '', 'fjippol-port1': '', 'fjippol-port2': '', 'rsisysaccess': 'RSISYS ACCESS', 'de-spot': 'de-spot', 'apollo-cc': 'APOLLO CC', 'expresspay': 'Express Pay', 'simplement-tie': 'simplement-tie', 'cnrp': 'CNRP', 'apollo-status': 'APOLLO Status', 'apollo-gms': 'APOLLO GMS', 'sabams': 'Saba MS', 'dicom-iscl': 'DICOM ISCL', 'dicom-tls': 'DICOM TLS', 'desktop-dna': 'Desktop DNA', 'data-insurance': 'Data Insurance', 'qip-audup': 'qip-audup', 'compaq-scp': 'Compaq SCP', 'uadtc': 'UADTC', 'uacs': 'UACS', 'exce': 'eXcE', 'veronica': 'Veronica', 'vergencecm': 'Vergence CM', 'auris': 'auris', 'rbakcup1': 'RBackup Remote Backup', 'rbakcup2': 'RBackup Remote Backup', 'smpp': 'SMPP', 'ridgeway1': 'Ridgeway Systems & Software', 'ridgeway2': 'Ridgeway Systems & Software', 'gwen-sonya': 'Gwen-Sonya', 'lbc-sync': 'LBC Sync', 'lbc-control': 'LBC Control', 'whosells': 'whosells', 'everydayrc': 'everydayrc', 'aises': 'AISES', 'www-dev': 'world wide web - development', 'aic-np': 'aic-np', 'aic-oncrpc': 'aic-oncrpc - Destiny MCD database', 'piccolo': 'piccolo - Cornerstone Software', 'fryeserv': 'NetWare Loadable Module - Seagate Software', 'media-agent': 'Media Agent', 'plgproxy': 'PLG Proxy', 'mtport-regist': 'MT Port Registrator', 'f5-globalsite': 'f5-globalsite', 'initlsmsad': 'initlsmsad', 'livestats': 'LiveStats', 'ac-tech': 'ac-tech', 'esp-encap': 'esp-encap', 'tmesis-upshot': 'TMESIS-UPShot', 'icon-discover': 'ICON Discover', 'acc-raid': 'ACC RAID', 'igcp': 'IGCP', 'veritas-tcp1': 'Veritas TCP1', 'btprjctrl': 'btprjctrl', 'dvr-esm': 'March Networks Digital Video Recorders and Enterprise Service Manager products', 'wta-wsp-s': 'WTA WSP-S', 'cspuni': 'cspuni', 'cspmulti': 'cspmulti', 'j-lan-p': 'J-LAN-P', 'corbaloc': 'CORBA LOC', 'netsteward': 'Active Net Steward', 'gsiftp': 'GSI FTP', 'atmtcp': 'atmtcp', 'llm-pass': 'llm-pass', 'llm-csv': 'llm-csv', 'lbc-measure': 'LBC Measurement', 'lbc-watchdog': 'LBC Watchdog', 'nmsigport': 'NMSig Port', 'rmlnk': 'rmlnk', 'fc-faultnotify': 'FC Fault Notification', 'univision': 'UniVision', 'vrts-at-port': 'VERITAS Authentication Service', 'ka0wuc': 'ka0wuc', 'cqg-netlan': 'CQG Net/LAN', 'cqg-netlan-1': 'CQG Net/LAN 1', 'slc-systemlog': 'slc systemlog', 'slc-ctrlrloops': 'slc ctrlrloops', 'itm-lm': 'ITM License Manager', 'silkp1': 'silkp1', 'silkp2': 'silkp2', 'silkp3': 'silkp3', 'silkp4': 'silkp4', 'glishd': 'glishd', 'evtp': 'EVTP', 'evtp-data': 'EVTP-DATA', 'catalyst': 'catalyst', 'repliweb': 'Repliweb', 'starbot': 'Starbot', 'nmsigport': 'NMSigPort', 'l3-exprt': 'l3-exprt', 'l3-ranger': 'l3-ranger', 'l3-hawk': 'l3-hawk', 'pdnet': 'PDnet', 'bpcp-poll': 'BPCP POLL', 'bpcp-trap': 'BPCP TRAP', 'aimpp-hello': 'AIMPP Hello', 'aimpp-port-req': 'AIMPP Port Req', 'amt-blc-port': 'AMT-BLC-PORT', 'fxp': 'FXP', 'metaconsole': 'MetaConsole', 'webemshttp': 'webemshttp', 'bears-01': 'bears-01', 'ispipes': 'ISPipes', 'infomover': 'InfoMover', 'msrp': 'MSRP over TCP', 'cesdinv': 'cesdinv', 'simctlp': 'SimCtIP', 'ecnp': 'ECNP', 'activememory': 'Active Memory', 'dialpad-voice1': 'Dialpad Voice 1', 'dialpad-voice2': 'Dialpad Voice 2', 'ttg-protocol': 'TTG Protocol', 'sonardata': 'Sonar Data', 'astromed-main': 'main 5001 cmd', 'pit-vpn': 'pit-vpn', 'iwlistener': 'iwlistener', 'esps-portal': 'esps-portal', 'npep-messaging': 'NPEP Messaging', 'icslap': 'ICSLAP', 'daishi': 'daishi', 'msi-selectplay': 'MSI Select Play', 'radix': 'RADIX', 'dxmessagebase1': 'DX Message Base Transport Protocol', 'dxmessagebase2': 'DX Message Base Transport Protocol', 'sps-tunnel': 'SPS Tunnel', 'bluelance': 'BLUELANCE', 'aap': 'AAP', 'ucentric-ds': 'ucentric-ds', 'synapse': 'Synapse Transport', 'ndsp': 'NDSP', 'ndtp': 'NDTP', 'ndnp': 'NDNP', 'flashmsg': 'Flash Msg', 'topflow': 'TopFlow', 'responselogic': 'RESPONSELOGIC', 'aironetddp': 'aironet', 'spcsdlobby': 'SPCSDLOBBY', 'rsom': 'RSOM', 'cspclmulti': 'CSPCLMULTI', 'cinegrfx-elmd': 'CINEGRFX-ELMD License Manager', 'snifferdata': 'SNIFFERDATA', 'vseconnector': 'VSECONNECTOR', 'abacus-remote': 'ABACUS-REMOTE', 'natuslink': 'NATUS LINK', 'ecovisiong6-1': 'ECOVISIONG6-1', 'citrix-rtmp': 'Citrix RTMP', 'appliance-cfg': 'APPLIANCE-CFG', 'powergemplus': 'POWERGEMPLUS', 'quicksuite': 'QUICKSUITE', 'allstorcns': 'ALLSTORCNS', 'netaspi': 'NET ASPI', 'suitcase': 'SUITCASE', 'm2ua': 'M2UA', 'm3ua': 'M3UA', 'caller9': 'CALLER9', 'webmethods-b2b': 'WEBMETHODS B2B', 'mao': 'mao', 'funk-dialout': 'Funk Dialout', 'tdaccess': 'TDAccess', 'blockade': 'Blockade', 'epicon': 'Epicon', 'boosterware': 'Booster Ware', 'gamelobby': 'Game Lobby', 'tksocket': 'TK Socket', 'elvin-server': 'Elvin Server\nIANA assigned this well-formed service name as a replacement for "elvin_server".', 'elvin_server': 'Elvin Server', 'elvin-client': 'Elvin Client\nIANA assigned this well-formed service name as a replacement for "elvin_client".', 'elvin_client': 'Elvin Client', 'kastenchasepad': 'Kasten Chase Pad', 'roboer': 'roboER', 'roboeda': 'roboEDA', 'cesdcdman': 'CESD Contents Delivery Management', 'cesdcdtrn': 'CESD Contents Delivery Data Transfer', 'wta-wsp-wtp-s': 'WTA-WSP-WTP-S', 'precise-vip': 'PRECISE-VIP', 'mobile-file-dl': 'MOBILE-FILE-DL', 'unimobilectrl': 'UNIMOBILECTRL', 'redstone-cpss': 'REDSTONE-CPSS', 'amx-webadmin': 'AMX-WEBADMIN', 'amx-weblinx': 'AMX-WEBLINX', 'circle-x': 'Circle-X', 'incp': 'INCP', '4-tieropmgw': '4-TIER OPM GW', '4-tieropmcli': '4-TIER OPM CLI', 'qtp': 'QTP', 'otpatch': 'OTPatch', 'pnaconsult-lm': 'PNACONSULT-LM', 'sm-pas-1': 'SM-PAS-1', 'sm-pas-2': 'SM-PAS-2', 'sm-pas-3': 'SM-PAS-3', 'sm-pas-4': 'SM-PAS-4', 'sm-pas-5': 'SM-PAS-5', 'ttnrepository': 'TTNRepository', 'megaco-h248': 'Megaco H-248', 'h248-binary': 'H248 Binary', 'fjsvmpor': 'FJSVmpor', 'gpsd': 'GPS Daemon request/response protocol', 'wap-push': 'WAP PUSH', 'wap-pushsecure': 'WAP PUSH SECURE', 'esip': 'ESIP', 'ottp': 'OTTP', 'mpfwsas': 'MPFWSAS', 'ovalarmsrv': 'OVALARMSRV', 'ovalarmsrv-cmd': 'OVALARMSRV-CMD', 'csnotify': 'CSNOTIFY', 'ovrimosdbman': 'OVRIMOSDBMAN', 'jmact5': 'JAMCT5', 'jmact6': 'JAMCT6', 'rmopagt': 'RMOPAGT', 'dfoxserver': 'DFOXSERVER', 'boldsoft-lm': 'BOLDSOFT-LM', 'iph-policy-cli': 'IPH-POLICY-CLI', 'iph-policy-adm': 'IPH-POLICY-ADM', 'bullant-srap': 'BULLANT SRAP', 'bullant-rap': 'BULLANT RAP', 'idp-infotrieve': 'IDP-INFOTRIEVE', 'ssc-agent': 'SSC-AGENT', 'enpp': 'ENPP', 'essp': 'ESSP', 'index-net': 'INDEX-NET', 'netclip': 'NetClip clipboard daemon', 'pmsm-webrctl': 'PMSM Webrctl', 'svnetworks': 'SV Networks', 'signal': 'Signal', 'fjmpcm': 'Fujitsu Configuration Management Service', 'cns-srv-port': 'CNS Server Port', 'ttc-etap-ns': 'TTCs Enterprise Test Access Protocol - NS', 'ttc-etap-ds': 'TTCs Enterprise Test Access Protocol - DS', 'h263-video': 'H.263 Video Streaming', 'wimd': 'Instant Messaging Service', 'mylxamport': 'MYLXAMPORT', 'iwb-whiteboard': 'IWB-WHITEBOARD', 'netplan': 'NETPLAN', 'hpidsadmin': 'HPIDSADMIN', 'hpidsagent': 'HPIDSAGENT', 'stonefalls': 'STONEFALLS', 'identify': 'identify', 'hippad': 'HIPPA Reporting Protocol', 'zarkov': 'ZARKOV Intelligent Agent Communication', 'boscap': 'BOSCAP', 'wkstn-mon': 'WKSTN-MON', 'avenyo': 'Avenyo Server', 'veritas-vis1': 'VERITAS VIS1', 'veritas-vis2': 'VERITAS VIS2', 'idrs': 'IDRS', 'vsixml': 'vsixml', 'rebol': 'REBOL', 'realsecure': 'Real Secure', 'remoteware-un': 'RemoteWare Unassigned', 'hbci': 'HBCI', 'remoteware-cl': 'RemoteWare Client', 'exlm-agent': 'EXLM Agent', 'remoteware-srv': 'RemoteWare Server', 'cgms': 'CGMS', 'csoftragent': 'Csoft Agent', 'geniuslm': 'Genius License Manager', 'ii-admin': 'Instant Internet Admin', 'lotusmtap': 'Lotus Mail Tracking Agent Protocol', 'midnight-tech': 'Midnight Technologies', 'pxc-ntfy': 'PXC-NTFY', 'gw': 'Telerate Workstation', 'trusted-web': 'Trusted Web', 'twsdss': 'Trusted Web Client', 'gilatskysurfer': 'Gilat Sky Surfer', 'broker-service': 'Broker Service\nIANA assigned this well-formed service name as a replacement for "broker_service".', 'broker_service': 'Broker Service', 'nati-dstp': 'NATI DSTP', 'notify-srvr': 'Notify Server\nIANA assigned this well-formed service name as a replacement for "notify_srvr".', 'notify_srvr': 'Notify Server', 'event-listener': 'Event Listener\nIANA assigned this well-formed service name as a replacement for "event_listener".', 'event_listener': 'Event Listener', 'srvc-registry': 'Service Registry\nIANA assigned this well-formed service name as a replacement for "srvc_registry".', 'srvc_registry': 'Service Registry', 'resource-mgr': 'Resource Manager\nIANA assigned this well-formed service name as a replacement for "resource_mgr".', 'resource_mgr': 'Resource Manager', 'cifs': 'CIFS', 'agriserver': 'AGRI Server', 'csregagent': 'CSREGAGENT', 'magicnotes': 'magicnotes', 'nds-sso': 'NDS_SSO\nIANA assigned this well-formed service name as a replacement for "nds_sso".', 'nds_sso': 'NDS_SSO', 'arepa-raft': 'Arepa Raft', 'agri-gateway': 'AGRI Gateway', 'LiebDevMgmt-C': 'LiebDevMgmt_C\nIANA assigned this well-formed service name as a replacement for "LiebDevMgmt_C".', 'LiebDevMgmt_C': 'LiebDevMgmt_C', 'LiebDevMgmt-DM': 'LiebDevMgmt_DM\nIANA assigned this well-formed service name as a replacement for "LiebDevMgmt_DM".', 'LiebDevMgmt_DM': 'LiebDevMgmt_DM', 'LiebDevMgmt-A': 'LiebDevMgmt_A\nIANA assigned this well-formed service name as a replacement for "LiebDevMgmt_A".', 'LiebDevMgmt_A': 'LiebDevMgmt_A', 'arepa-cas': 'Arepa Cas', 'eppc': 'Remote AppleEvents/PPC Toolbox', 'redwood-chat': 'Redwood Chat', 'pdb': 'PDB', 'osmosis-aeea': 'Osmosis / Helix (R) AEEA Port', 'fjsv-gssagt': 'FJSV gssagt', 'hagel-dump': 'Hagel DUMP', 'hp-san-mgmt': 'HP SAN Mgmt', 'santak-ups': 'Santak UPS', 'cogitate': 'Cogitate, Inc.', 'tomato-springs': 'Tomato Springs', 'di-traceware': 'di-traceware', 'journee': 'journee', 'brp': 'Broadcast Routing Protocol', 'epp': 'EndPoint Protocol', 'responsenet': 'ResponseNet', 'di-ase': 'di-ase', 'hlserver': 'Fast Security HL Server', 'pctrader': 'Sierra Net PC Trader', 'nsws': 'NSWS', 'gds-db': 'gds_db\nIANA assigned this well-formed service name as a replacement for "gds_db".', 'gds_db': 'gds_db', 'galaxy-server': 'Galaxy Server', 'apc-3052': 'APC 3052', 'dsom-server': 'dsom-server', 'amt-cnf-prot': 'AMT CNF PROT', 'policyserver': 'Policy Server', 'cdl-server': 'CDL Server', 'goahead-fldup': 'GoAhead FldUp', 'videobeans': 'videobeans', 'qsoft': 'qsoft', 'interserver': 'interserver', 'cautcpd': 'cautcpd', 'ncacn-ip-tcp': 'ncacn-ip-tcp', 'ncadg-ip-udp': 'ncadg-ip-udp', 'rprt': 'Remote Port Redirector', 'slinterbase': 'slinterbase', 'netattachsdmp': 'NETATTACHSDMP', 'fjhpjp': 'FJHPJP', 'ls3bcast': 'ls3 Broadcast', 'ls3': 'ls3', 'mgxswitch': 'MGXSWITCH', 'csd-mgmt-port': 'ContinuStor Manager Port', 'csd-monitor': 'ContinuStor Monitor Port', 'vcrp': 'Very simple chatroom prot', 'xbox': 'Xbox game port', 'orbix-locator': 'Orbix 2000 Locator', 'orbix-config': 'Orbix 2000 Config', 'orbix-loc-ssl': 'Orbix 2000 Locator SSL', 'orbix-cfg-ssl': 'Orbix 2000 Locator SSL', 'lv-frontpanel': 'LV Front Panel', 'stm-pproc': 'stm_pproc\nIANA assigned this well-formed service name as a replacement for "stm_pproc".', 'stm_pproc': 'stm_pproc', 'tl1-lv': 'TL1-LV', 'tl1-raw': 'TL1-RAW', 'tl1-telnet': 'TL1-TELNET', 'itm-mccs': 'ITM-MCCS', 'pcihreq': 'PCIHReq', 'jdl-dbkitchen': 'JDL-DBKitchen', 'asoki-sma': 'Asoki SMA', 'xdtp': 'eXtensible Data Transfer Protocol', 'ptk-alink': 'ParaTek Agent Linking', 'stss': 'Senforce Session Services', '1ci-smcs': '1Ci Server Management', 'rapidmq-center': 'Jiiva RapidMQ Center', 'rapidmq-reg': 'Jiiva RapidMQ Registry', 'panasas': 'Panasas rendevous port', 'ndl-aps': 'Active Print Server Port', 'umm-port': 'Universal Message Manager', 'chmd': 'CHIPSY Machine Daemon', 'opcon-xps': 'OpCon/xps', 'hp-pxpib': 'HP PolicyXpert PIB Server', 'slslavemon': 'SoftlinK Slave Mon Port', 'autocuesmi': 'Autocue SMI Protocol', 'autocuelog': 'Autocue Logger Protocol', 'cardbox': 'Cardbox', 'cardbox-http': 'Cardbox HTTP', 'business': 'Business protocol', 'geolocate': 'Geolocate protocol', 'personnel': 'Personnel protocol', 'sim-control': 'simulator control port', 'wsynch': 'Web Synchronous Services', 'ksysguard': 'KDE System Guard', 'cs-auth-svr': 'CS-Authenticate Svr Port', 'ccmad': 'CCM AutoDiscover', 'mctet-master': 'MCTET Master', 'mctet-gateway': 'MCTET Gateway', 'mctet-jserv': 'MCTET Jserv', 'pkagent': 'PKAgent', 'd2000kernel': 'D2000 Kernel Port', 'd2000webserver': 'D2000 Webserver Port', 'vtr-emulator': 'MTI VTR Emulator port', 'edix': 'EDI Translation Protocol', 'beacon-port': 'Beacon Port', 'a13-an': 'A13-AN Interface', 'ctx-bridge': 'CTX Bridge Port', 'ndl-aas': 'Active API Server Port', 'netport-id': 'NetPort Discovery Port', 'icpv2': 'ICPv2', 'netbookmark': 'Net Book Mark', 'ms-rule-engine': 'Microsoft Business Rule Engine Update Service', 'prism-deploy': 'Prism Deploy User Port', 'ecp': 'Extensible Code Protocol', 'peerbook-port': 'PeerBook Port', 'grubd': 'Grub Server Port', 'rtnt-1': 'rtnt-1 data packets', 'rtnt-2': 'rtnt-2 data packets', 'incognitorv': 'Incognito Rendez-Vous', 'ariliamulti': 'Arilia Multiplexor', 'vmodem': 'VMODEM', 'rdc-wh-eos': 'RDC WH EOS', 'seaview': 'Sea View', 'tarantella': 'Tarantella', 'csi-lfap': 'CSI-LFAP', 'bears-02': 'bears-02', 'rfio': 'RFIO', 'nm-game-admin': 'NetMike Game Administrator', 'nm-game-server': 'NetMike Game Server', 'nm-asses-admin': 'NetMike Assessor Administrator', 'nm-assessor': 'NetMike Assessor', 'feitianrockey': 'FeiTian Port', 's8-client-port': 'S8Cargo Client Port', 'ccmrmi': 'ON RMI Registry', 'jpegmpeg': 'JpegMpeg Port', 'indura': 'Indura Collector', 'e3consultants': 'CCC Listener Port', 'stvp': 'SmashTV Protocol', 'navegaweb-port': 'NavegaWeb Tarification', 'tip-app-server': 'TIP Application Server', 'doc1lm': 'DOC1 License Manager', 'sflm': 'SFLM', 'res-sap': 'RES-SAP', 'imprs': 'IMPRS', 'newgenpay': 'Newgenpay Engine Service', 'sossecollector': 'Quest Spotlight Out-Of-Process Collector', 'nowcontact': 'Now Contact Public Server', 'poweronnud': 'Now Up-to-Date Public Server', 'serverview-as': 'SERVERVIEW-AS', 'serverview-asn': 'SERVERVIEW-ASN', 'serverview-gf': 'SERVERVIEW-GF', 'serverview-rm': 'SERVERVIEW-RM', 'serverview-icc': 'SERVERVIEW-ICC', 'armi-server': 'ARMI Server', 't1-e1-over-ip': 'T1_E1_Over_IP', 'ars-master': 'ARS Master', 'phonex-port': 'Phonex Protocol', 'radclientport': 'Radiance UltraEdge Port', 'h2gf-w-2m': 'H2GF W.2m Handover prot.', 'mc-brk-srv': 'Millicent Broker Server', 'bmcpatrolagent': 'BMC Patrol Agent', 'bmcpatrolrnvu': 'BMC Patrol Rendezvous', 'cops-tls': 'COPS/TLS', 'apogeex-port': 'ApogeeX Port', 'smpppd': 'SuSE Meta PPPD', 'iiw-port': 'IIW Monitor User Port', 'odi-port': 'Open Design Listen Port', 'brcm-comm-port': 'Broadcom Port', 'pcle-infex': 'Pinnacle Sys InfEx Port', 'csvr-proxy': 'ConServR Proxy', 'csvr-sslproxy': 'ConServR SSL Proxy', 'firemonrcc': 'FireMon Revision Control', 'spandataport': 'SpanDataPort', 'magbind': 'Rockstorm MAG protocol', 'ncu-1': 'Network Control Unit', 'ncu-2': 'Network Control Unit', 'embrace-dp-s': 'Embrace Device Protocol Server', 'embrace-dp-c': 'Embrace Device Protocol Client', 'dmod-workspace': 'DMOD WorkSpace', 'tick-port': 'Press-sense Tick Port', 'cpq-tasksmart': 'CPQ-TaskSmart', 'intraintra': 'IntraIntra', 'netwatcher-mon': 'Network Watcher Monitor', 'netwatcher-db': 'Network Watcher DB Access', 'isns': 'iSNS Server Port', 'ironmail': 'IronMail POP Proxy', 'vx-auth-port': 'Veritas Authentication Port', 'pfu-prcallback': 'PFU PR Callback', 'netwkpathengine': 'HP OpenView Network Path Engine Server', 'flamenco-proxy': 'Flamenco Networks Proxy', 'avsecuremgmt': 'Avocent Secure Management', 'surveyinst': 'Survey Instrument', 'neon24x7': 'NEON 24X7 Mission Control', 'jmq-daemon-1': 'JMQ Daemon Port 1', 'jmq-daemon-2': 'JMQ Daemon Port 2', 'ferrari-foam': 'Ferrari electronic FOAM', 'unite': 'Unified IP & Telecom Environment', 'smartpackets': 'EMC SmartPackets', 'wms-messenger': 'WMS Messenger', 'xnm-ssl': 'XML NM over SSL', 'xnm-clear-text': 'XML NM over TCP', 'glbp': 'Gateway Load Balancing Pr', 'digivote': 'DIGIVOTE (R) Vote-Server', 'aes-discovery': 'AES Discovery Port', 'fcip-port': 'FCIP', 'isi-irp': 'ISI Industry Software IRP', 'dwnmshttp': 'DiamondWave NMS Server', 'dwmsgserver': 'DiamondWave MSG Server', 'global-cd-port': 'Global CD Port', 'sftdst-port': 'Software Distributor Port', 'vidigo': 'VidiGo communication (previous was: Delta Solutions Direct)', 'mdtp': 'MDT port', 'whisker': 'WhiskerControl main port', 'alchemy': 'Alchemy Server', 'mdap-port': 'MDAP port', 'apparenet-ts': 'appareNet Test Server', 'apparenet-tps': 'appareNet Test Packet Sequencer', 'apparenet-as': 'appareNet Analysis Server', 'apparenet-ui': 'appareNet User Interface', 'triomotion': 'Trio Motion Control Port', 'sysorb': 'SysOrb Monitoring Server', 'sdp-id-port': 'Session Description ID', 'timelot': 'Timelot Port', 'onesaf': 'OneSAF', 'vieo-fe': 'VIEO Fabric Executive', 'dvt-system': 'DVT SYSTEM PORT', 'dvt-data': 'DVT DATA LINK', 'procos-lm': 'PROCOS LM', 'ssp': 'State Sync Protocol', 'hicp': 'HMS hicp port', 'sysscanner': 'Sys Scanner', 'dhe': 'DHE port', 'pda-data': 'PDA Data', 'pda-sys': 'PDA System', 'semaphore': 'Semaphore Connection Port', 'cpqrpm-agent': 'Compaq RPM Agent Port', 'cpqrpm-server': 'Compaq RPM Server Port', 'ivecon-port': 'Ivecon Server Port', 'epncdp2': 'Epson Network Common Devi', 'iscsi-target': 'iSCSI port', 'winshadow': 'winShadow', 'necp': 'NECP', 'ecolor-imager': 'E-Color Enterprise Imager', 'ccmail': 'cc:mail/lotus', 'altav-tunnel': 'Altav Tunnel', 'ns-cfg-server': 'NS CFG Server', 'ibm-dial-out': 'IBM Dial Out', 'msft-gc': 'Microsoft Global Catalog', 'msft-gc-ssl': 'Microsoft Global Catalog with LDAP/SSL', 'verismart': 'Verismart', 'csoft-prev': 'CSoft Prev Port', 'user-manager': 'Fujitsu User Manager', 'sxmp': 'Simple Extensible Multiplexed Protocol', 'ordinox-server': 'Ordinox Server', 'samd': 'SAMD', 'maxim-asics': 'Maxim ASICs', 'awg-proxy': 'AWG Proxy', 'lkcmserver': 'LKCM Server', 'admind': 'admind', 'vs-server': 'VS Server', 'sysopt': 'SYSOPT', 'datusorb': 'Datusorb', 'Apple Remote Desktop (Net Assistant)': 'Net Assistant', '4talk': '4Talk', 'plato': 'Plato', 'e-net': 'E-Net', 'directvdata': 'DIRECTVDATA', 'cops': 'COPS', 'enpc': 'ENPC', 'caps-lm': 'CAPS LOGISTICS TOOLKIT - LM', 'sah-lm': 'S A Holditch & Associates - LM', 'cart-o-rama': 'Cart O Rama', 'fg-fps': 'fg-fps', 'fg-gip': 'fg-gip', 'dyniplookup': 'Dynamic IP Lookup', 'rib-slm': 'Rib License Manager', 'cytel-lm': 'Cytel License Manager', 'deskview': 'DeskView', 'pdrncs': 'pdrncs', 'mcs-fastmail': 'MCS Fastmail', 'opsession-clnt': 'OP Session Client', 'opsession-srvr': 'OP Session Server', 'odette-ftp': 'ODETTE-FTP', 'mysql': 'MySQL', 'opsession-prxy': 'OP Session Proxy', 'tns-server': 'TNS Server', 'tns-adv': 'TNS ADV', 'dyna-access': 'Dyna Access', 'mcns-tel-ret': 'MCNS Tel Ret', 'appman-server': 'Application Management Server', 'uorb': 'Unify Object Broker', 'uohost': 'Unify Object Host', 'cdid': 'CDID', 'aicc-cmi': 'AICC/CMI', 'vsaiport': 'VSAI PORT', 'ssrip': 'Swith to Swith Routing Information Protocol', 'sdt-lmd': 'SDT License Manager', 'officelink2000': 'Office Link 2000', 'vnsstr': 'VNSSTR', 'sftu': 'SFTU', 'bbars': 'BBARS', 'egptlm': 'Eaglepoint License Manager', 'hp-device-disc': 'HP Device Disc', 'mcs-calypsoicf': 'MCS Calypso ICF', 'mcs-messaging': 'MCS Messaging', 'mcs-mailsvr': 'MCS Mail Server', 'dec-notes': 'DEC Notes', 'directv-web': 'Direct TV Webcasting', 'directv-soft': 'Direct TV Software Updates', 'directv-tick': 'Direct TV Tickers', 'directv-catlg': 'Direct TV Data Catalog', 'anet-b': 'OMF data b', 'anet-l': 'OMF data l', 'anet-m': 'OMF data m', 'anet-h': 'OMF data h', 'webtie': 'WebTIE', 'ms-cluster-net': 'MS Cluster Net', 'bnt-manager': 'BNT Manager', 'influence': 'Influence', 'trnsprntproxy': 'Trnsprnt Proxy', 'phoenix-rpc': 'Phoenix RPC', 'pangolin-laser': 'Pangolin Laser', 'chevinservices': 'Chevin Services', 'findviatv': 'FINDVIATV', 'btrieve': 'Btrieve port', 'ssql': 'Scalable SQL', 'fatpipe': 'FATPIPE', 'suitjd': 'SUITJD', 'ordinox-dbase': 'Ordinox Dbase', 'upnotifyps': 'UPNOTIFYPS', 'adtech-test': 'Adtech Test IP', 'mpsysrmsvr': 'Mp Sys Rmsvr', 'wg-netforce': 'WG NetForce', 'kv-server': 'KV Server', 'kv-agent': 'KV Agent', 'dj-ilm': 'DJ ILM', 'nati-vi-server': 'NATI Vi Server', 'creativeserver': 'Creative Server', 'contentserver': 'Content Server', 'creativepartnr': 'Creative Partner', 'tip2': 'TIP 2', 'lavenir-lm': 'Lavenir License Manager', 'cluster-disc': 'Cluster Disc', 'vsnm-agent': 'VSNM Agent', 'cdbroker': 'CD Broker', 'cogsys-lm': 'Cogsys Network License Manager', 'wsicopy': 'WSICOPY', 'socorfs': 'SOCORFS', 'sns-channels': 'SNS Channels', 'geneous': 'Geneous', 'fujitsu-neat': 'Fujitsu Network Enhanced Antitheft function', 'esp-lm': 'Enterprise Software Products License Manager', 'hp-clic': 'Cluster Management Services', 'qnxnetman': 'qnxnetman', 'gprs-data': 'GPRS Data', 'backroomnet': 'Back Room Net', 'cbserver': 'CB Server', 'ms-wbt-server': 'MS WBT Server', 'dsc': 'Distributed Service Coordinator', 'savant': 'SAVANT', 'efi-lm': 'EFI License Management', 'd2k-tapestry1': 'D2K Tapestry Client to Server', 'd2k-tapestry2': 'D2K Tapestry Server to Server', 'dyna-lm': 'Dyna License Manager (Elam)', 'printer-agent': 'Printer Agent\nIANA assigned this well-formed service name as a replacement for "printer_agent".', 'printer_agent': 'Printer Agent', 'cloanto-lm': 'Cloanto License Manager', 'mercantile': 'Mercantile', 'csms': 'CSMS', 'csms2': 'CSMS2', 'filecast': 'filecast', 'fxaengine-net': 'FXa Engine Network Port', 'nokia-ann-ch1': 'Nokia Announcement ch 1', 'nokia-ann-ch2': 'Nokia Announcement ch 2', 'ldap-admin': 'LDAP admin server port', 'BESApi': 'BES Api Port', 'networklens': 'NetworkLens Event Port', 'networklenss': 'NetworkLens SSL Event', 'biolink-auth': 'BioLink Authenteon server', 'xmlblaster': 'xmlBlaster', 'svnet': 'SpecView Networking', 'wip-port': 'BroadCloud WIP Port', 'bcinameservice': 'BCI Name Service', 'commandport': 'AirMobile IS Command Port', 'csvr': 'ConServR file translation', 'rnmap': 'Remote nmap', 'softaudit': 'Isogon SoftAudit', 'ifcp-port': 'iFCP User Port', 'bmap': 'Bull Apprise portmapper', 'rusb-sys-port': 'Remote USB System Port', 'xtrm': 'xTrade Reliable Messaging', 'xtrms': 'xTrade over TLS/SSL', 'agps-port': 'AGPS Access Port', 'arkivio': 'Arkivio Storage Protocol', 'websphere-snmp': 'WebSphere SNMP', 'twcss': '2Wire CSS', 'gcsp': 'GCSP user port', 'ssdispatch': 'Scott Studios Dispatch', 'ndl-als': 'Active License Server Port', 'osdcp': 'Secure Device Protocol', 'opnet-smp': 'OPNET Service Management Platform', 'opencm': 'OpenCM Server', 'pacom': 'Pacom Security User Port', 'gc-config': 'GuardControl Exchange Protocol', 'autocueds': 'Autocue Directory Service', 'spiral-admin': 'Spiralcraft Admin', 'hri-port': 'HRI Interface Port', 'ans-console': 'Net Steward Mgmt Console', 'connect-client': 'OC Connect Client', 'connect-server': 'OC Connect Server', 'ov-nnm-websrv': 'OpenView Network Node Manager WEB Server', 'denali-server': 'Denali Server', 'monp': 'Media Object Network', '3comfaxrpc': '3Com FAX RPC port', 'directnet': 'DirectNet IM System', 'dnc-port': 'Discovery and Net Config', 'hotu-chat': 'HotU Chat', 'castorproxy': 'CAStorProxy', 'asam': 'ASAM Services', 'sabp-signal': 'SABP-Signalling Protocol', 'pscupd': 'PSC Update Port', 'mira': 'Apple Remote Access Protocol', 'prsvp': 'RSVP Port', 'vat': 'VAT default data', 'vat-control': 'VAT default control', 'd3winosfi': 'D3WinOSFI', 'integral': 'TIP Integral', 'edm-manager': 'EDM Manger', 'edm-stager': 'EDM Stager', 'edm-std-notify': 'EDM STD Notify', 'edm-adm-notify': 'EDM ADM Notify', 'edm-mgr-sync': 'EDM MGR Sync', 'edm-mgr-cntrl': 'EDM MGR Cntrl', 'workflow': 'WORKFLOW', 'rcst': 'RCST', 'ttcmremotectrl': 'TTCM Remote Controll', 'pluribus': 'Pluribus', 'jt400': 'jt400', 'jt400-ssl': 'jt400-ssl', 'jaugsremotec-1': 'JAUGS N-G Remotec 1', 'jaugsremotec-2': 'JAUGS N-G Remotec 2', 'ttntspauto': 'TSP Automation', 'genisar-port': 'Genisar Comm Port', 'nppmp': 'NVIDIA Mgmt Protocol', 'ecomm': 'eComm link port', 'stun': 'Session Traversal Utilities for NAT (STUN) port', 'turn': 'TURN over TCP', 'stun-behavior': 'STUN Behavior Discovery over TCP', 'twrpc': '2Wire RPC', 'plethora': 'Secure Virtual Workspace', 'cleanerliverc': 'CleanerLive remote ctrl', 'vulture': 'Vulture Monitoring System', 'slim-devices': 'Slim Devices Protocol', 'gbs-stp': 'GBS SnapTalk Protocol', 'celatalk': 'CelaTalk', 'ifsf-hb-port': 'IFSF Heartbeat Port', 'ltctcp': 'LISA TCP Transfer Channel', 'fs-rh-srv': 'FS Remote Host Server', 'dtp-dia': 'DTP/DIA', 'colubris': 'Colubris Management Port', 'swr-port': 'SWR Port', 'tvdumtray-port': 'TVDUM Tray Port', 'nut': 'Network UPS Tools', 'ibm3494': 'IBM 3494', 'seclayer-tcp': 'securitylayer over tcp', 'seclayer-tls': 'securitylayer over tls', 'ipether232port': 'ipEther232Port', 'dashpas-port': 'DASHPAS user port', 'sccip-media': 'SccIP Media', 'rtmp-port': 'RTMP Port', 'isoft-p2p': 'iSoft-P2P', 'avinstalldisc': 'Avocent Install Discovery', 'lsp-ping': 'MPLS LSP-echo Port', 'ironstorm': 'IronStorm game server', 'ccmcomm': 'CCM communications port', 'apc-3506': 'APC 3506', 'nesh-broker': 'Nesh Broker Port', 'interactionweb': 'Interaction Web', 'vt-ssl': 'Virtual Token SSL Port', 'xss-port': 'XSS Port', 'webmail-2': 'WebMail/2', 'aztec': 'Aztec Distribution Port', 'arcpd': 'Adaptec Remote Protocol', 'must-p2p': 'MUST Peer to Peer', 'must-backplane': 'MUST Backplane', 'smartcard-port': 'Smartcard Port', '802-11-iapp': 'IEEE 802.11 WLANs WG IAPP', 'artifact-msg': 'Artifact Message Server', 'nvmsgd': 'Netvion Messenger Port', 'galileolog': 'Netvion Galileo Log Port', 'mc3ss': 'Telequip Labs MC3SS', 'nfs-domainroot': "NFS service for the domain root, the root of an organization's published file namespace.", 'nssocketport': 'DO over NSSocketPort', 'odeumservlink': 'Odeum Serverlink', 'ecmport': 'ECM Server port', 'eisport': 'EIS Server port', 'starquiz-port': 'starQuiz Port', 'beserver-msg-q': 'VERITAS Backup Exec Server', 'jboss-iiop': 'JBoss IIOP', 'jboss-iiop-ssl': 'JBoss IIOP/SSL', 'gf': 'Grid Friendly', 'joltid': 'Joltid', 'raven-rmp': 'Raven Remote Management Control', 'raven-rdp': 'Raven Remote Management Data', 'urld-port': 'URL Daemon Port', 'ms-la': 'MS-LA', 'snac': 'SNAC', 'ni-visa-remote': 'Remote NI-VISA port', 'ibm-diradm': 'IBM Directory Server', 'ibm-diradm-ssl': 'IBM Directory Server SSL', 'pnrp-port': 'PNRP User Port', 'voispeed-port': 'VoiSpeed Port', 'hacl-monitor': 'HA cluster monitor', 'qftest-lookup': 'qftest Lookup Port', 'teredo': 'Teredo Port', 'camac': 'CAMAC equipment', 'symantec-sim': 'Symantec SIM', 'interworld': 'Interworld', 'tellumat-nms': 'Tellumat MDR NMS', 'ssmpp': 'Secure SMPP', 'apcupsd': 'Apcupsd Information Port', 'taserver': 'TeamAgenda Server Port', 'rbr-discovery': 'Red Box Recorder ADP', 'questnotify': 'Quest Notification Server', 'razor': "Vipul's Razor", 'sky-transport': 'Sky Transport Protocol', 'personalos-001': 'PersonalOS Comm Port', 'mcp-port': 'MCP user port', 'cctv-port': 'CCTV control port', 'iniserve-port': 'INIServe port', 'bmc-onekey': 'BMC-OneKey', 'sdbproxy': 'SDBProxy', 'watcomdebug': 'Watcom Debug', 'esimport': 'Electromed SIM port', 'm2pa': 'M2PA', 'quest-data-hub': 'Quest Data Hub', 'oap': 'Object Access Protocol', 'oap-s': 'Object Access Protocol over SSL', 'mbg-ctrl': 'Meinberg Control Service', 'mccwebsvr-port': 'MCC Web Server Port', 'megardsvr-port': 'MegaRAID Server Port', 'megaregsvrport': 'Registration Server Port', 'tag-ups-1': 'Advantage Group UPS Suite', 'dmaf-server': 'DMAF Server', 'ccm-port': 'Coalsere CCM Port', 'cmc-port': 'Coalsere CMC Port', 'config-port': 'Configuration Port', 'data-port': 'Data Port', 'ttat3lb': 'Tarantella Load Balancing', 'nati-svrloc': 'NATI-ServiceLocator', 'kfxaclicensing': 'Ascent Capture Licensing', 'press': 'PEG PRESS Server', 'canex-watch': 'CANEX Watch System', 'u-dbap': 'U-DBase Access Protocol', 'emprise-lls': 'Emprise License Server', 'emprise-lsc': 'License Server Console', 'p2pgroup': 'Peer to Peer Grouping', 'sentinel': 'Sentinel Server', 'isomair': 'isomair', 'wv-csp-sms': 'WV CSP SMS Binding', 'gtrack-server': 'LOCANIS G-TRACK Server', 'gtrack-ne': 'LOCANIS G-TRACK NE Port', 'bpmd': 'BP Model Debugger', 'mediaspace': 'MediaSpace', 'shareapp': 'ShareApp', 'iw-mmogame': 'Illusion Wireless MMOG', 'a14': 'A14 (AN-to-SC/MM)', 'a15': 'A15 (AN-to-AN)', 'quasar-server': 'Quasar Accounting Server', 'trap-daemon': 'text relay-answer', 'visinet-gui': 'Visinet Gui', 'infiniswitchcl': 'InfiniSwitch Mgr Client', 'int-rcv-cntrl': 'Integrated Rcvr Control', 'bmc-jmx-port': 'BMC JMX Port', 'comcam-io': 'ComCam IO Port', 'splitlock': 'Splitlock Server', 'precise-i3': 'Precise I3', 'trendchip-dcp': 'Trendchip control protocol', 'cpdi-pidas-cm': 'CPDI PIDAS Connection Mon', 'echonet': 'ECHONET', 'six-degrees': 'Six Degrees Port', 'hp-dataprotect': 'HP Data Protector', 'alaris-disc': 'Alaris Device Discovery', 'sigma-port': 'Satchwell Sigma', 'start-network': 'Start Messaging Network', 'cd3o-protocol': 'cd3o Control Protocol', 'sharp-server': 'ATI SHARP Logic Engine', 'aairnet-1': 'AAIR-Network 1', 'aairnet-2': 'AAIR-Network 2', 'ep-pcp': 'EPSON Projector Control Port', 'ep-nsp': 'EPSON Network Screen Port', 'ff-lr-port': 'FF LAN Redundancy Port', 'haipe-discover': 'HAIPIS Dynamic Discovery', 'dist-upgrade': 'Distributed Upgrade Port', 'volley': 'Volley', 'bvcdaemon-port': 'bvControl Daemon', 'jamserverport': 'Jam Server Port', 'ept-machine': 'EPT Machine Interface', 'escvpnet': 'ESC/VP.net', 'cs-remote-db': 'C&S Remote Database Port', 'cs-services': 'C&S Web Services Port', 'distcc': 'distributed compiler', 'wacp': 'Wyrnix AIS port', 'hlibmgr': 'hNTSP Library Manager', 'sdo': 'Simple Distributed Objects', 'servistaitsm': 'SerVistaITSM', 'scservp': 'Customer Service Port', 'ehp-backup': 'EHP Backup Protocol', 'xap-ha': 'Extensible Automation', 'netplay-port1': 'Netplay Port 1', 'netplay-port2': 'Netplay Port 2', 'juxml-port': 'Juxml Replication port', 'audiojuggler': 'AudioJuggler', 'ssowatch': 'ssowatch', 'cyc': 'Cyc', 'xss-srv-port': 'XSS Server Port', 'splitlock-gw': 'Splitlock Gateway', 'fjcp': 'Fujitsu Cooperation Port', 'nmmp': 'Nishioka Miyuki Msg Protocol', 'prismiq-plugin': 'PRISMIQ VOD plug-in', 'xrpc-registry': 'XRPC Registry', 'vxcrnbuport': 'VxCR NBU Default Port', 'tsp': 'Tunnel Setup Protocol', 'vaprtm': 'VAP RealTime Messenger', 'abatemgr': 'ActiveBatch Exec Agent', 'abatjss': 'ActiveBatch Job Scheduler', 'immedianet-bcn': 'ImmediaNet Beacon', 'ps-ams': 'PlayStation AMS (Secure)', 'apple-sasl': 'Apple SASL', 'can-nds-ssl': 'IBM Tivoli Directory Service using SSL', 'can-ferret-ssl': 'IBM Tivoli Directory Service using SSL', 'pserver': 'pserver', 'dtp': 'DIRECWAY Tunnel Protocol', 'ups-engine': 'UPS Engine Port', 'ent-engine': 'Enterprise Engine Port', 'eserver-pap': 'IBM eServer PAP', 'infoexch': 'IBM Information Exchange', 'dell-rm-port': 'Dell Remote Management', 'casanswmgmt': 'CA SAN Switch Management', 'smile': 'SMILE TCP/UDP Interface', 'efcp': 'e Field Control (EIBnet)', 'lispworks-orb': 'LispWorks ORB', 'mediavault-gui': 'Openview Media Vault GUI', 'wininstall-ipc': 'WinINSTALL IPC Port', 'calltrax': 'CallTrax Data Port', 'va-pacbase': 'VisualAge Pacbase server', 'roverlog': 'RoverLog IPC', 'ipr-dglt': 'DataGuardianLT', 'Escale (Newton Dock)': 'Newton Dock', 'npds-tracker': 'NPDS Tracker', 'bts-x73': 'BTS X73 Port', 'cas-mapi': 'EMC SmartPackets-MAPI', 'bmc-ea': 'BMC EDV/EA', 'faxstfx-port': 'FAXstfX', 'dsx-agent': 'DS Expert Agent', 'tnmpv2': 'Trivial Network Management', 'simple-push': 'simple-push', 'simple-push-s': 'simple-push Secure', 'daap': 'Digital Audio Access Protocol (iTunes)', 'svn': 'Subversion', 'magaya-network': 'Magaya Network Port', 'intelsync': 'Brimstone IntelSync', 'bmc-data-coll': 'BMC Data Collection', 'telnetcpcd': 'Telnet Com Port Control', 'nw-license': 'NavisWorks License System', 'sagectlpanel': 'SAGECTLPANEL', 'kpn-icw': 'Internet Call Waiting', 'lrs-paging': 'LRS NetPage', 'netcelera': 'NetCelera', 'ws-discovery': 'Web Service Discovery', 'adobeserver-3': 'Adobe Server 3', 'adobeserver-4': 'Adobe Server 4', 'adobeserver-5': 'Adobe Server 5', 'rt-event': 'Real-Time Event Port', 'rt-event-s': 'Real-Time Event Secure Port', 'sun-as-iiops': 'Sun App Svr - Naming', 'ca-idms': 'CA-IDMS Server', 'portgate-auth': 'PortGate Authentication', 'edb-server2': 'EBD Server 2', 'sentinel-ent': 'Sentinel Enterprise', 'tftps': 'TFTP over TLS', 'delos-dms': 'DELOS Direct Messaging', 'anoto-rendezv': 'Anoto Rendezvous Port', 'wv-csp-sms-cir': 'WV CSP SMS CIR Channel', 'wv-csp-udp-cir': 'WV CSP UDP/IP CIR Channel', 'opus-services': 'OPUS Server Port', 'itelserverport': 'iTel Server Port', 'ufastro-instr': 'UF Astro. Instr. Services', 'xsync': 'Xsync', 'xserveraid': 'Xserve RAID', 'sychrond': 'Sychron Service Daemon', 'blizwow': 'World of Warcraft', 'na-er-tip': 'Netia NA-ER Port', 'array-manager': 'Xyratex Array Manager', 'e-mdu': 'Ericsson Mobile Data Unit', 'e-woa': 'Ericsson Web on Air', 'fksp-audit': 'Fireking Audit Port', 'client-ctrl': 'Client Control', 'smap': 'Service Manager', 'm-wnn': 'Mobile Wnn', 'multip-msg': 'Multipuesto Msg Port', 'synel-data': 'Synel Data Collection Port', 'pwdis': 'Password Distribution', 'rs-rmi': 'RealSpace RMI', 'xpanel': 'XPanel Daemon', 'versatalk': 'versaTalk Server Port', 'launchbird-lm': 'Launchbird LicenseManager', 'heartbeat': 'Heartbeat Protocol', 'wysdma': 'WysDM Agent', 'cst-port': 'CST - Configuration & Service Tracker', 'ipcs-command': 'IP Control Systems Ltd.', 'sasg': 'SASG', 'gw-call-port': 'GWRTC Call Port', 'linktest': 'LXPRO.COM LinkTest', 'linktest-s': 'LXPRO.COM LinkTest SSL', 'webdata': 'webData', 'cimtrak': 'CimTrak', 'cbos-ip-port': 'CBOS/IP ncapsalation port', 'gprs-cube': 'CommLinx GPRS Cube', 'vipremoteagent': 'Vigil-IP RemoteAgent', 'nattyserver': 'NattyServer Port', 'timestenbroker': 'TimesTen Broker Port', 'sas-remote-hlp': 'SAS Remote Help Server', 'canon-capt': 'Canon CAPT Port', 'grf-port': 'GRF Server Port', 'apw-registry': 'apw RMI registry', 'exapt-lmgr': 'Exapt License Manager', 'adtempusclient': 'adTempus Client', 'gsakmp': 'gsakmp port', 'gbs-smp': 'GBS SnapMail Protocol', 'xo-wave': 'XO Wave Control Port', 'mni-prot-rout': 'MNI Protected Routing', 'rtraceroute': 'Remote Traceroute', 'listmgr-port': 'ListMGR Port', 'rblcheckd': 'rblcheckd server daemon', 'haipe-otnk': 'HAIPE Network Keying', 'cindycollab': 'Cinderella Collaboration', 'paging-port': 'RTP Paging Port', 'ctp': 'Chantry Tunnel Protocol', 'ctdhercules': 'ctdhercules', 'zicom': 'ZICOM', 'ispmmgr': 'ISPM Manager Port', 'dvcprov-port': 'Device Provisioning Port', 'jibe-eb': 'Jibe EdgeBurst', 'c-h-it-port': 'Cutler-Hammer IT Port', 'cognima': 'Cognima Replication', 'nnp': 'Nuzzler Network Protocol', 'abcvoice-port': 'ABCvoice server port', 'iso-tp0s': 'Secure ISO TP0 port', 'bim-pem': 'Impact Mgr./PEM Gateway', 'bfd-control': 'BFD Control Protocol', 'bfd-echo': 'BFD Echo Protocol', 'upstriggervsw': 'VSW Upstrigger port', 'fintrx': 'Fintrx', 'isrp-port': 'SPACEWAY Routing port', 'remotedeploy': 'RemoteDeploy Administration Port [July 2003]', 'quickbooksrds': 'QuickBooks RDS', 'tvnetworkvideo': 'TV NetworkVideo Data port', 'sitewatch': 'e-Watch Corporation SiteWatch', 'dcsoftware': 'DataCore Software', 'jaus': 'JAUS Robots', 'myblast': 'myBLAST Mekentosj port', 'spw-dialer': 'Spaceway Dialer', 'idps': 'idps', 'minilock': 'Minilock', 'radius-dynauth': 'RADIUS Dynamic Authorization', 'pwgpsi': 'Print Services Interface', 'ibm-mgr': 'ibm manager service', 'vhd': 'VHD', 'soniqsync': 'SoniqSync', 'iqnet-port': 'Harman IQNet Port', 'tcpdataserver': 'ThorGuard Server Port', 'wsmlb': 'Remote System Manager', 'spugna': 'SpuGNA Communication Port', 'sun-as-iiops-ca': 'Sun App Svr-IIOPClntAuth', 'apocd': 'Java Desktop System Configuration Agent', 'wlanauth': 'WLAN AS server', 'amp': 'AMP', 'neto-wol-server': 'netO WOL Server', 'rap-ip': 'Rhapsody Interface Protocol', 'neto-dcs': 'netO DCS', 'lansurveyorxml': 'LANsurveyor XML', 'sunlps-http': 'Sun Local Patch Server', 'tapeware': 'Yosemite Tech Tapeware', 'crinis-hb': 'Crinis Heartbeat', 'epl-slp': 'EPL Sequ Layer Protocol', 'scp': 'Siemens AuD SCP', 'pmcp': 'ATSC PMCP Standard', 'acp-discovery': 'Compute Pool Discovery', 'acp-conduit': 'Compute Pool Conduit', 'acp-policy': 'Compute Pool Policy', 'ffserver': 'Antera FlowFusion Process Simulation', 'warmux': 'WarMUX game server', 'netmpi': 'Netadmin Systems MPI service', 'neteh': 'Netadmin Systems Event Handler', 'neteh-ext': 'Netadmin Systems Event Handler External', 'cernsysmgmtagt': 'Cerner System Management Agent', 'dvapps': 'Docsvault Application Service', 'xxnetserver': 'xxNETserver', 'aipn-auth': 'AIPN LS Authentication', 'spectardata': 'Spectar Data Stream Service', 'spectardb': 'Spectar Database Rights Service', 'markem-dcp': 'MARKEM NEXTGEN DCP', 'mkm-discovery': 'MARKEM Auto-Discovery', 'sos': 'Scito Object Server', 'amx-rms': 'AMX Resource Management Suite', 'flirtmitmir': 'www.FlirtMitMir.de', 'zfirm-shiprush3': 'Z-Firm ShipRush v3', 'nhci': 'NHCI status port', 'quest-agent': 'Quest Common Agent', 'rnm': 'RNM', 'v-one-spp': 'V-ONE Single Port Proxy', 'an-pcp': 'Astare Network PCP', 'msfw-control': 'MS Firewall Control', 'item': 'IT Environmental Monitor', 'spw-dnspreload': 'SPACEWAY DNS Preload', 'qtms-bootstrap': 'QTMS Bootstrap Protocol', 'spectraport': 'SpectraTalk Port', 'sse-app-config': 'SSE App Configuration', 'sscan': 'SONY scanning protocol', 'stryker-com': 'Stryker Comm Port', 'opentrac': 'OpenTRAC', 'informer': 'INFORMER', 'trap-port': 'Trap Port', 'trap-port-mom': 'Trap Port MOM', 'nav-port': 'Navini Port', 'sasp': 'Server/Application State Protocol (SASP)', 'winshadow-hd': 'winShadow Host Discovery', 'giga-pocket': 'GIGA-POCKET', 'asap-tcp': 'asap tcp port', 'asap-tcp-tls': 'asap/tls tcp port', 'xpl': 'xpl automation protocol', 'dzdaemon': 'Sun SDViz DZDAEMON Port', 'dzoglserver': 'Sun SDViz DZOGLSERVER Port', 'diameter': 'DIAMETER', 'ovsam-mgmt': 'hp OVSAM MgmtServer Disco', 'ovsam-d-agent': 'hp OVSAM HostAgent Disco', 'avocent-adsap': 'Avocent DS Authorization', 'oem-agent': 'OEM Agent', 'fagordnc': 'fagordnc', 'sixxsconfig': 'SixXS Configuration', 'pnbscada': 'PNBSCADA', 'dl-agent': 'DirectoryLockdown Agent\nIANA assigned this well-formed service name as a replacement for "dl_agent".', 'dl_agent': 'DirectoryLockdown Agent', 'xmpcr-interface': 'XMPCR Interface Port', 'fotogcad': 'FotoG CAD interface', 'appss-lm': 'appss license manager', 'igrs': 'IGRS', 'idac': 'Data Acquisition and Control', 'msdts1': 'DTS Service Port', 'vrpn': 'VR Peripheral Network', 'softrack-meter': 'SofTrack Metering', 'topflow-ssl': 'TopFlow SSL', 'nei-management': 'NEI management port', 'ciphire-data': 'Ciphire Data Transport', 'ciphire-serv': 'Ciphire Services', 'dandv-tester': 'D and V Tester Control Port', 'ndsconnect': 'Niche Data Server Connect', 'rtc-pm-port': 'Oracle RTC-PM port', 'pcc-image-port': 'PCC-image-port', 'cgi-starapi': 'CGI StarAPI Server', 'syam-agent': 'SyAM Agent Port', 'syam-smc': 'SyAm SMC Service Port', 'sdo-tls': 'Simple Distributed Objects over TLS', 'sdo-ssh': 'Simple Distributed Objects over SSH', 'senip': 'IAS, Inc. SmartEye NET Internet Protocol', 'itv-control': 'ITV Port', 'udt-os': 'Unidata UDT OS\nIANA assigned this well-formed service name as a replacement for "udt_os".', 'udt_os': 'Unidata UDT OS', 'nimsh': 'NIM Service Handler', 'nimaux': 'NIMsh Auxiliary Port', 'charsetmgr': 'CharsetMGR', 'omnilink-port': 'Arnet Omnilink Port', 'mupdate': 'Mailbox Update (MUPDATE) protocol', 'topovista-data': 'TopoVista elevation data', 'imoguia-port': 'Imoguia Port', 'hppronetman': 'HP Procurve NetManagement', 'surfcontrolcpa': 'SurfControl CPA', 'prnrequest': 'Printer Request Port', 'prnstatus': 'Printer Status Port', 'gbmt-stars': 'Global Maintech Stars', 'listcrt-port': 'ListCREATOR Port', 'listcrt-port-2': 'ListCREATOR Port 2', 'agcat': 'Auto-Graphics Cataloging', 'wysdmc': 'WysDM Controller', 'aftmux': 'AFT multiplex port', 'pktcablemmcops': 'PacketCableMultimediaCOPS', 'hyperip': 'HyperIP', 'exasoftport1': 'Exasoft IP Port', 'herodotus-net': 'Herodotus Net', 'sor-update': 'Soronti Update Port', 'symb-sb-port': 'Symbian Service Broker', 'mpl-gprs-port': 'MPL_GPRS_PORT', 'zmp': 'Zoran Media Port', 'winport': 'WINPort', 'natdataservice': 'ScsTsr', 'netboot-pxe': 'PXE NetBoot Manager', 'smauth-port': 'AMS Port', 'syam-webserver': 'Syam Web Server Port', 'msr-plugin-port': 'MSR Plugin Port', 'dyn-site': 'Dynamic Site System', 'plbserve-port': 'PL/B App Server User Port', 'sunfm-port': 'PL/B File Manager Port', 'sdp-portmapper': 'SDP Port Mapper Protocol', 'mailprox': 'Mailprox', 'dvbservdsc': 'DVB Service Discovery', 'dbcontrol-agent': 'Oracle dbControl Agent po\nIANA assigned this well-formed service name as a replacement for "dbcontrol_agent".', 'dbcontrol_agent': 'Oracle dbControl Agent po', 'aamp': 'Anti-virus Application Management Port', 'xecp-node': 'XeCP Node Service', 'homeportal-web': 'Home Portal Web Server', 'srdp': 'satellite distribution', 'tig': 'TetraNode Ip Gateway', 'sops': 'S-Ops Management', 'emcads': 'EMCADS Server Port', 'backupedge': 'BackupEDGE Server', 'ccp': 'Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices', 'apdap': 'Anton Paar Device Administration Protocol', 'drip': 'Dynamic Routing Information Protocol', 'namemunge': 'Name Munging', 'pwgippfax': 'PWG IPP Facsimile', 'i3-sessionmgr': 'I3 Session Manager', 'xmlink-connect': 'Eydeas XMLink Connect', 'adrep': 'AD Replication RPC', 'p2pcommunity': 'p2pCommunity', 'gvcp': 'GigE Vision Control', 'mqe-broker': 'MQEnterprise Broker', 'mqe-agent': 'MQEnterprise Agent', 'treehopper': 'Tree Hopper Networking', 'bess': 'Bess Peer Assessment', 'proaxess': 'ProAxess Server', 'sbi-agent': 'SBI Agent Protocol', 'thrp': 'Teran Hybrid Routing Protocol', 'sasggprs': 'SASG GPRS', 'ati-ip-to-ncpe': 'Avanti IP to NCPE API', 'bflckmgr': 'BuildForge Lock Manager', 'ppsms': 'PPS Message Service', 'ianywhere-dbns': 'iAnywhere DBNS', 'landmarks': 'Landmark Messages', 'lanrevagent': 'LANrev Agent', 'lanrevserver': 'LANrev Server', 'iconp': 'ict-control Protocol', 'progistics': 'ConnectShip Progistics', 'citysearch': 'Remote Applicant Tracking Service', 'airshot': 'Air Shot', 'opswagent': 'Opsware Agent', 'opswmanager': 'Opsware Manager', 'secure-cfg-svr': 'Secured Configuration Server', 'smwan': 'Smith Micro Wide Area Network Service', 'acms': 'Aircraft Cabin Management System', 'starfish': 'Starfish System Admin', 'eis': 'ESRI Image Server', 'eisp': 'ESRI Image Service', 'mapper-nodemgr': 'MAPPER network node manager', 'mapper-mapethd': 'MAPPER TCP/IP server', 'mapper-ws-ethd': 'MAPPER workstation server\nIANA assigned this well-formed service name as a replacement for "mapper-ws_ethd".', 'mapper-ws_ethd': 'MAPPER workstation server', 'centerline': 'Centerline', 'dcs-config': 'DCS Configuration Port', 'bv-queryengine': 'BindView-Query Engine', 'bv-is': 'BindView-IS', 'bv-smcsrv': 'BindView-SMCServer', 'bv-ds': 'BindView-DirectoryServer', 'bv-agent': 'BindView-Agent', 'iss-mgmt-ssl': 'ISS Management Svcs SSL', 'abcsoftware': 'abcsoftware-01', 'agentsease-db': 'aes_db', 'dnx': 'Distributed Nagios Executor Service', 'nvcnet': 'Norman distributes scanning service', 'terabase': 'Terabase', 'newoak': 'NewOak', 'pxc-spvr-ft': 'pxc-spvr-ft', 'pxc-splr-ft': 'pxc-splr-ft', 'pxc-roid': 'pxc-roid', 'pxc-pin': 'pxc-pin', 'pxc-spvr': 'pxc-spvr', 'pxc-splr': 'pxc-splr', 'netcheque': 'NetCheque accounting', 'chimera-hwm': 'Chimera HWM', 'samsung-unidex': 'Samsung Unidex', 'altserviceboot': 'Alternate Service Boot', 'pda-gate': 'PDA Gate', 'acl-manager': 'ACL Manager', 'taiclock': 'TAICLOCK', 'talarian-mcast1': 'Talarian Mcast', 'talarian-mcast2': 'Talarian Mcast', 'talarian-mcast3': 'Talarian Mcast', 'talarian-mcast4': 'Talarian Mcast', 'talarian-mcast5': 'Talarian Mcast', 'trap': 'TRAP Port', 'nexus-portal': 'Nexus Portal', 'dnox': 'DNOX', 'esnm-zoning': 'ESNM Zoning Port', 'tnp1-port': 'TNP1 User Port', 'partimage': 'Partition Image Port', 'as-debug': 'Graphical Debug Server', 'bxp': 'bitxpress', 'dtserver-port': 'DTServer Port', 'ip-qsig': 'IP Q signaling protocol', 'jdmn-port': 'Accell/JSP Daemon Port', 'suucp': 'UUCP over SSL', 'vrts-auth-port': 'VERITAS Authorization Service', 'sanavigator': 'SANavigator Peer Port', 'ubxd': 'Ubiquinox Daemon', 'wap-push-http': 'WAP Push OTA-HTTP port', 'wap-push-https': 'WAP Push OTA-HTTP secure', 'ravehd': 'RaveHD network control', 'fazzt-ptp': 'Fazzt Point-To-Point', 'fazzt-admin': 'Fazzt Administration', 'yo-main': 'Yo.net main service', 'houston': 'Rocketeer-Houston', 'ldxp': 'LDXP', 'nirp': 'Neighbour Identity Resolution', 'ltp': 'Location Tracking Protocol', 'npp': 'Network Paging Protocol', 'acp-proto': 'Accounting Protocol', 'ctp-state': 'Context Transfer Protocol', 'wafs': 'Wide Area File Services', 'cisco-wafs': 'Wide Area File Services', 'cppdp': 'Cisco Peer to Peer Distribution Protocol', 'interact': 'VoiceConnect Interact', 'ccu-comm-1': 'CosmoCall Universe Communications Port 1', 'ccu-comm-2': 'CosmoCall Universe Communications Port 2', 'ccu-comm-3': 'CosmoCall Universe Communications Port 3', 'lms': 'Location Message Service', 'wfm': 'Servigistics WFM server', 'kingfisher': 'Kingfisher protocol', 'dlms-cosem': 'DLMS/COSEM', 'dsmeter-iatc': 'DSMETER Inter-Agent Transfer Channel\nIANA assigned this well-formed service name as a replacement for "dsmeter_iatc".', 'dsmeter_iatc': 'DSMETER Inter-Agent Transfer Channel', 'ice-location': 'Ice Location Service (TCP)', 'ice-slocation': 'Ice Location Service (SSL)', 'ice-router': 'Ice Firewall Traversal Service (TCP)', 'ice-srouter': 'Ice Firewall Traversal Service (SSL)', 'avanti-cdp': 'Avanti Common Data\nIANA assigned this well-formed service name as a replacement for "avanti_cdp".', 'avanti_cdp': 'Avanti Common Data', 'pmas': 'Performance Measurement and Analysis', 'idp': 'Information Distribution Protocol', 'ipfltbcst': 'IP Fleet Broadcast', 'minger': 'Minger Email Address Validation Service', 'tripe': 'Trivial IP Encryption (TrIPE)', 'aibkup': 'Automatically Incremental Backup', 'zieto-sock': 'Zieto Socket Communications', 'iRAPP': 'iRAPP Server Protocol', 'cequint-cityid': 'Cequint City ID UI trigger', 'perimlan': 'ISC Alarm Message Service', 'seraph': 'Seraph DCS', 'cssp': 'Coordinated Security Service Protocol', 'santools': 'SANtools Diagnostic Server', 'lorica-in': 'Lorica inside facing', 'lorica-in-sec': 'Lorica inside facing (SSL)', 'lorica-out': 'Lorica outside facing', 'lorica-out-sec': 'Lorica outside facing (SSL)', 'ezmessagesrv': 'EZNews Newsroom Message Service', 'applusservice': 'APplus Service', 'npsp': 'Noah Printing Service Protocol', 'opencore': 'OpenCORE Remote Control Service', 'omasgport': 'OMA BCAST Service Guide', 'ewinstaller': 'EminentWare Installer', 'ewdgs': 'EminentWare DGS', 'pvxpluscs': 'Pvx Plus CS Host', 'sysrqd': 'sysrq daemon', 'xtgui': 'xtgui information service', 'bre': 'BRE (Bridge Relay Element)', 'patrolview': 'Patrol View', 'drmsfsd': 'drmsfsd', 'dpcp': 'DPCP', 'igo-incognito': 'IGo Incognito Data Port', 'brlp-0': 'Braille protocol', 'brlp-1': 'Braille protocol', 'brlp-2': 'Braille protocol', 'brlp-3': 'Braille protocol', 'shofar': 'Shofar', 'synchronite': 'Synchronite', 'j-ac': 'JDL Accounting LAN Service', 'accel': 'ACCEL', 'izm': 'Instantiated Zero-control Messaging', 'g2tag': 'G2 RFID Tag Telemetry Data', 'xgrid': 'Xgrid', 'apple-vpns-rp': 'Apple VPN Server Reporting Protocol', 'aipn-reg': 'AIPN LS Registration', 'jomamqmonitor': 'JomaMQMonitor', 'cds': 'CDS Transfer Agent', 'smartcard-tls': 'smartcard-TLS', 'hillrserv': 'Hillr Connection Manager', 'netscript': 'Netadmin Systems NETscript service', 'assuria-slm': 'Assuria Log Manager', 'e-builder': 'e-Builder Application Communication', 'fprams': 'Fiber Patrol Alarm Service', 'z-wave': 'Zensys Z-Wave Control Protocol', 'tigv2': 'Rohill TetraNode Ip Gateway v2', 'opsview-envoy': 'Opsview Envoy', 'ddrepl': 'Data Domain Replication Service', 'unikeypro': 'NetUniKeyServer', 'nufw': 'NuFW decision delegation protocol', 'nuauth': 'NuFW authentication protocol', 'fronet': 'FRONET message protocol', 'stars': 'Global Maintech Stars', 'nuts-dem': 'NUTS Daemon\nIANA assigned this well-formed service name as a replacement for "nuts_dem".', 'nuts_dem': 'NUTS Daemon', 'nuts-bootp': 'NUTS Bootp Server\nIANA assigned this well-formed service name as a replacement for "nuts_bootp".', 'nuts_bootp': 'NUTS Bootp Server', 'nifty-hmi': 'NIFTY-Serve HMI protocol', 'cl-db-attach': 'Classic Line Database Server Attach', 'cl-db-request': 'Classic Line Database Server Request', 'cl-db-remote': 'Classic Line Database Server Remote', 'nettest': 'nettest', 'thrtx': 'Imperfect Networks Server', 'cedros-fds': 'Cedros Fraud Detection System\nIANA assigned this well-formed service name as a replacement for "cedros_fds".', 'cedros_fds': 'Cedros Fraud Detection System', 'oirtgsvc': 'Workflow Server', 'oidocsvc': 'Document Server', 'oidsr': 'Document Replication', 'vvr-control': 'VVR Control', 'tgcconnect': 'TGCConnect Beacon', 'vrxpservman': 'Multum Service Manager', 'hhb-handheld': 'HHB Handheld Client', 'agslb': 'A10 GSLB Service', 'PowerAlert-nsa': 'PowerAlert Network Shutdown Agent', 'menandmice-noh': 'Men & Mice Remote Control\nIANA assigned this well-formed service name as a replacement for "menandmice_noh".', 'menandmice_noh': 'Men & Mice Remote Control', 'idig-mux': 'iDigTech Multiplex\nIANA assigned this well-formed service name as a replacement for "idig_mux".', 'idig_mux': 'iDigTech Multiplex', 'mbl-battd': 'MBL Remote Battery Monitoring', 'atlinks': 'atlinks device discovery', 'bzr': 'Bazaar version control system', 'stat-results': 'STAT Results', 'stat-scanner': 'STAT Scanner Control', 'stat-cc': 'STAT Command Center', 'nss': 'Network Security Service', 'jini-discovery': 'Jini Discovery', 'omscontact': 'OMS Contact', 'omstopology': 'OMS Topology', 'silverpeakpeer': 'Silver Peak Peer Protocol', 'silverpeakcomm': 'Silver Peak Communication Protocol', 'altcp': 'ArcLink over Ethernet', 'joost': 'Joost Peer to Peer Protocol', 'ddgn': 'DeskDirect Global Network', 'pslicser': 'PrintSoft License Server', 'iadt': 'Automation Drive Interface Transport', 'd-cinema-csp': 'SMPTE Content Synchonization Protocol', 'ml-svnet': 'Maxlogic Supervisor Communication', 'pcoip': 'PC over IP', 'smcluster': 'StorMagic Cluster Services', 'bccp': 'Brocade Cluster Communication Protocol', 'tl-ipcproxy': 'Translattice Cluster IPC Proxy', 'wello': 'Wello P2P pubsub service', 'storman': 'StorMan', 'MaxumSP': 'Maxum Services', 'httpx': 'HTTPX', 'macbak': 'MacBak', 'pcptcpservice': 'Production Company Pro TCP Service', 'gmmp': 'General Metaverse Messaging Protocol', 'universe-suite': 'UNIVERSE SUITE MESSAGE SERVICE\nIANA assigned this well-formed service name as a replacement for "universe_suite".', 'universe_suite': 'UNIVERSE SUITE MESSAGE SERVICE', 'wcpp': 'Woven Control Plane Protocol', 'boxbackupstore': 'Box Backup Store Service', 'csc-proxy': 'Cascade Proxy\nIANA assigned this well-formed service name as a replacement for "csc_proxy".', 'csc_proxy': 'Cascade Proxy', 'vatata': 'Vatata Peer to Peer Protocol', 'pcep': 'Path Computation Element Communication Protocol', 'sieve': 'ManageSieve Protocol', 'azeti': 'Azeti Agent Service', 'pvxplusio': 'PxPlus remote file srvr', 'eims-admin': 'EIMS ADMIN', 'corelccam': 'Corel CCam', 'd-data': 'Diagnostic Data', 'd-data-control': 'Diagnostic Data Control', 'srcp': 'Simple Railroad Command Protocol', 'owserver': 'One-Wire Filesystem Server', 'batman': 'better approach to mobile ad-hoc networking', 'pinghgl': 'Hellgate London', 'visicron-vs': 'Visicron Videoconference Service', 'compx-lockview': 'CompX-LockView', 'dserver': 'Exsequi Appliance Discovery', 'mirrtex': 'Mir-RT exchange service', 'p6ssmc': 'P6R Secure Server Management Console', 'pscl-mgt': 'Parascale Membership Manager', 'perrla': 'PERRLA User Services', 'fdt-rcatp': 'FDT Remote Categorization Protocol', 'rwhois': 'Remote Who Is', 'trim-event': 'TRIM Event Service', 'trim-ice': 'TRIM ICE Service', 'balour': 'Balour Game Server', 'geognosisman': 'Cadcorp GeognoSIS Manager Service', 'geognosis': 'Cadcorp GeognoSIS Service', 'jaxer-web': 'Jaxer Web Protocol', 'jaxer-manager': 'Jaxer Manager Command Protocol', 'publiqare-sync': 'PubliQare Distributed Environment Synchronisation Engine', 'gaia': 'Gaia Connector Protocol', 'lisp-data': 'LISP Data Packets', 'lisp-cons': 'LISP-CONS Control', 'unicall': 'UNICALL', 'vinainstall': 'VinaInstall', 'm4-network-as': 'Macro 4 Network AS', 'elanlm': 'ELAN LM', 'lansurveyor': 'LAN Surveyor', 'itose': 'ITOSE', 'fsportmap': 'File System Port Map', 'net-device': 'Net Device', 'plcy-net-svcs': 'PLCY Net Services', 'pjlink': 'Projector Link', 'f5-iquery': 'F5 iQuery', 'qsnet-trans': 'QSNet Transmitter', 'qsnet-workst': 'QSNet Workstation', 'qsnet-assist': 'QSNet Assistant', 'qsnet-cond': 'QSNet Conductor', 'qsnet-nucl': 'QSNet Nucleus', 'omabcastltkm': 'OMA BCAST Long-Term Key Messages', 'matrix-vnet': 'Matrix VNet Communication Protocol\nIANA assigned this well-formed service name as a replacement for "matrix_vnet".', 'matrix_vnet': 'Matrix VNet Communication Protocol', 'wxbrief': 'WeatherBrief Direct', 'epmd': 'Erlang Port Mapper Daemon', 'elpro-tunnel': 'ELPRO V2 Protocol Tunnel\nIANA assigned this well-formed service name as a replacement for "elpro_tunnel".', 'elpro_tunnel': 'ELPRO V2 Protocol Tunnel', 'l2c-control': 'LAN2CAN Control', 'l2c-data': 'LAN2CAN Data', 'remctl': 'Remote Authenticated Command Service', 'psi-ptt': 'PSI Push-to-Talk Protocol', 'tolteces': 'Toltec EasyShare', 'bip': 'BioAPI Interworking', 'cp-spxsvr': 'Cambridge Pixel SPx Server', 'cp-spxdpy': 'Cambridge Pixel SPx Display', 'ctdb': 'CTDB', 'xandros-cms': 'Xandros Community Management Service', 'wiegand': 'Physical Access Control', 'apwi-imserver': 'American Printware IMServer Protocol', 'apwi-rxserver': 'American Printware RXServer Protocol', 'apwi-rxspooler': 'American Printware RXSpooler Protocol', 'omnivisionesx': 'OmniVision communication for Virtual environments', 'fly': 'Fly Object Space', 'ds-srv': 'ASIGRA Services', 'ds-srvr': 'ASIGRA Televaulting DS-System Service', 'ds-clnt': 'ASIGRA Televaulting DS-Client Service', 'ds-user': 'ASIGRA Televaulting DS-Client Monitoring/Management', 'ds-admin': 'ASIGRA Televaulting DS-System Monitoring/Management', 'ds-mail': 'ASIGRA Televaulting Message Level Restore service', 'ds-slp': 'ASIGRA Televaulting DS-Sleeper Service', 'nacagent': 'Network Access Control Agent', 'slscc': 'SLS Technology Control Centre', 'netcabinet-com': 'Net-Cabinet comunication', 'itwo-server': 'RIB iTWO Application Server', 'found': 'Found Messaging Protocol', 'netrockey6': 'NetROCKEY6 SMART Plus Service', 'beacon-port-2': 'SMARTS Beacon Port', 'drizzle': 'Drizzle database server', 'omviserver': 'OMV-Investigation Server-Client', 'omviagent': 'OMV Investigation Agent-Server', 'rsqlserver': 'REAL SQL Server', 'wspipe': 'adWISE Pipe', 'l-acoustics': 'L-ACOUSTICS management', 'vop': 'Versile Object Protocol', 'saris': 'Saris', 'pharos': 'Pharos', 'krb524': 'KRB524', 'nv-video': 'NV Video default', 'upnotifyp': 'UPNOTIFYP', 'n1-fwp': 'N1-FWP', 'n1-rmgmt': 'N1-RMGMT', 'asc-slmd': 'ASC Licence Manager', 'privatewire': 'PrivateWire', 'camp': 'Common ASCII Messaging Protocol', 'ctisystemmsg': 'CTI System Msg', 'ctiprogramload': 'CTI Program Load', 'nssalertmgr': 'NSS Alert Manager', 'nssagentmgr': 'NSS Agent Manager', 'prchat-user': 'PR Chat User', 'prchat-server': 'PR Chat Server', 'prRegister': 'PR Register', 'mcp': 'Matrix Configuration Protocol', 'hpssmgmt': 'hpssmgmt service', 'assyst-dr': 'Assyst Data Repository Service', 'icms': 'Integrated Client Message Service', 'prex-tcp': 'Protocol for Remote Execution over TCP', 'awacs-ice': 'Apple Wide Area Connectivity Service ICE Bootstrap', 'ipsec-nat-t': 'IPsec NAT-Traversal', 'ehs': 'Event Heap Server', 'ehs-ssl': 'Event Heap Server SSL', 'wssauthsvc': 'WSS Security Service', 'swx-gate': 'Software Data Exchange Gateway', 'worldscores': 'WorldScores', 'sf-lm': 'SF License Manager (Sentinel)', 'lanner-lm': 'Lanner License Manager', 'synchromesh': 'Synchromesh', 'aegate': 'Aegate PMR Service', 'gds-adppiw-db': 'Perman I Interbase Server', 'ieee-mih': 'MIH Services', 'menandmice-mon': 'Men and Mice Monitoring', 'icshostsvc': 'ICS host services', 'msfrs': 'MS FRS Replication', 'rsip': 'RSIP Port', 'dtn-bundle-tcp': 'DTN Bundle TCP CL Protocol', 'hylafax': 'HylaFAX', 'kwtc': 'Kids Watch Time Control Service', 'tram': 'TRAM', 'bmc-reporting': 'BMC Reporting', 'iax': 'Inter-Asterisk eXchange', 'rid': 'RID over HTTP/TLS', 'l3t-at-an': 'HRPD L3T (AT-AN)', 'ipt-anri-anri': 'IPT (ANRI-ANRI)', 'ias-session': 'IAS-Session (ANRI-ANRI)', 'ias-paging': 'IAS-Paging (ANRI-ANRI)', 'ias-neighbor': 'IAS-Neighbor (ANRI-ANRI)', 'a21-an-1xbs': 'A21 (AN-1xBS)', 'a16-an-an': 'A16 (AN-AN)', 'a17-an-an': 'A17 (AN-AN)', 'piranha1': 'Piranha1', 'piranha2': 'Piranha2', 'mtsserver': 'EAX MTS Server', 'menandmice-upg': 'Men & Mice Upgrade Agent', 'playsta2-app': 'PlayStation2 App Port', 'playsta2-lob': 'PlayStation2 Lobby Port', 'smaclmgr': 'smaclmgr', 'kar2ouche': 'Kar2ouche Peer location service', 'oms': 'OrbitNet Message Service', 'noteit': 'Note It! Message Service', 'ems': 'Rimage Messaging Server', 'contclientms': 'Container Client Message Service', 'eportcomm': 'E-Port Message Service', 'mmacomm': 'MMA Comm Services', 'mmaeds': 'MMA EDS Service', 'eportcommdata': 'E-Port Data Service', 'light': 'Light packets transfer protocol', 'acter': 'Bull RSF action server', 'rfa': 'remote file access server', 'cxws': 'CXWS Operations', 'appiq-mgmt': 'AppIQ Agent Management', 'dhct-status': 'BIAP Device Status', 'dhct-alerts': 'BIAP Generic Alert', 'bcs': 'Business Continuity Servi', 'traversal': 'boundary traversal', 'mgesupervision': 'MGE UPS Supervision', 'mgemanagement': 'MGE UPS Management', 'parliant': 'Parliant Telephony System', 'finisar': 'finisar', 'spike': 'Spike Clipboard Service', 'rfid-rp1': 'RFID Reader Protocol 1.0', 'autopac': 'Autopac Protocol', 'msp-os': 'Manina Service Protocol', 'nst': 'Network Scanner Tool FTP', 'mobile-p2p': 'Mobile P2P Service', 'altovacentral': 'Altova DatabaseCentral', 'prelude': 'Prelude IDS message proto', 'mtn': 'monotone Netsync Protocol', 'conspiracy': 'Conspiracy messaging', 'netxms-agent': 'NetXMS Agent', 'netxms-mgmt': 'NetXMS Management', 'netxms-sync': 'NetXMS Server Synchronization', 'npqes-test': 'Network Performance Quality Evaluation System Test Service', 'assuria-ins': 'Assuria Insider', 'truckstar': 'TruckStar Service', 'fcis': 'F-Link Client Information Service', 'capmux': 'CA Port Multiplexer', 'gearman': 'Gearman Job Queue System', 'remcap': 'Remote Capture Protocol', 'resorcs': 'RES Orchestration Catalog Services', 'ipdr-sp': 'IPDR/SP', 'solera-lpn': 'SoleraTec Locator', 'ipfix': 'IP Flow Info Export', 'ipfixs': 'ipfix protocol over TLS', 'lumimgrd': 'Luminizer Manager', 'sicct': 'SICCT', 'openhpid': 'openhpi HPI service', 'ifsp': 'Internet File Synchronization Protocol', 'fmp': 'Funambol Mobile Push', 'profilemac': 'Profile for Mac', 'ssad': 'Simple Service Auto Discovery', 'spocp': 'Simple Policy Control Protocol', 'snap': 'Simple Network Audio Protocol', 'simon': 'Simple Invocation of Methods Over Network (SIMON)', 'bfd-multi-ctl': 'BFD Multihop Control', 'smart-install': 'Smart Install Service', 'sia-ctrl-plane': 'Service Insertion Architecture (SIA) Control-Plane', 'xmcp': 'eXtensible Messaging Client Protocol', 'iims': 'Icona Instant Messenging System', 'iwec': 'Icona Web Embedded Chat', 'ilss': 'Icona License System Server', 'notateit': 'Notateit Messaging', 'htcp': 'HTCP', 'varadero-0': 'Varadero-0', 'varadero-1': 'Varadero-1', 'varadero-2': 'Varadero-2', 'opcua-tcp': 'OPC UA TCP Protocol', 'quosa': 'QUOSA Virtual Library Service', 'gw-asv': 'nCode ICE-flow Library AppServer', 'opcua-tls': 'OPC UA TCP Protocol over TLS/SSL', 'gw-log': 'nCode ICE-flow Library LogServer', 'wcr-remlib': 'WordCruncher Remote Library Service', 'contamac-icm': 'Contamac ICM Service\nIANA assigned this well-formed service name as a replacement for "contamac_icm".', 'contamac_icm': 'Contamac ICM Service', 'wfc': 'Web Fresh Communication', 'appserv-http': 'App Server - Admin HTTP', 'appserv-https': 'App Server - Admin HTTPS', 'sun-as-nodeagt': 'Sun App Server - NA', 'derby-repli': 'Apache Derby Replication', 'unify-debug': 'Unify Debugger', 'phrelay': 'Photon Relay', 'phrelaydbg': 'Photon Relay Debug', 'cc-tracking': 'Citcom Tracking Service', 'wired': 'Wired', 'tritium-can': 'Tritium CAN Bus Bridge Service', 'lmcs': 'Lighting Management Control System', 'wsdl-event': 'WSDL Event Receiver', 'hislip': 'IVI High-Speed LAN Instrument Protocol', 'wmlserver': 'Meier-Phelps License Server', 'hivestor': 'HiveStor Distributed File System', 'abbs': 'ABBS', 'lyskom': 'LysKOM Protocol A', 'radmin-port': 'RAdmin Port', 'hfcs': 'HyperFileSQL Client/Server Database Engine', 'flr-agent': 'FileLocator Remote Search Agent\nIANA assigned this well-formed service name as a replacement for "flr_agent".', 'flr_agent': 'FileLocator Remote Search Agent', 'magiccontrol': 'magicCONROL RF and Data Interface', 'lutap': 'Technicolor LUT Access Protocol', 'lutcp': 'LUTher Control Protocol', 'bones': 'Bones Remote Control', 'frcs': 'Fibics Remote Control Service', 'eq-office-4940': 'Equitrac Office', 'eq-office-4941': 'Equitrac Office', 'eq-office-4942': 'Equitrac Office', 'munin': 'Munin Graphing Framework', 'sybasesrvmon': 'Sybase Server Monitor', 'pwgwims': 'PWG WIMS', 'sagxtsds': 'SAG Directory Server', 'dbsyncarbiter': 'Synchronization Arbiter', 'ccss-qmm': 'CCSS QMessageMonitor', 'ccss-qsm': 'CCSS QSystemMonitor', 'webyast': 'WebYast', 'gerhcs': 'GER HC Standard', 'mrip': 'Model Railway Interface Program', 'smar-se-port1': 'SMAR Ethernet Port 1', 'smar-se-port2': 'SMAR Ethernet Port 2', 'parallel': 'Parallel for GAUSS (tm)', 'busycal': 'BusySync Calendar Synch. Protocol', 'vrt': 'VITA Radio Transport', 'hfcs-manager': 'HyperFileSQL Client/Server Database Engine Manager', 'commplex-main': '', 'commplex-link': '', 'rfe': 'radio free ethernet', 'fmpro-internal': 'FileMaker, Inc. - Proprietary transport', 'avt-profile-1': 'RTP media data', 'avt-profile-2': 'RTP control protocol', 'wsm-server': 'wsm server', 'wsm-server-ssl': 'wsm server ssl', 'synapsis-edge': 'Synapsis EDGE', 'winfs': 'Microsoft Windows Filesystem', 'telelpathstart': 'TelepathStart', 'telelpathattack': 'TelepathAttack', 'nsp': 'NetOnTap Service', 'fmpro-v6': 'FileMaker, Inc. - Proprietary transport', 'fmwp': 'FileMaker, Inc. - Web publishing', 'zenginkyo-1': 'zenginkyo-1', 'zenginkyo-2': 'zenginkyo-2', 'mice': 'mice server', 'htuilsrv': 'Htuil Server for PLD2', 'scpi-telnet': 'SCPI-TELNET', 'scpi-raw': 'SCPI-RAW', 'strexec-d': 'Storix I/O daemon (data)', 'strexec-s': 'Storix I/O daemon (stat)', 'qvr': 'Quiqum Virtual Relais', 'infobright': 'Infobright Database Server', 'surfpass': 'SurfPass', 'signacert-agent': 'SignaCert Enterprise Trust Server Agent', 'asnaacceler8db': 'asnaacceler8db', 'swxadmin': 'ShopWorX Administration', 'lxi-evntsvc': 'LXI Event Service', 'osp': 'Open Settlement Protocol', 'texai': 'Texai Message Service', 'ivocalize': 'iVocalize Web Conference', 'mmcc': 'multimedia conference control tool', 'ita-agent': 'ITA Agent', 'ita-manager': 'ITA Manager', 'rlm': 'RLM License Server', 'rlm-admin': 'RLM administrative interface', 'unot': 'UNOT', 'intecom-ps1': 'Intecom Pointspan 1', 'intecom-ps2': 'Intecom Pointspan 2', 'sds': 'SIP Directory Services', 'sip': 'SIP', 'sip-tls': 'SIP-TLS', 'na-localise': 'Localisation access', 'csrpc': 'centrify secure RPC', 'ca-1': 'Channel Access 1', 'ca-2': 'Channel Access 2', 'stanag-5066': 'STANAG-5066-SUBNET-INTF', 'authentx': 'Authentx Service', 'bitforestsrv': 'Bitforest Data Service', 'i-net-2000-npr': 'I/Net 2000-NPR', 'vtsas': 'VersaTrans Server Agent Service', 'powerschool': 'PowerSchool', 'ayiya': 'Anything In Anything', 'tag-pm': 'Advantage Group Port Mgr', 'alesquery': 'ALES Query', 'pvaccess': 'Experimental Physics and Industrial Control System', 'onscreen': 'OnScreen Data Collection Service', 'sdl-ets': 'SDL - Ent Trans Server', 'qcp': 'Qpur Communication Protocol', 'qfp': 'Qpur File Protocol', 'llrp': 'EPCglobal Low-Level Reader Protocol', 'encrypted-llrp': 'EPCglobal Encrypted LLRP', 'aprigo-cs': 'Aprigo Collection Service', 'sentinel-lm': 'Sentinel LM', 'hart-ip': 'HART-IP', 'sentlm-srv2srv': 'SentLM Srv2Srv', 'socalia': 'Socalia service mux', 'talarian-tcp': 'Talarian_TCP', 'oms-nonsecure': 'Oracle OMS non-secure', 'actifio-c2c': 'Actifio C2C', 'taep-as-svc': 'TAEP AS service', 'pm-cmdsvr': 'PeerMe Msg Cmd Service', 'ev-services': 'Enterprise Vault Services', 'autobuild': 'Symantec Autobuild Service', 'gradecam': 'GradeCam Image Processing', 'nbt-pc': 'Policy Commander', 'ppactivation': 'PP ActivationServer', 'erp-scale': 'ERP-Scale', 'ctsd': 'MyCTS server port', 'rmonitor-secure': 'RMONITOR SECURE\nIANA assigned this well-formed service name as a replacement for "rmonitor_secure".', 'rmonitor_secure': 'RMONITOR SECURE', 'social-alarm': 'Social Alarm Service', 'atmp': 'Ascend Tunnel Management Protocol', 'esri-sde': 'ESRI SDE Instance\n IANA assigned this well-formed service name as a replacement for "esri_sde".', 'esri_sde': 'ESRI SDE Instance', 'sde-discovery': 'ESRI SDE Instance Discovery', 'toruxserver': 'ToruX Game Server', 'bzflag': 'BZFlag game server', 'asctrl-agent': 'Oracle asControl Agent', 'rugameonline': 'Russian Online Game', 'mediat': 'Mediat Remote Object Exchange', 'snmpssh': 'SNMP over SSH Transport Model', 'snmpssh-trap': 'SNMP Notification over SSH Transport Model', 'sbackup': 'Shadow Backup', 'vpa': 'Virtual Protocol Adapter', 'ife-icorp': 'ife_1corp\nIANA assigned this well-formed service name as a replacement for "ife_icorp".', 'ife_icorp': 'ife_1corp', 'winpcs': 'WinPCS Service Connection', 'scte104': 'SCTE104 Connection', 'scte30': 'SCTE30 Connection', 'aol': 'America-Online', 'aol-1': 'AmericaOnline1', 'aol-2': 'AmericaOnline2', 'aol-3': 'AmericaOnline3', 'cpscomm': 'CipherPoint Config Service', 'ampl-lic': 'The protocol is used by a license server and client programs to control use of program licenses that float to networked machines', 'ampl-tableproxy': 'The protocol is used by two programs that exchange "table" data used in the AMPL modeling language', 'targus-getdata': 'TARGUS GetData', 'targus-getdata1': 'TARGUS GetData 1', 'targus-getdata2': 'TARGUS GetData 2', 'targus-getdata3': 'TARGUS GetData 3', 'nomad': 'Nomad Device Video Transfer', '3exmp': '3eTI Extensible Management Protocol for OAMP', 'xmpp-client': 'XMPP Client Connection', 'hpvirtgrp': 'HP Virtual Machine Group Management', 'hpvirtctrl': 'HP Virtual Machine Console Operations', 'hp-server': 'HP Server', 'hp-status': 'HP Status', 'perfd': 'HP System Performance Metric Service', 'hpvroom': 'HP Virtual Room Service', 'csedaemon': 'Cruse Scanning System Service', 'enfs': 'Etinnae Network File Service', 'eenet': 'EEnet communications', 'galaxy-network': 'Galaxy Network Service', 'padl2sim': '', 'mnet-discovery': 'm-net discovery', 'downtools': 'DownTools Control Protocol', 'caacws': 'CA Access Control Web Service', 'caaclang2': 'CA AC Lang Service', 'soagateway': 'soaGateway', 'caevms': 'CA eTrust VM Service', 'movaz-ssc': 'Movaz SSC', 'kpdp': 'Kohler Power Device Protocol', '3com-njack-1': '3Com Network Jack Port 1', '3com-njack-2': '3Com Network Jack Port 2', 'xmpp-server': 'XMPP Server Connection', 'cartographerxmp': 'Cartographer XMP', 'cuelink': 'StageSoft CueLink messaging', 'pk': 'PK', 'xmpp-bosh': 'Bidirectional-streams Over Synchronous HTTP (BOSH)', 'undo-lm': 'Undo License Manager', 'transmit-port': 'Marimba Transmitter Port', 'presence': 'XMPP Link-Local Messaging', 'nlg-data': 'NLG Data Service', 'hacl-hb': 'HA cluster heartbeat', 'hacl-gs': 'HA cluster general services', 'hacl-cfg': 'HA cluster configuration', 'hacl-probe': 'HA cluster probing', 'hacl-local': 'HA Cluster Commands', 'hacl-test': 'HA Cluster Test', 'sun-mc-grp': 'Sun MC Group', 'sco-aip': 'SCO AIP', 'cfengine': 'CFengine', 'jprinter': 'J Printer', 'outlaws': 'Outlaws', 'permabit-cs': 'Permabit Client-Server', 'rrdp': 'Real-time & Reliable Data', 'opalis-rbt-ipc': 'opalis-rbt-ipc', 'hacl-poll': 'HA Cluster UDP Polling', 'hpbladems': 'HPBladeSystem Monitor Service', 'hpdevms': 'HP Device Monitor Service', 'pkix-cmc': 'PKIX Certificate Management using CMS (CMC)', 'bsfserver-zn': 'Webservices-based Zn interface of BSF', 'bsfsvr-zn-ssl': 'Webservices-based Zn interface of BSF over SSL', 'kfserver': 'Sculptor Database Server', 'xkotodrcp': 'xkoto DRCP', 'stuns': 'STUN over TLS', 'turns': 'TURN over TLS', 'stun-behaviors': 'STUN Behavior Discovery over TLS', 'nat-pmp-status': 'NAT-PMP Status Announcements', 'nat-pmp': 'NAT Port Mapping Protocol', 'dns-llq': 'DNS Long-Lived Queries', 'mdns': 'Multicast DNS', 'mdnsresponder': 'Multicast DNS Responder IPC', 'llmnr': 'LLMNR', 'ms-smlbiz': 'Microsoft Small Business', 'wsdapi': 'Web Services for Devices', 'wsdapi-s': 'WS for Devices Secured', 'ms-alerter': 'Microsoft Alerter', 'ms-sideshow': 'Protocol for Windows SideShow', 'ms-s-sideshow': 'Secure Protocol for Windows SideShow', 'serverwsd2': 'Microsoft Windows Server WSD2 Service', 'net-projection': 'Windows Network Projection', 'stresstester': 'StressTester(tm) Injector', 'elektron-admin': 'Elektron Administration', 'securitychase': 'SecurityChase', 'excerpt': 'Excerpt Search', 'excerpts': 'Excerpt Search Secure', 'mftp': 'OmniCast MFTP', 'hpoms-ci-lstn': 'HPOMS-CI-LSTN', 'hpoms-dps-lstn': 'HPOMS-DPS-LSTN', 'netsupport': 'NetSupport', 'systemics-sox': 'Systemics Sox', 'foresyte-clear': 'Foresyte-Clear', 'foresyte-sec': 'Foresyte-Sec', 'salient-dtasrv': 'Salient Data Server', 'salient-usrmgr': 'Salient User Manager', 'actnet': 'ActNet', 'continuus': 'Continuus', 'wwiotalk': 'WWIOTALK', 'statusd': 'StatusD', 'ns-server': 'NS Server', 'sns-gateway': 'SNS Gateway', 'sns-agent': 'SNS Agent', 'mcntp': 'MCNTP', 'dj-ice': 'DJ-ICE', 'cylink-c': 'Cylink-C', 'netsupport2': 'Net Support 2', 'salient-mux': 'Salient MUX', 'virtualuser': 'VIRTUALUSER', 'beyond-remote': 'Beyond Remote', 'br-channel': 'Beyond Remote Command Channel', 'devbasic': 'DEVBASIC', 'sco-peer-tta': 'SCO-PEER-TTA', 'telaconsole': 'TELACONSOLE', 'base': 'Billing and Accounting System Exchange', 'radec-corp': 'RADEC CORP', 'park-agent': 'PARK AGENT', 'postgresql': 'PostgreSQL Database', 'pyrrho': 'Pyrrho DBMS', 'sgi-arrayd': 'SGI Array Services Daemon', 'sceanics': 'SCEANICS situation and action notification', 'spss': 'Pearson HTTPS', 'smbdirect': 'Server Message Block over Remote Direct Memory Access', 'surebox': 'SureBox', 'apc-5454': 'APC 5454', 'apc-5455': 'APC 5455', 'apc-5456': 'APC 5456', 'silkmeter': 'SILKMETER', 'ttl-publisher': 'TTL Publisher', 'ttlpriceproxy': 'TTL Price Proxy', 'quailnet': 'Quail Networks Object Broker', 'netops-broker': 'NETOPS-BROKER', 'fcp-addr-srvr1': 'fcp-addr-srvr1', 'fcp-addr-srvr2': 'fcp-addr-srvr2', 'fcp-srvr-inst1': 'fcp-srvr-inst1', 'fcp-srvr-inst2': 'fcp-srvr-inst2', 'fcp-cics-gw1': 'fcp-cics-gw1', 'checkoutdb': 'Checkout Database', 'amc': 'Amcom Mobile Connect', 'sgi-eventmond': 'SGI Eventmond Port', 'sgi-esphttp': 'SGI ESP HTTP', 'personal-agent': 'Personal Agent', 'freeciv': 'Freeciv gameplay', 'farenet': 'Sandlab FARENET', 'westec-connect': 'Westec Connect', 'm-oap': 'Multicast Object Access Protocol', 'sdt': 'Session Data Transport Multicast', 'rdmnet-ctrl': 'PLASA E1.33, Remote Device Management (RDM) controller status notifications', 'sdmmp': 'SAS Domain Management Messaging Protocol', 'lsi-bobcat': 'SAS IO Forwarding', 'ora-oap': 'Oracle Access Protocol', 'fdtracks': 'FleetDisplay Tracking Service', 'tmosms0': 'T-Mobile SMS Protocol Message 0', 'tmosms1': 'T-Mobile SMS Protocol Message 1', 'fac-restore': 'T-Mobile SMS Protocol Message 3', 'tmo-icon-sync': 'T-Mobile SMS Protocol Message 2', 'bis-web': 'BeInSync-Web', 'bis-sync': 'BeInSync-sync', 'ininmessaging': 'inin secure messaging', 'mctfeed': 'MCT Market Data Feed', 'esinstall': 'Enterprise Security Remote Install', 'esmmanager': 'Enterprise Security Manager', 'esmagent': 'Enterprise Security Agent', 'a1-msc': 'A1-MSC', 'a1-bs': 'A1-BS', 'a3-sdunode': 'A3-SDUNode', 'a4-sdunode': 'A4-SDUNode', 'ninaf': 'Node Initiated Network Association Forma', 'htrust': 'HTrust API', 'symantec-sfdb': 'Symantec Storage Foundation for Database', 'precise-comm': 'PreciseCommunication', 'pcanywheredata': 'pcANYWHEREdata', 'pcanywherestat': 'pcANYWHEREstat', 'beorl': 'BE Operations Request Listener', 'xprtld': 'SF Message Service', 'sfmsso': 'SFM Authentication Subsystem', 'sfm-db-server': 'SFMdb - SFM DB server', 'cssc': 'Symantec CSSC', 'flcrs': 'Symantec Fingerprint Lookup and Container Reference Service', 'ics': 'Symantec Integrity Checking Service', 'vfmobile': 'Ventureforth Mobile', 'amqps': 'amqp protocol over TLS/SSL', 'amqp': 'AMQP', 'jms': 'JACL Message Server', 'hyperscsi-port': 'HyperSCSI Port', 'v5ua': 'V5UA application port', 'raadmin': 'RA Administration', 'questdb2-lnchr': 'Quest Central DB2 Launchr', 'rrac': 'Remote Replication Agent Connection', 'dccm': 'Direct Cable Connect Manager', 'auriga-router': 'Auriga Router Service', 'ncxcp': 'Net-coneX Control Protocol', 'ggz': 'GGZ Gaming Zone', 'qmvideo': 'QM video network management protocol', 'rbsystem': 'Robert Bosch Data Transfer', 'kmip': 'Key Management Interoperability Protocol', 'proshareaudio': 'proshare conf audio', 'prosharevideo': 'proshare conf video', 'prosharedata': 'proshare conf data', 'prosharerequest': 'proshare conf request', 'prosharenotify': 'proshare conf notify', 'dpm': 'DPM Communication Server', 'dpm-agent': 'DPM Agent Coordinator', 'ms-licensing': 'MS-Licensing', 'dtpt': 'Desktop Passthru Service', 'msdfsr': 'Microsoft DFS Replication Service', 'omhs': 'Operations Manager - Health Service', 'omsdk': 'Operations Manager - SDK Service', 'ms-ilm': 'Microsoft Identity Lifecycle Manager', 'ms-ilm-sts': 'Microsoft Lifecycle Manager Secure Token Service', 'asgenf': 'ASG Event Notification Framework', 'io-dist-data': 'Dist. I/O Comm. Service Data and Control', 'openmail': 'Openmail User Agent Layer', 'unieng': "Steltor's calendar access", 'ida-discover1': 'IDA Discover Port 1', 'ida-discover2': 'IDA Discover Port 2', 'watchdoc-pod': 'Watchdoc NetPOD Protocol', 'watchdoc': 'Watchdoc Server', 'fcopy-server': 'fcopy-server', 'fcopys-server': 'fcopys-server', 'tunatic': 'Wildbits Tunatic', 'tunalyzer': 'Wildbits Tunalyzer', 'rscd': 'Bladelogic Agent Service', 'openmailg': 'OpenMail Desk Gateway server', 'x500ms': 'OpenMail X.500 Directory Server', 'openmailns': 'OpenMail NewMail Server', 's-openmail': 'OpenMail Suer Agent Layer (Secure)', 'openmailpxy': 'OpenMail CMTS Server', 'spramsca': 'x509solutions Internal CA', 'spramsd': 'x509solutions Secure Data', 'netagent': 'NetAgent', 'dali-port': 'DALI Port', 'vts-rpc': 'Visual Tag System RPC', '3par-evts': '3PAR Event Reporting Service', '3par-mgmt': '3PAR Management Service', '3par-mgmt-ssl': '3PAR Management Service with SSL', '3par-rcopy': '3PAR Inform Remote Copy', 'xtreamx': 'XtreamX Supervised Peer message', 'icmpd': 'ICMPD', 'spt-automation': 'Support Automation', 'reversion': 'Reversion Backup/Restore', 'wherehoo': 'WHEREHOO', 'ppsuitemsg': 'PlanetPress Suite Messeng', 'diameters': 'Diameter over TLS/TCP', 'jute': 'Javascript Unit Test Environment', 'rfb': 'Remote Framebuffer', 'cm': 'Context Management', 'cpdlc': 'Controller Pilot Data Link Communication', 'fis': 'Flight Information Services', 'ads-c': 'Automatic Dependent Surveillance', 'indy': 'Indy Application Server', 'mppolicy-v5': 'mppolicy-v5', 'mppolicy-mgr': 'mppolicy-mgr', 'couchdb': 'CouchDB', 'wsman': 'WBEM WS-Management HTTP', 'wsmans': 'WBEM WS-Management HTTP over TLS/SSL', 'wbem-rmi': 'WBEM RMI', 'wbem-http': 'WBEM CIM-XML (HTTP)', 'wbem-https': 'WBEM CIM-XML (HTTPS)', 'wbem-exp-https': 'WBEM Export HTTPS', 'nuxsl': 'NUXSL', 'consul-insight': 'Consul InSight Security', 'cvsup': 'CVSup', 'x11': 'X Window System', 'ndl-ahp-svc': 'NDL-AHP-SVC', 'winpharaoh': 'WinPharaoh', 'ewctsp': 'EWCTSP', 'gsmp-ancp': 'GSMP/ANCP', 'trip': 'TRIP', 'messageasap': 'Messageasap', 'ssdtp': 'SSDTP', 'diagnose-proc': 'DIAGNOSE-PROC', 'directplay8': 'DirectPlay8', 'max': 'Microsoft Max', 'dpm-acm': 'Microsoft DPM Access Control Manager', 'msft-dpm-cert': 'Microsoft DPM WCF Certificates', 'p2p-sip': 'Peer to Peer Infrastructure Protocol', 'konspire2b': 'konspire2b p2p network', 'pdtp': 'PDTP P2P', 'ldss': 'Local Download Sharing Service', 'doglms': 'SuperDog License Manager', 'raxa-mgmt': 'RAXA Management', 'synchronet-db': 'SynchroNet-db', 'synchronet-rtc': 'SynchroNet-rtc', 'synchronet-upd': 'SynchroNet-upd', 'rets': 'RETS', 'dbdb': 'DBDB', 'primaserver': 'Prima Server', 'mpsserver': 'MPS Server', 'etc-control': 'ETC Control', 'sercomm-scadmin': 'Sercomm-SCAdmin', 'globecast-id': 'GLOBECAST-ID', 'softcm': 'HP SoftBench CM', 'spc': 'HP SoftBench Sub-Process Control', 'dtspcd': 'Desk-Top Sub-Process Control Daemon', 'dayliteserver': 'Daylite Server', 'wrspice': 'WRspice IPC Service', 'xic': 'Xic IPC Service', 'xtlserv': 'XicTools License Manager Service', 'daylitetouch': 'Daylite Touch Sync', 'spdy': 'SPDY for a faster web', 'bex-webadmin': 'Backup Express Web Server', 'backup-express': 'Backup Express', 'pnbs': 'Phlexible Network Backup Service', 'nbt-wol': 'New Boundary Tech WOL', 'pulsonixnls': 'Pulsonix Network License Service', 'meta-corp': 'Meta Corporation License Manager', 'aspentec-lm': 'Aspen Technology License Manager', 'watershed-lm': 'Watershed License Manager', 'statsci1-lm': 'StatSci License Manager - 1', 'statsci2-lm': 'StatSci License Manager - 2', 'lonewolf-lm': 'Lone Wolf Systems License Manager', 'montage-lm': 'Montage License Manager', 'ricardo-lm': 'Ricardo North America License Manager', 'tal-pod': 'tal-pod', 'efb-aci': 'EFB Application Control Interface', 'ecmp': 'Emerson Extensible Control and Management Protocol', 'patrol-ism': 'PATROL Internet Srv Mgr', 'patrol-coll': 'PATROL Collector', 'pscribe': 'Precision Scribe Cnx Port', 'lm-x': 'LM-X License Manager by X-Formation', 'radmind': 'Radmind Access Protocol', 'jeol-nsdtp-1': 'JEOL Network Services Data Transport Protocol 1', 'jeol-nsdtp-2': 'JEOL Network Services Data Transport Protocol 2', 'jeol-nsdtp-3': 'JEOL Network Services Data Transport Protocol 3', 'jeol-nsdtp-4': 'JEOL Network Services Data Transport Protocol 4', 'tl1-raw-ssl': 'TL1 Raw Over SSL/TLS', 'tl1-ssh': 'TL1 over SSH', 'crip': 'CRIP', 'gld': 'GridLAB-D User Interface', 'grid': 'Grid Authentication', 'grid-alt': 'Grid Authentication Alt', 'bmc-grx': 'BMC GRX', 'bmc-ctd-ldap': 'BMC CONTROL-D LDAP SERVER\nIANA assigned this well-formed service name as a replacement for "bmc_ctd_ldap".', 'bmc_ctd_ldap': 'BMC CONTROL-D LDAP SERVER', 'ufmp': 'Unified Fabric Management Protocol', 'scup': 'Sensor Control Unit Protocol', 'abb-escp': 'Ethernet Sensor Communications Protocol', 'repsvc': 'Double-Take Replication Service', 'emp-server1': 'Empress Software Connectivity Server 1', 'emp-server2': 'Empress Software Connectivity Server 2', 'hrd-ncs': 'HR Device Network Configuration Service', 'dt-mgmtsvc': 'Double-Take Management Service', 'sflow': 'sFlow traffic monitoring', 'gnutella-svc': 'gnutella-svc', 'gnutella-rtr': 'gnutella-rtr', 'adap': 'App Discovery and Access Protocol', 'pmcs': 'PMCS applications', 'metaedit-mu': 'MetaEdit+ Multi-User', 'metaedit-se': 'MetaEdit+ Server Administration', 'metatude-mds': 'Metatude Dialogue Server', 'clariion-evr01': 'clariion-evr01', 'metaedit-ws': 'MetaEdit+ WebService API', 'faxcomservice': 'Faxcom Message Service', 'syserverremote': 'SYserver remote commands', 'svdrp': 'Simple VDR Protocol', 'nim-vdrshell': 'NIM_VDRShell', 'nim-wan': 'NIM_WAN', 'pgbouncer': 'PgBouncer', 'sun-sr-https': 'Service Registry Default HTTPS Domain', 'sge-qmaster': 'Grid Engine Qmaster Service\nIANA assigned this well-formed service name as a replacement for "sge_qmaster".', 'sge_qmaster': 'Grid Engine Qmaster Service', 'sge-execd': 'Grid Engine Execution Service\nIANA assigned this well-formed service name as a replacement for "sge_execd".', 'sge_execd': 'Grid Engine Execution Service', 'mysql-proxy': 'MySQL Proxy', 'skip-cert-recv': 'SKIP Certificate Receive', 'skip-cert-send': 'SKIP Certificate Send', 'lvision-lm': 'LVision License Manager', 'sun-sr-http': 'Service Registry Default HTTP Domain', 'servicetags': 'Service Tags', 'ldoms-mgmt': 'Logical Domains Management Interface', 'SunVTS-RMI': 'SunVTS RMI', 'sun-sr-jms': 'Service Registry Default JMS Domain', 'sun-sr-iiop': 'Service Registry Default IIOP Domain', 'sun-sr-iiops': 'Service Registry Default IIOPS Domain', 'sun-sr-iiop-aut': 'Service Registry Default IIOPAuth Domain', 'sun-sr-jmx': 'Service Registry Default JMX Domain', 'sun-sr-admin': 'Service Registry Default Admin Domain', 'boks': 'BoKS Master', 'boks-servc': 'BoKS Servc\nIANA assigned this well-formed service name as a replacement for "boks_servc".', 'boks_servc': 'BoKS Servc', 'boks-servm': 'BoKS Servm\nIANA assigned this well-formed service name as a replacement for "boks_servm".', 'boks_servm': 'BoKS Servm', 'boks-clntd': 'BoKS Clntd\nIANA assigned this well-formed service name as a replacement for "boks_clntd".', 'boks_clntd': 'BoKS Clntd', 'badm-priv': 'BoKS Admin Private Port\nIANA assigned this well-formed service name as a replacement for "badm_priv".', 'badm_priv': 'BoKS Admin Private Port', 'badm-pub': 'BoKS Admin Public Port\nIANA assigned this well-formed service name as a replacement for "badm_pub".', 'badm_pub': 'BoKS Admin Public Port', 'bdir-priv': 'BoKS Dir Server, Private Port\nIANA assigned this well-formed service name as a replacement for "bdir_priv".', 'bdir_priv': 'BoKS Dir Server, Private Port', 'bdir-pub': 'BoKS Dir Server, Public Port\nIANA assigned this well-formed service name as a replacement for "bdir_pub".', 'bdir_pub': 'BoKS Dir Server, Public Port', 'mgcs-mfp-port': 'MGCS-MFP Port', 'mcer-port': 'MCER Port', 'netconf-tls': 'NETCONF over TLS', 'syslog-tls': 'Syslog over TLS', 'elipse-rec': 'Elipse RPC Protocol', 'lds-distrib': 'lds_distrib', 'lds-dump': 'LDS Dump Service', 'apc-6547': 'APC 6547', 'apc-6548': 'APC 6548', 'apc-6549': 'APC 6549', 'fg-sysupdate': 'fg-sysupdate', 'sum': 'Software Update Manager', 'xdsxdm': '', 'sane-port': 'SANE Control Port', 'canit-store': 'CanIt Storage Manager\nIANA assigned this well-formed service name as a replacement for "canit_store".', 'canit_store': 'CanIt Storage Manager', 'affiliate': 'Affiliate', 'parsec-master': 'Parsec Masterserver', 'parsec-peer': 'Parsec Peer-to-Peer', 'parsec-game': 'Parsec Gameserver', 'joaJewelSuite': 'JOA Jewel Suite', 'mshvlm': 'Microsoft Hyper-V Live Migration', 'mstmg-sstp': 'Microsoft Threat Management Gateway SSTP', 'wsscomfrmwk': 'Windows WSS Communication Framework', 'odette-ftps': 'ODETTE-FTP over TLS/SSL', 'kftp-data': 'Kerberos V5 FTP Data', 'kftp': 'Kerberos V5 FTP Control', 'mcftp': 'Multicast FTP', 'ktelnet': 'Kerberos V5 Telnet', 'datascaler-db': 'DataScaler database', 'datascaler-ctl': 'DataScaler control', 'wago-service': 'WAGO Service and Update', 'nexgen': 'Allied Electronics NeXGen', 'afesc-mc': 'AFE Stock Channel M/C', 'mxodbc-connect': 'eGenix mxODBC Connect', 'pcs-sf-ui-man': 'PC SOFT - Software factory UI/manager', 'emgmsg': 'Emergency Message Control Service', 'ircu': 'IRCU', 'vocaltec-gold': 'Vocaltec Global Online Directory', 'p4p-portal': 'P4P Portal Service', 'vision-server': 'vision_server\nIANA assigned this well-formed service name as a replacement for "vision_server".', 'vision_server': 'vision_server', 'vision-elmd': 'vision_elmd\nIANA assigned this well-formed service name as a replacement for "vision_elmd".', 'vision_elmd': 'vision_elmd', 'vfbp': 'Viscount Freedom Bridge Protocol', 'osaut': 'Osorno Automation', 'clever-ctrace': 'CleverView for cTrace Message Service', 'clever-tcpip': 'CleverView for TCP/IP Message Service', 'tsa': 'Tofino Security Appliance', 'kti-icad-srvr': 'KTI/ICAD Nameserver', 'e-design-net': 'e-Design network', 'e-design-web': 'e-Design web', 'ibprotocol': 'Internet Backplane Protocol', 'fibotrader-com': 'Fibotrader Communications', 'bmc-perf-agent': 'BMC PERFORM AGENT', 'bmc-perf-mgrd': 'BMC PERFORM MGRD', 'adi-gxp-srvprt': 'ADInstruments GxP Server', 'plysrv-http': 'PolyServe http', 'plysrv-https': 'PolyServe https', 'dgpf-exchg': 'DGPF Individual Exchange', 'smc-jmx': 'Sun Java Web Console JMX', 'smc-admin': 'Sun Web Console Admin', 'smc-http': 'SMC-HTTP', 'smc-https': 'SMC-HTTPS', 'hnmp': 'HNMP', 'hnm': 'Halcyon Network Manager', 'acnet': 'ACNET Control System Protocol', 'pentbox-sim': 'PenTBox Secure IM Protocol', 'ambit-lm': 'ambit-lm', 'netmo-default': 'Netmo Default', 'netmo-http': 'Netmo HTTP', 'iccrushmore': 'ICCRUSHMORE', 'acctopus-cc': 'Acctopus Command Channel', 'muse': 'MUSE', 'jetstream': 'Novell Jetstream messaging protocol', 'ethoscan': 'EthoScan Service', 'xsmsvc': 'XenSource Management Service', 'bioserver': 'Biometrics Server', 'otlp': 'OTLP', 'jmact3': 'JMACT3', 'jmevt2': 'jmevt2', 'swismgr1': 'swismgr1', 'swismgr2': 'swismgr2', 'swistrap': 'swistrap', 'swispol': 'swispol', 'acmsoda': 'acmsoda', 'MobilitySrv': 'Mobility XE Protocol', 'iatp-highpri': 'IATP-highPri', 'iatp-normalpri': 'IATP-normalPri', 'afs3-fileserver': 'file server itself', 'afs3-callback': 'callbacks to cache managers', 'afs3-prserver': 'users & groups database', 'afs3-vlserver': 'volume location database', 'afs3-kaserver': 'AFS/Kerberos authentication service', 'afs3-volser': 'volume managment server', 'afs3-errors': 'error interpretation service', 'afs3-bos': 'basic overseer process', 'afs3-update': 'server-to-server updater', 'afs3-rmtsys': 'remote cache manager service', 'ups-onlinet': 'onlinet uninterruptable power supplies', 'talon-disc': 'Talon Discovery Port', 'talon-engine': 'Talon Engine', 'microtalon-dis': 'Microtalon Discovery', 'microtalon-com': 'Microtalon Communications', 'talon-webserver': 'Talon Webserver', 'fisa-svc': 'FISA Service', 'doceri-ctl': 'doceri drawing service control', 'dpserve': 'DP Serve', 'dpserveadmin': 'DP Serve Admin', 'ctdp': 'CT Discovery Protocol', 'ct2nmcs': 'Comtech T2 NMCS', 'vmsvc': 'Vormetric service', 'vmsvc-2': 'Vormetric Service II', 'op-probe': 'ObjectPlanet probe', 'arcp': 'ARCP', 'iwg1': 'IWGADTS Aircraft Housekeeping Message', 'empowerid': 'EmpowerID Communication', 'lazy-ptop': 'lazy-ptop', 'font-service': 'X Font Service', 'elcn': 'Embedded Light Control Network', 'virprot-lm': 'Virtual Prototypes License Manager', 'scenidm': 'intelligent data manager', 'scenccs': 'Catalog Content Search', 'cabsm-comm': 'CA BSM Comm', 'caistoragemgr': 'CA Storage Manager', 'cacsambroker': 'CA Connection Broker', 'fsr': 'File System Repository Agent', 'doc-server': 'Document WCF Server', 'aruba-server': 'Aruba eDiscovery Server', 'casrmagent': 'CA SRM Agent', 'cnckadserver': 'cncKadServer DB & Inventory Services', 'ccag-pib': 'Consequor Consulting Process Integration Bridge', 'nsrp': 'Adaptive Name/Service Resolution', 'drm-production': 'Discovery and Retention Mgt Production', 'zsecure': 'zSecure Server', 'clutild': 'Clutild', 'fodms': 'FODMS FLIP', 'dlip': 'DLIP', 'ramp': 'Registry A & M Protocol', 'citrixupp': 'Citrix Universal Printing Port', 'citrixuppg': 'Citrix UPP Gateway', 'display': 'Wi-Fi Alliance Wi-Fi Display Protocol', 'pads': 'PADS (Public Area Display System) Server', 'cnap': 'Calypso Network Access Protocol', 'watchme-7272': 'WatchMe Monitoring 7272', 'oma-rlp': 'OMA Roaming Location', 'oma-rlp-s': 'OMA Roaming Location SEC', 'oma-ulp': 'OMA UserPlane Location', 'oma-ilp': 'OMA Internal Location Protocol', 'oma-ilp-s': 'OMA Internal Location Secure Protocol', 'oma-dcdocbs': 'OMA Dynamic Content Delivery over CBS', 'ctxlic': 'Citrix Licensing', 'itactionserver1': 'ITACTIONSERVER 1', 'itactionserver2': 'ITACTIONSERVER 2', 'mzca-action': 'eventACTION/ussACTION (MZCA) server', 'genstat': 'General Statistics Rendezvous Protocol', 'lcm-server': 'LifeKeeper Communications', 'mindfilesys': 'mind-file system server', 'mrssrendezvous': 'mrss-rendezvous server', 'nfoldman': 'nFoldMan Remote Publish', 'fse': 'File system export of backup images', 'winqedit': 'winqedit', 'hexarc': 'Hexarc Command Language', 'rtps-discovery': 'RTPS Discovery', 'rtps-dd-ut': 'RTPS Data-Distribution User-Traffic', 'rtps-dd-mt': 'RTPS Data-Distribution Meta-Traffic', 'ionixnetmon': 'Ionix Network Monitor', 'mtportmon': 'Matisse Port Monitor', 'pmdmgr': 'OpenView DM Postmaster Manager', 'oveadmgr': 'OpenView DM Event Agent Manager', 'ovladmgr': 'OpenView DM Log Agent Manager', 'opi-sock': 'OpenView DM rqt communication', 'xmpv7': 'OpenView DM xmpv7 api pipe', 'pmd': 'OpenView DM ovc/xmpv3 api pipe', 'faximum': 'Faximum', 'oracleas-https': 'Oracle Application Server HTTPS', 'rise': 'Rise: The Vieneo Province', 'telops-lmd': 'telops-lmd', 'silhouette': 'Silhouette User', 'ovbus': 'HP OpenView Bus Daemon', 'adcp': 'Automation Device Configuration Protocol', 'acplt': 'ACPLT - process automation service', 'ovhpas': 'HP OpenView Application Server', 'pafec-lm': 'pafec-lm', 'saratoga': 'Saratoga Transfer Protocol', 'atul': 'atul server', 'nta-ds': 'FlowAnalyzer DisplayServer', 'nta-us': 'FlowAnalyzer UtilityServer', 'cfs': 'Cisco Fabric service', 'cwmp': 'DSL Forum CWMP', 'tidp': 'Threat Information Distribution Protocol', 'nls-tl': 'Network Layer Signaling Transport Layer', 'sncp': 'Sniffer Command Protocol', 'cfw': 'Control Framework', 'vsi-omega': 'VSI Omega', 'dell-eql-asm': 'Dell EqualLogic Host Group Management', 'aries-kfinder': 'Aries Kfinder', 'sun-lm': 'Sun License Manager', 'indi': 'Instrument Neutral Distributed Interface', 'simco': 'SImple Middlebox COnfiguration (SIMCO) Server', 'soap-http': 'SOAP Service Port', 'zen-pawn': 'Primary Agent Work Notification', 'xdas': 'OpenXDAS Wire Protocol', 'hawk': 'HA Web Konsole', 'tesla-sys-msg': 'TESLA System Messaging', 'pmdfmgt': 'PMDF Management', 'cuseeme': 'bonjour-cuseeme', 'imqstomp': 'iMQ STOMP Server', 'imqstomps': 'iMQ STOMP Server over SSL', 'imqtunnels': 'iMQ SSL tunnel', 'imqtunnel': 'iMQ Tunnel', 'imqbrokerd': 'iMQ Broker Rendezvous', 'sun-user-https': 'Sun App Server - HTTPS', 'pando-pub': 'Pando Media Public Distribution', 'collaber': 'Collaber Network Service', 'klio': 'KLIO communications', 'em7-secom': 'EM7 Secure Communications', 'sync-em7': 'EM7 Dynamic Updates', 'scinet': 'scientia.net', 'medimageportal': 'MedImage Portal', 'nsdeepfreezectl': 'Novell Snap-in Deep Freeze Control', 'nitrogen': 'Nitrogen Service', 'freezexservice': 'FreezeX Console Service', 'trident-data': 'Trident Systems Data', 'smip': 'Smith Protocol over IP', 'aiagent': 'HP Enterprise Discovery Agent', 'scriptview': 'ScriptView Network', 'msss': 'Mugginsoft Script Server Service', 'sstp-1': 'Sakura Script Transfer Protocol', 'raqmon-pdu': 'RAQMON PDU', 'prgp': 'Put/Run/Get Protocol', 'cbt': 'cbt', 'interwise': 'Interwise', 'vstat': 'VSTAT', 'accu-lmgr': 'accu-lmgr', 'minivend': 'MINIVEND', 'popup-reminders': 'Popup Reminders Receive', 'office-tools': 'Office Tools Pro Receive', 'q3ade': 'Q3ADE Cluster Service', 'pnet-conn': 'Propel Connector port', 'pnet-enc': 'Propel Encoder port', 'altbsdp': 'Alternate BSDP Service', 'asr': 'Apple Software Restore', 'ssp-client': 'Secure Server Protocol - client', 'rbt-wanopt': 'Riverbed WAN Optimization Protocol', 'apc-7845': 'APC 7845', 'apc-7846': 'APC 7846', 'mobileanalyzer': 'MobileAnalyzer& MobileMonitor', 'rbt-smc': 'Riverbed Steelhead Mobile Service', 'mdm': 'Mobile Device Management', 'pss': 'Pearson', 'ubroker': 'Universal Broker', 'mevent': 'Multicast Event', 'tnos-sp': 'TNOS Service Protocol', 'tnos-dp': 'TNOS shell Protocol', 'tnos-dps': 'TNOS Secure DiaguardProtocol', 'qo-secure': 'QuickObjects secure port', 't2-drm': 'Tier 2 Data Resource Manager', 't2-brm': 'Tier 2 Business Rules Manager', 'supercell': 'Supercell', 'micromuse-ncps': 'Micromuse-ncps', 'quest-vista': 'Quest Vista', 'sossd-collect': 'Spotlight on SQL Server Desktop Collect', 'sossd-agent': 'Spotlight on SQL Server Desktop Agent', 'pushns': 'PUSH Notification Service', 'irdmi2': 'iRDMI2', 'irdmi': 'iRDMI', 'vcom-tunnel': 'VCOM Tunnel', 'teradataordbms': 'Teradata ORDBMS', 'mcreport': 'Mulberry Connect Reporting Service', 'mxi': 'MXI Generation II for z/OS', 'http-alt': 'HTTP Alternate', 'qbdb': 'QB DB Dynamic Port', 'intu-ec-svcdisc': 'Intuit Entitlement Service and Discovery', 'intu-ec-client': 'Intuit Entitlement Client', 'oa-system': 'oa-system', 'ca-audit-da': 'CA Audit Distribution Agent', 'ca-audit-ds': 'CA Audit Distribution Server', 'pro-ed': 'ProEd', 'mindprint': 'MindPrint', 'vantronix-mgmt': '.vantronix Management', 'ampify': 'Ampify Messaging Protocol', 'fs-agent': 'FireScope Agent', 'fs-server': 'FireScope Server', 'fs-mgmt': 'FireScope Management Interface', 'rocrail': 'Rocrail Client Service', 'senomix01': 'Senomix Timesheets Server', 'senomix02': 'Senomix Timesheets Client [1 year assignment]', 'senomix03': 'Senomix Timesheets Server [1 year assignment]', 'senomix04': 'Senomix Timesheets Server [1 year assignment]', 'senomix05': 'Senomix Timesheets Server [1 year assignment]', 'senomix06': 'Senomix Timesheets Client [1 year assignment]', 'senomix07': 'Senomix Timesheets Client [1 year assignment]', 'senomix08': 'Senomix Timesheets Client [1 year assignment]', 'gadugadu': 'Gadu-Gadu', 'http-alt': 'HTTP Alternate (see port 80)', 'sunproxyadmin': 'Sun Proxy Admin Service', 'us-cli': 'Utilistor (Client)', 'us-srv': 'Utilistor (Server)', 'd-s-n': 'Distributed SCADA Networking Rendezvous Port', 'simplifymedia': 'Simplify Media SPP Protocol', 'radan-http': 'Radan HTTP', 'jamlink': 'Jam Link Framework', 'sac': 'SAC Port Id', 'xprint-server': 'Xprint Server', 'ldoms-migr': 'Logical Domains Migration', 'mtl8000-matrix': 'MTL8000 Matrix', 'cp-cluster': 'Check Point Clustering', 'privoxy': 'Privoxy HTTP proxy', 'apollo-data': 'Apollo Data Port', 'apollo-admin': 'Apollo Admin Port', 'paycash-online': 'PayCash Online Protocol', 'paycash-wbp': 'PayCash Wallet-Browser', 'indigo-vrmi': 'INDIGO-VRMI', 'indigo-vbcp': 'INDIGO-VBCP', 'dbabble': 'dbabble', 'isdd': 'i-SDD file transfer', 'patrol': 'Patrol', 'patrol-snmp': 'Patrol SNMP', 'intermapper': 'Intermapper network management system', 'vmware-fdm': 'VMware Fault Domain Manager', 'proremote': 'ProRemote', 'itach': 'Remote iTach Connection', 'spytechphone': 'SpyTech Phone Service', 'blp1': 'Bloomberg data API', 'blp2': 'Bloomberg feed', 'vvr-data': 'VVR DATA', 'trivnet1': 'TRIVNET', 'trivnet2': 'TRIVNET', 'lm-perfworks': 'LM Perfworks', 'lm-instmgr': 'LM Instmgr', 'lm-dta': 'LM Dta', 'lm-sserver': 'LM SServer', 'lm-webwatcher': 'LM Webwatcher', 'rexecj': 'RexecJ Server', 'synapse-nhttps': 'Synapse Non Blocking HTTPS', 'pando-sec': 'Pando Media Controlled Distribution', 'synapse-nhttp': 'Synapse Non Blocking HTTP', 'blp3': 'Bloomberg professional', 'hiperscan-id': 'Hiperscan Identification Service', 'blp4': 'Bloomberg intelligent client', 'tmi': 'Transport Management Interface', 'amberon': 'Amberon PPC/PPS', 'hub-open-net': 'Hub Open Network', 'tnp-discover': 'Thin(ium) Network Protocol', 'tnp': 'Thin(ium) Network Protocol', 'server-find': 'Server Find', 'cruise-enum': 'Cruise ENUM', 'cruise-swroute': 'Cruise SWROUTE', 'cruise-config': 'Cruise CONFIG', 'cruise-diags': 'Cruise DIAGS', 'cruise-update': 'Cruise UPDATE', 'm2mservices': 'M2m Services', 'cvd': 'cvd', 'sabarsd': 'sabarsd', 'abarsd': 'abarsd', 'admind': 'admind', 'svcloud': 'SuperVault Cloud', 'svbackup': 'SuperVault Backup', 'espeech': 'eSpeech Session Protocol', 'espeech-rtp': 'eSpeech RTP Protocol', 'cybro-a-bus': 'CyBro A-bus Protocol', 'pcsync-https': 'PCsync HTTPS', 'pcsync-http': 'PCsync HTTP', 'npmp': 'npmp', 'cisco-avp': 'Cisco Address Validation Protocol', 'pim-port': 'PIM over Reliable Transport', 'otv': 'Overlay Transport Virtualization (OTV)', 'vp2p': 'Virtual Point to Point', 'noteshare': 'AquaMinds NoteShare', 'fmtp': 'Flight Message Transfer Protocol', 'cmtp-mgt': 'CYTEL Message Transfer Management', 'rtsp-alt': 'RTSP Alternate (see port 554)', 'd-fence': 'SYMAX D-FENCE', 'oap-admin': 'Object Access Protocol Administration', 'asterix': 'Surveillance Data', 'canon-mfnp': 'Canon MFNP Service', 'canon-bjnp1': 'Canon BJNP Port 1', 'canon-bjnp2': 'Canon BJNP Port 2', 'canon-bjnp3': 'Canon BJNP Port 3', 'canon-bjnp4': 'Canon BJNP Port 4', 'imink': 'Imink Service Control', 'msi-cps-rm': 'Motorola Solutions Customer Programming Software for Radio Management', 'sun-as-jmxrmi': 'Sun App Server - JMX/RMI', 'vnyx': 'VNYX Primary Port', 'ibus': 'iBus', 'mc-appserver': 'MC-APPSERVER', 'openqueue': 'OPENQUEUE', 'ultraseek-http': 'Ultraseek HTTP', 'dpap': 'Digital Photo Access Protocol (iPhoto)', 'msgclnt': 'Message Client', 'msgsrvr': 'Message Server', 'acd-pm': 'Accedian Performance Measurement', 'sunwebadmin': 'Sun Web Server Admin Service', 'truecm': 'truecm', 'dxspider': 'dxspider linking protocol', 'cddbp-alt': 'CDDBP', 'galaxy4d': 'Galaxy4D Online Game Engine', 'secure-mqtt': 'Secure MQTT', 'ddi-tcp-1': 'NewsEDGE server TCP (TCP 1)', 'ddi-tcp-2': 'Desktop Data TCP 1', 'ddi-tcp-3': 'Desktop Data TCP 2', 'ddi-tcp-4': 'Desktop Data TCP 3: NESS application', 'ddi-tcp-5': 'Desktop Data TCP 4: FARM product', 'ddi-tcp-6': 'Desktop Data TCP 5: NewsEDGE/Web application', 'ddi-tcp-7': 'Desktop Data TCP 6: COAL application', 'ospf-lite': 'ospf-lite', 'jmb-cds1': 'JMB-CDS 1', 'jmb-cds2': 'JMB-CDS 2', 'manyone-http': 'manyone-http', 'manyone-xml': 'manyone-xml', 'wcbackup': 'Windows Client Backup', 'dragonfly': 'Dragonfly System Service', 'twds': 'Transaction Warehouse Data Service', 'ub-dns-control': 'unbound dns nameserver control', 'cumulus-admin': 'Cumulus Admin Port', 'sunwebadmins': 'Sun Web Server SSL Admin Service', 'http-wmap': 'webmail HTTP service', 'https-wmap': 'webmail HTTPS service', 'bctp': 'Brodos Crypto Trade Protocol', 'cslistener': 'CSlistener', 'etlservicemgr': 'ETL Service Manager', 'dynamid': 'DynamID authentication', 'ogs-server': 'Open Grid Services Server', 'pichat': 'Pichat Server', 'sdr': 'Secure Data Replicator Protocol', 'tambora': 'TAMBORA', 'panagolin-ident': 'Pangolin Identification', 'paragent': 'PrivateArk Remote Agent', 'swa-1': 'Secure Web Access - 1', 'swa-2': 'Secure Web Access - 2', 'swa-3': 'Secure Web Access - 3', 'swa-4': 'Secure Web Access - 4', 'versiera': 'Versiera Agent Listener', 'fio-cmgmt': 'Fusion-io Central Manager Service', 'glrpc': 'Groove GLRPC', 'emc-pp-mgmtsvc': 'EMC PowerPath Mgmt Service', 'aurora': 'IBM AURORA Performance Visualizer', 'ibm-rsyscon': 'IBM Remote System Console', 'net2display': 'Vesa Net2Display', 'classic': 'Classic Data Server', 'sqlexec': 'IBM Informix SQL Interface', 'sqlexec-ssl': 'IBM Informix SQL Interface - Encrypted', 'websm': 'WebSM', 'xmltec-xmlmail': 'xmltec-xmlmail', 'XmlIpcRegSvc': 'Xml-Ipc Server Reg', 'copycat': 'Copycat database replication service', 'hp-pdl-datastr': 'PDL Data Streaming Port', 'pdl-datastream': 'Printer PDL Data Stream', 'bacula-dir': 'Bacula Director', 'bacula-fd': 'Bacula File Daemon', 'bacula-sd': 'Bacula Storage Daemon', 'peerwire': 'PeerWire', 'xadmin': 'Xadmin Control Service', 'astergate': 'Astergate Control Service', 'astergatefax': 'AstergateFax Control Service', 'mxit': 'MXit Instant Messaging', 'dddp': 'Dynamic Device Discovery', 'apani1': 'apani1', 'apani2': 'apani2', 'apani3': 'apani3', 'apani4': 'apani4', 'apani5': 'apani5', 'sun-as-jpda': 'Sun AppSvr JPDA', 'wap-wsp': 'WAP connectionless session service', 'wap-wsp-wtp': 'WAP session service', 'wap-wsp-s': 'WAP secure connectionless session service', 'wap-wsp-wtp-s': 'WAP secure session service', 'wap-vcard': 'WAP vCard', 'wap-vcal': 'WAP vCal', 'wap-vcard-s': 'WAP vCard Secure', 'wap-vcal-s': 'WAP vCal Secure', 'rjcdb-vcards': 'rjcdb vCard', 'almobile-system': 'ALMobile System Service', 'oma-mlp': 'OMA Mobile Location Protocol', 'oma-mlp-s': 'OMA Mobile Location Protocol Secure', 'serverviewdbms': 'Server View dbms access', 'serverstart': 'ServerStart RemoteControl', 'ipdcesgbs': 'IPDC ESG BootstrapService', 'insis': 'Integrated Setup and Install Service', 'acme': 'Aionex Communication Management Engine', 'fsc-port': 'FSC Communication Port', 'teamcoherence': 'QSC Team Coherence', 'mon': 'Manager On Network', 'pegasus': 'Pegasus GPS Platform', 'pegasus-ctl': 'Pegaus GPS System Control Interface', 'pgps': 'Predicted GPS', 'swtp-port1': 'SofaWare transport port 1', 'swtp-port2': 'SofaWare transport port 2', 'callwaveiam': 'CallWaveIAM', 'visd': 'VERITAS Information Serve', 'n2h2server': 'N2H2 Filter Service Port', 'cumulus': 'Cumulus', 'armtechdaemon': 'ArmTech Daemon', 'storview': 'StorView Client', 'armcenterhttp': 'ARMCenter http Service', 'armcenterhttps': 'ARMCenter https Service', 'vrace': 'Virtual Racing Service', 'sphinxql': 'Sphinx search server (MySQL listener)', 'sphinxapi': 'Sphinx search server', 'secure-ts': 'PKIX TimeStamp over TLS', 'guibase': 'guibase', 'mpidcmgr': 'MpIdcMgr', 'mphlpdmc': 'Mphlpdmc', 'ctechlicensing': 'C Tech Licensing', 'fjdmimgr': 'fjdmimgr', 'boxp': 'Brivs! Open Extensible Protocol', 'd2dconfig': 'D2D Configuration Service', 'd2ddatatrans': 'D2D Data Transfer Service', 'adws': 'Active Directory Web Services', 'otp': 'OpenVAS Transfer Protocol', 'fjinvmgr': 'fjinvmgr', 'mpidcagt': 'MpIdcAgt', 'sec-t4net-srv': 'Samsung Twain for Network Server', 'sec-t4net-clt': 'Samsung Twain for Network Client', 'sec-pc2fax-srv': 'Samsung PC2FAX for Network Server', 'git': 'git pack transfer service', 'tungsten-https': 'WSO2 Tungsten HTTPS', 'wso2esb-console': 'WSO2 ESB Administration Console HTTPS', 'mindarray-ca': 'MindArray Systems Console Agent', 'sntlkeyssrvr': 'Sentinel Keys Server', 'ismserver': 'ismserver', 'mngsuite': 'Management Suite Remote Control', 'laes-bf': 'Surveillance buffering function', 'trispen-sra': 'Trispen Secure Remote Access', 'ldgateway': 'LANDesk Gateway', 'cba8': 'LANDesk Management Agent (cba8)', 'msgsys': 'Message System', 'pds': 'Ping Discovery Service', 'mercury-disc': 'Mercury Discovery', 'pd-admin': 'PD Administration', 'vscp': 'Very Simple Ctrl Protocol', 'robix': 'Robix', 'micromuse-ncpw': 'MICROMUSE-NCPW', 'streamcomm-ds': 'StreamComm User Directory', 'iadt-tls': 'iADT Protocol over TLS', 'erunbook-agent': 'eRunbook Agent\nIANA assigned this well-formed service name as a replacement for "erunbook_agent".', 'erunbook_agent': 'eRunbook Agent', 'erunbook-server': 'eRunbook Server\nIANA assigned this well-formed service name as a replacement for "erunbook_server".', 'erunbook_server': 'eRunbook Server', 'condor': 'Condor Collector Service', 'odbcpathway': 'ODBC Pathway Service', 'uniport': 'UniPort SSO Controller', 'peoctlr': 'Peovica Controller', 'peocoll': 'Peovica Collector', 'pqsflows': 'ProQueSys Flows Service', 'xmms2': 'Cross-platform Music Multiplexing System', 'tec5-sdctp': 'tec5 Spectral Device Control Protocol', 'client-wakeup': 'T-Mobile Client Wakeup Message', 'ccnx': 'Content Centric Networking', 'board-roar': 'Board M.I.T. Service', 'l5nas-parchan': 'L5NAS Parallel Channel', 'board-voip': 'Board M.I.T. Synchronous Collaboration', 'rasadv': 'rasadv', 'tungsten-http': 'WSO2 Tungsten HTTP', 'davsrc': 'WebDav Source Port', 'sstp-2': 'Sakura Script Transfer Protocol-2', 'davsrcs': 'WebDAV Source TLS/SSL', 'sapv1': 'Session Announcement v1', 'sd': 'Session Director', 'cyborg-systems': 'CYBORG Systems', 'gt-proxy': 'Port for Cable network related data proxy or repeater', 'monkeycom': 'MonkeyCom', 'sctp-tunneling': 'SCTP TUNNELING', 'iua': 'IUA', 'domaintime': 'domaintime', 'sype-transport': 'SYPECom Transport Protocol', 'apc-9950': 'APC 9950', 'apc-9951': 'APC 9951', 'apc-9952': 'APC 9952', 'acis': '9953', 'hinp': 'HaloteC Instrument Network Protocol', 'alljoyn-stm': 'Contact Port for AllJoyn standard messaging', 'odnsp': 'OKI Data Network Setting Protocol', 'dsm-scm-target': 'DSM/SCM Target Interface', 'nsesrvr': 'Software Essentials Secure HTTP server', 'osm-appsrvr': 'OSM Applet Server', 'osm-oev': 'OSM Event Server', 'palace-1': 'OnLive-1', 'palace-2': 'OnLive-2', 'palace-3': 'OnLive-3', 'palace-4': 'Palace-4', 'palace-5': 'Palace-5', 'palace-6': 'Palace-6', 'distinct32': 'Distinct32', 'distinct': 'distinct', 'ndmp': 'Network Data Management Protocol', 'scp-config': 'SCP Configuration', 'documentum': 'EMC-Documentum Content Server Product', 'documentum-s': 'EMC-Documentum Content Server Product\nIANA assigned this well-formed service name as a replacement for "documentum_s".', 'documentum_s': 'EMC-Documentum Content Server Product', 'emcrmirccd': 'EMC Replication Manager Client', 'emcrmird': 'EMC Replication Manager Server', 'mvs-capacity': 'MVS Capacity', 'octopus': 'Octopus Multiplexer', 'swdtp-sv': 'Systemwalker Desktop Patrol', 'rxapi': 'ooRexx rxapi services', 'zabbix-agent': 'Zabbix Agent', 'zabbix-trapper': 'Zabbix Trapper', 'qptlmd': 'Quantapoint FLEXlm Licensing Service', 'amanda': 'Amanda', 'famdc': 'FAM Archive Server', 'itap-ddtp': 'VERITAS ITAP DDTP', 'ezmeeting-2': 'eZmeeting', 'ezproxy-2': 'eZproxy', 'ezrelay': 'eZrelay', 'swdtp': 'Systemwalker Desktop Patrol', 'bctp-server': 'VERITAS BCTP, server', 'nmea-0183': 'NMEA-0183 Navigational Data', 'netiq-endpoint': 'NetIQ Endpoint', 'netiq-qcheck': 'NetIQ Qcheck', 'netiq-endpt': 'NetIQ Endpoint', 'netiq-voipa': 'NetIQ VoIP Assessor', 'iqrm': 'NetIQ IQCResource Managament Svc', 'bmc-perf-sd': 'BMC-PERFORM-SERVICE DAEMON', 'bmc-gms': 'BMC General Manager Server', 'qb-db-server': 'QB Database Server', 'snmptls': 'SNMP-TLS', 'snmptls-trap': 'SNMP-Trap-TLS', 'trisoap': 'Trigence AE Soap Service', 'rsms': 'Remote Server Management Service', 'apollo-relay': 'Apollo Relay Port', 'axis-wimp-port': 'Axis WIMP Port', 'blocks': 'Blocks', 'cosir': 'Computer Op System Information Report', 'MOS-lower': 'MOS Media Object Metadata Port', 'MOS-upper': 'MOS Running Order Port', 'MOS-aux': 'MOS Low Priority Port', 'MOS-soap': 'MOS SOAP Default Port', 'MOS-soap-opt': 'MOS SOAP Optional Port', 'printopia': 'Port to allow for administration and control of "Printopia" application software,\n which provides printing services to mobile users', 'gap': 'Gestor de Acaparamiento para Pocket PCs', 'lpdg': 'LUCIA Pareja Data Group', 'nbd': 'Linux Network Block Device', 'helix': 'Helix Client/Server', 'rmiaux': 'Auxiliary RMI Port', 'irisa': 'IRISA', 'metasys': 'Metasys', 'netapp-icmgmt': 'NetApp Intercluster Management', 'netapp-icdata': 'NetApp Intercluster Data', 'sgi-lk': 'SGI LK Licensing service', 'vce': 'Viral Computing Environment (VCE)', 'dicom': 'DICOM', 'suncacao-snmp': 'sun cacao snmp access point', 'suncacao-jmxmp': 'sun cacao JMX-remoting access point', 'suncacao-rmi': 'sun cacao rmi registry access point', 'suncacao-csa': 'sun cacao command-streaming access point', 'suncacao-websvc': 'sun cacao web service access point', 'oemcacao-jmxmp': 'OEM cacao JMX-remoting access point', 't5-straton': 'Straton Runtime Programing', 'oemcacao-rmi': 'OEM cacao rmi registry access point', 'oemcacao-websvc': 'OEM cacao web service access point', 'smsqp': 'smsqp', 'dcsl-backup': 'DCSL Network Backup Services', 'wifree': 'WiFree Service', 'memcache': 'Memory cache service', 'imip': 'IMIP', 'imip-channels': 'IMIP Channels Port', 'arena-server': 'Arena Server Listen', 'atm-uhas': 'ATM UHAS', 'hkp': 'OpenPGP HTTP Keyserver', 'asgcypresstcps': 'ASG Cypress Secure Only', 'tempest-port': 'Tempest Protocol Port', 'h323callsigalt': 'h323 Call Signal Alternate', 'intrepid-ssl': 'Intrepid SSL', 'lanschool': 'LanSchool', 'xoraya': 'X2E Xoraya Multichannel protocol', 'sysinfo-sp': 'SysInfo Service Protocol', 'entextxid': 'IBM Enterprise Extender SNA XID Exchange', 'entextnetwk': 'IBM Enterprise Extender SNA COS Network Priority', 'entexthigh': 'IBM Enterprise Extender SNA COS High Priority', 'entextmed': 'IBM Enterprise Extender SNA COS Medium Priority', 'entextlow': 'IBM Enterprise Extender SNA COS Low Priority', 'dbisamserver1': 'DBISAM Database Server - Regular', 'dbisamserver2': 'DBISAM Database Server - Admin', 'accuracer': 'Accuracer Database System Server', 'accuracer-dbms': 'Accuracer Database System Admin', 'edbsrvr': 'ElevateDB Server', 'vipera': 'Vipera Messaging Service', 'vipera-ssl': 'Vipera Messaging Service over SSL Communication', 'rets-ssl': 'RETS over SSL', 'nupaper-ss': 'NuPaper Session Service', 'cawas': 'CA Web Access Service', 'hivep': 'HiveP', 'linogridengine': 'LinoGrid Engine', 'rads': 'Remote Administration Daemon (RAD) is a system service that offers secure, remote, programmatic access to Solaris system configuration and run-time state', 'warehouse-sss': 'Warehouse Monitoring Syst SSS', 'warehouse': 'Warehouse Monitoring Syst', 'italk': 'Italk Chat System', 'tsaf': 'tsaf port', 'i-zipqd': 'I-ZIPQD', 'bcslogc': 'Black Crow Software application logging', 'rs-pias': 'R&S Proxy Installation Assistant Service', 'emc-vcas-tcp': 'EMC Virtual CAS Service', 'powwow-client': 'PowWow Client', 'powwow-server': 'PowWow Server', 'doip-data': 'DoIP Data', 'bprd': 'BPRD Protocol (VERITAS NetBackup)', 'bpdbm': 'BPDBM Protocol (VERITAS NetBackup)', 'bpjava-msvc': 'BP Java MSVC Protocol', 'vnetd': 'Veritas Network Utility', 'bpcd': 'VERITAS NetBackup', 'vopied': 'VOPIED Protocol', 'nbdb': 'NetBackup Database', 'nomdb': 'Veritas-nomdb', 'dsmcc-config': 'DSMCC Config', 'dsmcc-session': 'DSMCC Session Messages', 'dsmcc-passthru': 'DSMCC Pass-Thru Messages', 'dsmcc-download': 'DSMCC Download Protocol', 'dsmcc-ccp': 'DSMCC Channel Change Protocol', 'bmdss': 'Blackmagic Design Streaming Server', 'ucontrol': 'Ultimate Control communication protocol', 'dta-systems': 'D-TA SYSTEMS', 'medevolve': 'MedEvolve Port Requester', 'scotty-ft': 'SCOTTY High-Speed Filetransfer', 'sua': 'SUA', 'sage-best-com1': 'sage Best! Config Server 1', 'sage-best-com2': 'sage Best! Config Server 2', 'vcs-app': 'VCS Application', 'icpp': 'IceWall Cert Protocol', 'gcm-app': 'GCM Application', 'vrts-tdd': 'Veritas Traffic Director', 'vcscmd': 'Veritas Cluster Server Command Server', 'vad': 'Veritas Application Director', 'cps': 'Fencing Server', 'ca-web-update': 'CA eTrust Web Update Service', 'hde-lcesrvr-1': 'hde-lcesrvr-1', 'hde-lcesrvr-2': 'hde-lcesrvr-2', 'hydap': 'Hypack Data Aquisition', 'xpilot': 'XPilot Contact Port', '3link': '3Link Negotiation', 'cisco-snat': 'Cisco Stateful NAT', 'bex-xr': 'Backup Express Restore Server', 'ptp': 'Picture Transfer Protocol', 'programmar': 'ProGrammar Enterprise', 'fmsas': 'Administration Server Access', 'fmsascon': 'Administration Server Connector', 'gsms': 'GoodSync Mediation Service', 'jwpc': 'Filemaker Java Web Publishing Core', 'jwpc-bin': 'Filemaker Java Web Publishing Core Binary', 'sun-sea-port': 'Solaris SEA Port', 'solaris-audit': 'Solaris Audit - secure remote audit log', 'etb4j': 'etb4j', 'pduncs': 'Policy Distribute, Update Notification', 'pdefmns': 'Policy definition and update management', 'netserialext1': 'Network Serial Extension Ports One', 'netserialext2': 'Network Serial Extension Ports Two', 'netserialext3': 'Network Serial Extension Ports Three', 'netserialext4': 'Network Serial Extension Ports Four', 'connected': 'Connected Corp', 'xoms': 'X509 Objects Management Service', 'newbay-snc-mc': 'Newbay Mobile Client Update Service', 'sgcip': 'Simple Generic Client Interface Protocol', 'intel-rci-mp': 'INTEL-RCI-MP', 'amt-soap-http': 'Intel(R) AMT SOAP/HTTP', 'amt-soap-https': 'Intel(R) AMT SOAP/HTTPS', 'amt-redir-tcp': 'Intel(R) AMT Redirection/TCP', 'amt-redir-tls': 'Intel(R) AMT Redirection/TLS', 'isode-dua': '', 'soundsvirtual': 'Sounds Virtual', 'chipper': 'Chipper', 'avdecc': 'IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control', 'integrius-stp': 'Integrius Secure Tunnel Protocol', 'ssh-mgmt': 'SSH Tectia Manager', 'db-lsp': 'Dropbox LanSync Protocol', 'ea': 'Eclipse Aviation', 'zep': 'Encap. ZigBee Packets', 'zigbee-ip': 'ZigBee IP Transport Service', 'zigbee-ips': 'ZigBee IP Transport Secure Service', 'sw-orion': 'SolarWinds Orion', 'biimenu': 'Beckman Instruments, Inc.', 'radpdf': 'RAD PDF Service', 'racf': 'z/OS Resource Access Control Facility', 'opsec-cvp': 'OPSEC CVP', 'opsec-ufp': 'OPSEC UFP', 'opsec-sam': 'OPSEC SAM', 'opsec-lea': 'OPSEC LEA', 'opsec-omi': 'OPSEC OMI', 'ohsc': 'Occupational Health SC', 'opsec-ela': 'OPSEC ELA', 'checkpoint-rtm': 'Check Point RTM', 'iclid': 'Checkpoint router monitoring', 'clusterxl': 'Checkpoint router state backup', 'gv-pf': 'GV NetConfig Service', 'ac-cluster': 'AC Cluster', 'rds-ib': 'Reliable Datagram Service', 'rds-ip': 'Reliable Datagram Service over IP', 'ique': 'IQue Protocol', 'infotos': 'Infotos', 'apc-necmp': 'APCNECMP', 'igrid': 'iGrid Server', 'j-link': 'J-Link TCP/IP Protocol', 'opsec-uaa': 'OPSEC UAA', 'ua-secureagent': 'UserAuthority SecureAgent', 'keysrvr': 'Key Server for SASSAFRAS', 'keyshadow': 'Key Shadow for SASSAFRAS', 'mtrgtrans': 'mtrgtrans', 'hp-sco': 'hp-sco', 'hp-sca': 'hp-sca', 'hp-sessmon': 'HP-SESSMON', 'fxuptp': 'FXUPTP', 'sxuptp': 'SXUPTP', 'jcp': 'JCP Client', 'iec-104-sec': 'IEC 60870-5-104 process control - secure', 'dnp-sec': 'Distributed Network Protocol - Secure', 'dnp': 'DNP', 'microsan': 'MicroSAN', 'commtact-http': 'Commtact HTTP', 'commtact-https': 'Commtact HTTPS', 'openwebnet': 'OpenWebNet protocol for electric network', 'ss-idi': 'Samsung Interdevice Interaction', 'opendeploy': 'OpenDeploy Listener', 'nburn-id': 'NetBurner ID Port\nIANA assigned this well-formed service name as a replacement for "nburn_id".', 'nburn_id': 'NetBurner ID Port', 'tmophl7mts': 'TMOP HL7 Message Transfer Service', 'mountd': 'NFS mount protocol', 'nfsrdma': 'Network File System (NFS) over RDMA', 'tolfab': 'TOLfab Data Change', 'ipdtp-port': 'IPD Tunneling Port', 'ipulse-ics': 'iPulse-ICS', 'emwavemsg': 'emWave Message Service', 'track': 'Track', 'athand-mmp': 'At Hand MMP', 'irtrans': 'IRTrans Control', 'rdm-tfs': 'Raima RDM TFS', 'dfserver': 'MineScape Design File Server', 'vofr-gateway': 'VoFR Gateway', 'tvpm': 'TVNC Pro Multiplexing', 'webphone': 'webphone', 'netspeak-is': 'NetSpeak Corp. Directory Services', 'netspeak-cs': 'NetSpeak Corp. Connection Services', 'netspeak-acd': 'NetSpeak Corp. Automatic Call Distribution', 'netspeak-cps': 'NetSpeak Corp. Credit Processing System', 'snapenetio': 'SNAPenetIO', 'optocontrol': 'OptoControl', 'optohost002': 'Opto Host Port 2', 'optohost003': 'Opto Host Port 3', 'optohost004': 'Opto Host Port 4', 'optohost004': 'Opto Host Port 5', 'dcap': 'dCache Access Protocol', 'gsidcap': 'GSI dCache Access Protocol', 'wnn6': 'wnn6', 'cis': 'CompactIS Tunnel', 'cis-secure': 'CompactIS Secure Tunnel', 'WibuKey': 'WibuKey Standard WkLan', 'CodeMeter': 'CodeMeter Standard', 'caldsoft-backup': 'CaldSoft Backup server file transfer', 'vocaltec-wconf': 'Vocaltec Web Conference', 'talikaserver': 'Talika Main Server', 'aws-brf': 'Telerate Information Platform LAN', 'brf-gw': 'Telerate Information Platform WAN', 'inovaport1': 'Inova LightLink Server Type 1', 'inovaport2': 'Inova LightLink Server Type 2', 'inovaport3': 'Inova LightLink Server Type 3', 'inovaport4': 'Inova LightLink Server Type 4', 'inovaport5': 'Inova LightLink Server Type 5', 'inovaport6': 'Inova LightLink Server Type 6', 'gntp': 'Generic Notification Transport Protocol', 'elxmgmt': 'Emulex HBAnyware Remote Management', 'novar-dbase': 'Novar Data', 'novar-alarm': 'Novar Alarm', 'novar-global': 'Novar Global', 'aequus': 'Aequus Service', 'aequus-alt': 'Aequus Service Mgmt', 'areaguard-neo': 'AreaGuard Neo - WebServer', 'med-ltp': 'med-ltp', 'med-fsp-rx': 'med-fsp-rx', 'med-fsp-tx': 'med-fsp-tx', 'med-supp': 'med-supp', 'med-ovw': 'med-ovw', 'med-ci': 'med-ci', 'med-net-svc': 'med-net-svc', 'filesphere': 'fileSphere', 'vista-4gl': 'Vista 4GL', 'ild': 'Isolv Local Directory', 'intel-rci': 'Intel RCI\nIANA assigned this well-formed service name as a replacement for "intel_rci".', 'intel_rci': 'Intel RCI', 'tonidods': 'Tonido Domain Server', 'binkp': 'BINKP', 'canditv': 'Canditv Message Service', 'flashfiler': 'FlashFiler', 'proactivate': 'Turbopower Proactivate', 'tcc-http': 'TCC User HTTP Service', 'cslg': 'Citrix StorageLink Gateway', 'find': 'Find Identification of Network Devices', 'icl-twobase1': 'icl-twobase1', 'icl-twobase2': 'icl-twobase2', 'icl-twobase3': 'icl-twobase3', 'icl-twobase4': 'icl-twobase4', 'icl-twobase5': 'icl-twobase5', 'icl-twobase6': 'icl-twobase6', 'icl-twobase7': 'icl-twobase7', 'icl-twobase8': 'icl-twobase8', 'icl-twobase9': 'icl-twobase9', 'icl-twobase10': 'icl-twobase10', 'sauterdongle': 'Sauter Dongle', 'idtp': 'Identifier Tracing Protocol', 'vocaltec-hos': 'Vocaltec Address Server', 'tasp-net': 'TASP Network Comm', 'niobserver': 'NIObserver', 'nilinkanalyst': 'NILinkAnalyst', 'niprobe': 'NIProbe', 'quake': 'quake', 'scscp': 'Symbolic Computation Software Composability Protocol', 'wnn6-ds': 'wnn6-ds', 'ezproxy': 'eZproxy', 'ezmeeting': 'eZmeeting', 'k3software-svr': 'K3 Software-Server', 'k3software-cli': 'K3 Software-Client', 'exoline-tcp': 'EXOline-TCP', 'exoconfig': 'EXOconfig', 'exonet': 'EXOnet', 'imagepump': 'ImagePump', 'jesmsjc': 'Job controller service', 'kopek-httphead': 'Kopek HTTP Head Port', 'ars-vista': 'ARS VISTA Application', 'tw-auth-key': 'TW Authentication/Key Distribution and', 'nxlmd': 'NX License Manager', 'pqsp': 'PQ Service', 'siemensgsm': 'Siemens GSM', 'otmp': 'ObTools Message Protocol', 'pago-services1': 'Pago Services 1', 'pago-services2': 'Pago Services 2', 'kingdomsonline': 'Kingdoms Online (CraigAvenue)', 'ovobs': 'OpenView Service Desk Client', 'autotrac-acp': 'Autotrac ACP 245', 'xqosd': 'XQoS network monitor', 'tetrinet': 'TetriNET Protocol', 'lm-mon': 'lm mon', 'dsx-monitor': 'DS Expert Monitor\nIANA assigned this well-formed service name as a replacement for "dsx_monitor".', 'dsx_monitor': 'DS Expert Monitor', 'gamesmith-port': 'GameSmith Port', 'iceedcp-tx': 'Embedded Device Configuration Protocol TX\nIANA assigned this well-formed service name as a replacement for "iceedcp_tx".', 'iceedcp_tx': 'Embedded Device Configuration Protocol TX', 'iceedcp-rx': 'Embedded Device Configuration Protocol RX\nIANA assigned this well-formed service name as a replacement for "iceedcp_rx".', 'iceedcp_rx': 'Embedded Device Configuration Protocol RX', 'iracinghelper': 'iRacing helper service', 't1distproc60': 'T1 Distributed Processor', 'apm-link': 'Access Point Manager Link', 'sec-ntb-clnt': 'SecureNotebook-CLNT', 'DMExpress': 'DMExpress', 'filenet-powsrm': 'FileNet BPM WS-ReliableMessaging Client', 'filenet-tms': 'Filenet TMS', 'filenet-rpc': 'Filenet RPC', 'filenet-nch': 'Filenet NCH', 'filenet-rmi': 'FileNET RMI', 'filenet-pa': 'FileNET Process Analyzer', 'filenet-cm': 'FileNET Component Manager', 'filenet-re': 'FileNET Rules Engine', 'filenet-pch': 'Performance Clearinghouse', 'filenet-peior': 'FileNET BPM IOR', 'filenet-obrok': 'FileNet BPM CORBA', 'mlsn': 'Multiple Listing Service Network', 'retp': 'Real Estate Transport Protocol', 'idmgratm': 'Attachmate ID Manager', 'aurora-balaena': 'Aurora (Balaena Ltd)', 'diamondport': 'DiamondCentral Interface', 'dgi-serv': 'Digital Gaslight Service', 'speedtrace': 'SpeedTrace TraceAgent', 'traceroute': 'traceroute use', 'snip-slave': 'SNIP Slave', 'turbonote-2': 'TurboNote Relay Server Default Port', 'p-net-local': 'P-Net on IP local', 'p-net-remote': 'P-Net on IP remote', 'dhanalakshmi': 'dhanalakshmi.org EDI Service', 'profinet-rt': 'PROFInet RT Unicast', 'profinet-rtm': 'PROFInet RT Multicast', 'profinet-cm': 'PROFInet Context Manager', 'ethercat': 'EtherCAT Port', 'kitim': 'KIT Messenger', 'altova-lm': 'Altova License Management', 'guttersnex': 'Gutters Note Exchange', 'openstack-id': 'OpenStack ID Service', 'allpeers': 'AllPeers Network', 'febooti-aw': 'Febooti Automation Workshop', 'kastenxpipe': 'KastenX Pipe', 'neckar': "science + computing's Venus Administration Port", 'unisys-eportal': 'Unisys ClearPath ePortal', 'galaxy7-data': 'Galaxy7 Data Tunnel', 'fairview': 'Fairview Message Service', 'agpolicy': 'AppGate Policy Server', 'sruth': 'Sruth is a service for the distribution of routinely-\n generated but arbitrary files based on a publish/subscribe\n distribution model and implemented using a peer-to-peer transport\n mechanism', 'secrmmsafecopya': 'Security approval process for use of the secRMM SafeCopy program', 'turbonote-1': 'TurboNote Default Port', 'safetynetp': 'SafetyNET p', 'cscp': 'CSCP', 'csccredir': 'CSCCREDIR', 'csccfirewall': 'CSCCFIREWALL', 'fs-qos': 'Foursticks QoS Protocol', 'tentacle': 'Tentacle Server', 'crestron-cip': 'Crestron Control Port', 'crestron-ctp': 'Crestron Terminal Port', 'crestron-cips': 'Crestron Secure Control Port', 'crestron-ctps': 'Crestron Secure Terminal Port', 'candp': 'Computer Associates network discovery protocol', 'candrp': 'CA discovery response', 'caerpc': 'CA eTrust RPC', 'reachout': 'REACHOUT', 'ndm-agent-port': 'NDM-AGENT-PORT', 'ip-provision': 'IP-PROVISION', 'noit-transport': 'Reconnoiter Agent Data Transport', 'shaperai': 'Shaper Automation Server Management', 'eq3-update': 'EQ3 firmware update', 'ew-mgmt': 'Cisco EnergyWise Management', 'ciscocsdb': 'Cisco NetMgmt DB Ports', 'pmcd': 'PCP server (pmcd)', 'pmcdproxy': 'PCP server (pmcd) proxy', 'cognex-dataman': 'Cognex DataMan Management Protocol', 'rbr-debug': 'REALbasic Remote Debug', 'EtherNet-IP-2': 'EtherNet/IP messaging\nIANA assigned this well-formed service name as a replacement for "EtherNet/IP-2".', 'EtherNet/IP-2': 'EtherNet/IP messaging', 'asmp': 'NSi AutoStore Status Monitoring Protocol data transfer', 'asmps': 'NSi AutoStore Status Monitoring Protocol secure data transfer', 'invision-ag': 'InVision AG', 'eba': 'EBA PRISE', 'dai-shell': 'Server for the DAI family of client-server products', 'qdb2service': 'Qpuncture Data Access Service', 'ssr-servermgr': 'SSRServerMgr', 'sp-remotetablet': 'Connection between a desktop computer or server and a signature tablet to capture handwritten signatures', 'mediabox': 'MediaBox Server', 'mbus': 'Message Bus', 'winrm': 'Windows Remote Management Service', 'dbbrowse': 'Databeam Corporation', 'directplaysrvr': 'Direct Play Server', 'ap': 'ALC Protocol', 'bacnet': 'Building Automation and Control Networks', 'nimcontroller': 'Nimbus Controller', 'nimspooler': 'Nimbus Spooler', 'nimhub': 'Nimbus Hub', 'nimgtw': 'Nimbus Gateway', 'nimbusdb': 'NimbusDB Connector', 'nimbusdbctrl': 'NimbusDB Control', '3gpp-cbsp': '3GPP Cell Broadcast Service Protocol', 'isnetserv': 'Image Systems Network Services', 'blp5': 'Bloomberg locator', 'com-bardac-dw': 'com-bardac-dw', 'iqobject': 'iqobject', 'matahari': 'Matahari Broker', 'acs-ctl-ds': 'Access Control Device', 'acs-ctl-gw': 'Access Control Gateway', 'addressbooksrv': 'Address Book Server used for contacts and calendar synchronisation', 'adobe-shadow': 'Adobe Shadow Server', 'aerohive-proxy': 'Aerohive Proxy Configuration Service', 'airdrop': 'Airdrop', 'airpreview': 'Coda AirPreview', 'aloe-gwp': 'Aloe Gateway Protocol', 'aloe-pp': 'Aloe Pairing Protocol', 'apple-mobdev': 'Apple Mobile Device Protocol', 'avatars': 'Libravatar federated avatar hosting service.', 'avatars-sec': 'Libravatar federated avatar hosting service.', 'bitflit': 'Data transfer service', 'boxraysrvr': 'Boxray Devices Host Server', 'caldav': 'Calendaring Extensions to WebDAV (CalDAV) - non-TLS', 'caldavs': 'Calendaring Extensions to WebDAV (CalDAV) - over TLS', 'carddav': 'vCard Extensions to WebDAV (CardDAV) - non-TLS', 'carddavs': 'vCard Extensions to WebDAV (CardDAV) - over TLS', 'carousel': 'Carousel Player Protocol', 'ciao': 'Ciao Arduino Protocol', 'dbaudio': 'd&b audiotechnik remote network', 'devonsync': 'DEVONthink synchronization protocol', 'easyspndlg-sync': 'Sync service for the Easy Spend Log app', 'eeg': 'EEG System Discovery across local and wide area networks', 'efkon-elite': 'EFKON Lightweight Interface to Traffic Events', 'enphase-envoy': 'Enphase Energy Envoy', 'esp': 'Extensis Server Protocol', 'flir-ircam': 'FLIR Infrared Camera', 'goorstop': 'For iOS Application named GoOrStop', 'groovesquid': 'Groovesquid Democratic Music Control Protocol', 'https': 'HTTP over SSL/TLS', 'ims-ni': 'Noise Inspector', 'infboard': 'InfBoard interactive whiteboard protocol', 'iota': 'iotaMed medical records server', 'ir-hvac-000': 'HVAC SMIL Server', 'irradiatd-iclip': 'iClip clipboard transfer', 'isynchronize': 'iSynchronize data synchronization protocol', 'itap-publish': 'iTap Publishing Service', 'jnx-kcsync': 'jollys keychain cloud sync protocol', 'jukebox': 'Jukebox Request Service', 'keynoteaccess': 'KeynoteAccess is used for sending remote requests/responses when controlling a slideshow with Keynote Remote', 'keynotepairing': 'KeynotePairing is used to pair Keynote Remote with Keynote', 'lumiere': 'A protocol to remotely control DMX512 devices over the network', 'lumis-lca': 'Lumis Cache Appliance Protocol', 'mavlink': 'MAVLink Micro Air Vehicle Communication Protocol', 'mediatap': 'Mediatap streaming protocol', 'netvu-video': 'AD Group NetVu Connected Video', 'nextcap': 'Proprietary communication protocol for NextCap capture solution', 'ni': 'National Instruments Network Device', 'ni-rt': 'National Instruments Real-Time Target', 'ni-sysapi': 'National Instruments System API Service', 'omadm-bootstrap': 'Open Mobile Alliance (OMA) Device Management (DM) Bootstrap Server Discovery Service', 'pairandshare': 'Pair & Share data protocol', 'panoply': 'Panoply multimedia composite transfer protocol', 'parabay-p2p': 'Parabay P2P protocol', 'parity': 'PA-R-I-Ty (Public Address - Radio - Intercom - Telefony)', 'photosmithsync': "Photosmith's iPad to Lightroom sync protocol", 'podcastproxy': 'Protocol for communication between Podcast', 'printopia': 'Port to allow for administration and control of "Printopia" application software,\n which provides printing services to mobile users', 'pstmailsync': 'File synchronization protocol for Pst Mail Sync', 'pstmailsync-ssl': 'Secured file synchronization protocol for Pst Mail Sync', 'ptp-init': 'Picture Transfer Protocol(PTP) Initiator', 'pvaccess': 'Experimental Physics and Industrial Control System', 'quad': 'Distributed Game Data', 'radioport': 'RadioPort Message Service', 'recipe-box': 'The Recipe Box Exchange', 'recipe-sharing': 'Recipe Sharing Protocol', 'recolive-cc': 'Remote Camera Control', 'rgb': 'RGB Spectrum Device Discovery', 'rym-rrc': 'Raymarine remote control protocol', 'savagesoft': 'Proprietary Client Server Protocol', 'smartsocket': 'home control', 'spidap': 'Sierra Photonics Inc. data protocol', 'spx-hmp': 'SpinetiX HMP', 'ssh': 'SSH Remote Login Protocol', 'soda': 'Secure On Device API', 'sqp': 'Square Connect Control Protocol', 'stotp': 'One Time Pad Synchronisation', 'tenir-rc': 'Proprietary', 'test-ok': 'Test Controller Card', 'tivo-device': 'TiVo Device Protocol', 'tivo-mindrpc': 'TiVo RPC Protocol', 'tsbiis': 'The Social Broadband Interference Information Sharing', 'twinlevel': 'detect sanitary product', 'tzrpc': 'TZ-Software remote procedure call based synchronization protocol', 'wd-2go': 'NAS Service Protocol', 'z-wave': 'Z-Wave Service Discovery', 'zeromq': 'High performance brokerless messaging'} |
default_config = {
'relay_fee_per_kb': 3000
}
class FeePolicyChecker:
def __init__(self, config = default_config):
self.relay_fee_per_kb = int(config['relay_fee_per_kb'])
def check_tx(self,tx):
size = len(tx.serialize())
if tx.coinbase:
size -= 2 #len of len of output
size -= len(tx.coinbase.serialize())
if int((size/1000.)*self.relay_fee_per_kb)>tx.relay_fee:
return False
return True
| default_config = {'relay_fee_per_kb': 3000}
class Feepolicychecker:
def __init__(self, config=default_config):
self.relay_fee_per_kb = int(config['relay_fee_per_kb'])
def check_tx(self, tx):
size = len(tx.serialize())
if tx.coinbase:
size -= 2
size -= len(tx.coinbase.serialize())
if int(size / 1000.0 * self.relay_fee_per_kb) > tx.relay_fee:
return False
return True |
'''Program to check whether the given number is paliandrome or not
Input Format
a number from the user
Constraints
n>0
Output Format
Yes or No
Sample Input 0
123
Sample Output 0
No
Sample Input 1
121
Sample Output 1
Yes'''
#solution
def pall(num):
if num == num[::-1]:
return "Yes"
return "No"
print(pall(input())) | """Program to check whether the given number is paliandrome or not
Input Format
a number from the user
Constraints
n>0
Output Format
Yes or No
Sample Input 0
123
Sample Output 0
No
Sample Input 1
121
Sample Output 1
Yes"""
def pall(num):
if num == num[::-1]:
return 'Yes'
return 'No'
print(pall(input())) |
class opt(object):
def __init__(self, data_dir, save_dir, gen_dir,
ratio, num_layers, hidden_size, embedding_size,
cuda, batch_size, seq_len, num_epochs,
save_every, print_every, valid_every,
grad_clip, learning_rate):
# The Parameter which has None will be filled while training
self.resume = None
self.resume_epoch = None
# File Parameter
self.data_dir = data_dir
self.save_dir = save_dir
self.gen_dir = gen_dir
self.novel_path = None
# Model hyperparameter
# vocab size must be fixed to facebook fast text
# mode is used for data_loader - train / validate
self.mode = None
self.ratio = ratio
self.n_layers = num_layers
self.hidden_size = hidden_size
self.embedding_size = embedding_size
# Training hyperparameter
self.cuda = cuda
self.batch_size = batch_size
self.seq_len = seq_len
self.num_epochs = num_epochs
self.save_every = save_every
self.print_every = print_every
self.valid_every = valid_every
self.grad_clip = grad_clip
self.lr = learning_rate
# Vocabulary setting - This will be filled automatically
self.vocab_size = None
self.vocab_itoc = None
self.vocab_ctoi = None
# Check if we can use train / valid data
self.train = True
self.valid = True
| class Opt(object):
def __init__(self, data_dir, save_dir, gen_dir, ratio, num_layers, hidden_size, embedding_size, cuda, batch_size, seq_len, num_epochs, save_every, print_every, valid_every, grad_clip, learning_rate):
self.resume = None
self.resume_epoch = None
self.data_dir = data_dir
self.save_dir = save_dir
self.gen_dir = gen_dir
self.novel_path = None
self.mode = None
self.ratio = ratio
self.n_layers = num_layers
self.hidden_size = hidden_size
self.embedding_size = embedding_size
self.cuda = cuda
self.batch_size = batch_size
self.seq_len = seq_len
self.num_epochs = num_epochs
self.save_every = save_every
self.print_every = print_every
self.valid_every = valid_every
self.grad_clip = grad_clip
self.lr = learning_rate
self.vocab_size = None
self.vocab_itoc = None
self.vocab_ctoi = None
self.train = True
self.valid = True |
def tribonacci(signature, n):
newl = []
h1 = signature[0]
h2 = signature[1]
h3 = signature[2]
for i in range(n):
h1 = signature[i]
h2 = signature[i + 1]
h3 = signature[i + 2]
h4 = h1 + h2 + h3
newl.append(h4)
return newl
l = {1,0,0}
print(tribonacci(l,10)) | def tribonacci(signature, n):
newl = []
h1 = signature[0]
h2 = signature[1]
h3 = signature[2]
for i in range(n):
h1 = signature[i]
h2 = signature[i + 1]
h3 = signature[i + 2]
h4 = h1 + h2 + h3
newl.append(h4)
return newl
l = {1, 0, 0}
print(tribonacci(l, 10)) |
# https://www.globaletraining.com/
# Accessing Class and Object Variables/Attributes
class Car:
# Class Attributes/Variables
no_of_tires = 4
# Class Constructor/Initializer (Method with a special name)
def __init__(self, make, model, year, color, moon_roof=False):
# Object Attributes/Variables
self.make = make
self.model = model
self.year = year
self.color = color
self.moon_roof = moon_roof
self.engine_running = False
# Methods
def start_the_engine(self):
self.engine_running = True
def stop_the_engine(self):
self.engine_running = False
def main():
print("Hello from the main() method!")
car1 = Car("Ford", "Mustang", 2010, "Blue")
car2 = Car("Tesla", "Model 3", 2020, "Red", True)
# Accessing car1 attributes
print("Printing car1 details:".center(50, "-"))
print("Make : {}".format(car1.make))
print("Model : {}".format(car1.model))
print("Year : {}".format(car1.year))
print("Color : {}".format(car1.color))
print("Moon Roof : {}".format(car1.moon_roof))
# Accessing car2 attributes
print("Printing car2 details:".center(50, "-"))
print("Make : {}".format(car2.make))
print("Model : {}".format(car2.model))
print("Year : {}".format(car2.year))
print("Color : {}".format(car2.color))
print("Moon Roof : {}".format(car2.moon_roof))
# Class Attributes
print("Class Attributes:".center(50, "-"))
print("car1:", car1.no_of_tires)
print("car2:", car2.no_of_tires)
print("Car:", Car.no_of_tires)
if __name__ == '__main__':
main()
| class Car:
no_of_tires = 4
def __init__(self, make, model, year, color, moon_roof=False):
self.make = make
self.model = model
self.year = year
self.color = color
self.moon_roof = moon_roof
self.engine_running = False
def start_the_engine(self):
self.engine_running = True
def stop_the_engine(self):
self.engine_running = False
def main():
print('Hello from the main() method!')
car1 = car('Ford', 'Mustang', 2010, 'Blue')
car2 = car('Tesla', 'Model 3', 2020, 'Red', True)
print('Printing car1 details:'.center(50, '-'))
print('Make : {}'.format(car1.make))
print('Model : {}'.format(car1.model))
print('Year : {}'.format(car1.year))
print('Color : {}'.format(car1.color))
print('Moon Roof : {}'.format(car1.moon_roof))
print('Printing car2 details:'.center(50, '-'))
print('Make : {}'.format(car2.make))
print('Model : {}'.format(car2.model))
print('Year : {}'.format(car2.year))
print('Color : {}'.format(car2.color))
print('Moon Roof : {}'.format(car2.moon_roof))
print('Class Attributes:'.center(50, '-'))
print('car1:', car1.no_of_tires)
print('car2:', car2.no_of_tires)
print('Car:', Car.no_of_tires)
if __name__ == '__main__':
main() |
def conv_module_cifar(nnet, nfilters):
filter_size = (3, 3)
pad = 'same'
use_batch_norm = True
nnet.addConvLayer(num_filters=nfilters,
filter_size=filter_size,
pad=pad,
use_batch_norm=use_batch_norm)
nnet.addReLU()
nnet.addConvLayer(num_filters=nfilters,
filter_size=filter_size,
pad=pad,
use_batch_norm=use_batch_norm)
nnet.addReLU()
nnet.addMaxPool(pool_size=(2, 2))
def conv_module_vgg(nnet, nfilters, nrepeat):
for _ in range(nrepeat):
nnet.addConvLayer(num_filters=nfilters,
filter_size=(3, 3),
pad=1,
flip_filters=False)
nnet.addReLU()
nnet.addMaxPool(pool_size=(2, 2))
| def conv_module_cifar(nnet, nfilters):
filter_size = (3, 3)
pad = 'same'
use_batch_norm = True
nnet.addConvLayer(num_filters=nfilters, filter_size=filter_size, pad=pad, use_batch_norm=use_batch_norm)
nnet.addReLU()
nnet.addConvLayer(num_filters=nfilters, filter_size=filter_size, pad=pad, use_batch_norm=use_batch_norm)
nnet.addReLU()
nnet.addMaxPool(pool_size=(2, 2))
def conv_module_vgg(nnet, nfilters, nrepeat):
for _ in range(nrepeat):
nnet.addConvLayer(num_filters=nfilters, filter_size=(3, 3), pad=1, flip_filters=False)
nnet.addReLU()
nnet.addMaxPool(pool_size=(2, 2)) |
def config(app):
app.config.update(
authenticate=False
)
| def config(app):
app.config.update(authenticate=False) |
with open(FILE, mode='w') as file:
writer = csv.writer(file, lineterminator='\n')
writer.writerows(DATA)
| with open(FILE, mode='w') as file:
writer = csv.writer(file, lineterminator='\n')
writer.writerows(DATA) |
print('user1')
print('user 3')
print('user 2')
| print('user1')
print('user 3')
print('user 2') |
class Node:
def __init__(self, char, weight):
self.char = char
self.weight = weight
self.children = dict()
self.count = 0
def add_child (self, child):
self.children[child.char] = child
def reinforce(self, reinforcement_rate):
self.count += 1
self.weight += reinforcement_rate
def print_as_graph(self, level=0):
ret = "\t"*level+self.char+"\n"
for child in self.children.values():
ret += child.__str__(level+1)
return ret
def __str__(self):
return self.char
def __repr__(self):
return '<tree node representation>'
| class Node:
def __init__(self, char, weight):
self.char = char
self.weight = weight
self.children = dict()
self.count = 0
def add_child(self, child):
self.children[child.char] = child
def reinforce(self, reinforcement_rate):
self.count += 1
self.weight += reinforcement_rate
def print_as_graph(self, level=0):
ret = '\t' * level + self.char + '\n'
for child in self.children.values():
ret += child.__str__(level + 1)
return ret
def __str__(self):
return self.char
def __repr__(self):
return '<tree node representation>' |
class Myclass:
var="test"
def funcao (self):
print("This is the message inside my class")
myobject=Myclass()
print(myobject.var)
myobject.funcao()
myobject2=Myclass()
myobject2.var="Hello World"
print(myobject.var)
print (myobject2.var) | class Myclass:
var = 'test'
def funcao(self):
print('This is the message inside my class')
myobject = myclass()
print(myobject.var)
myobject.funcao()
myobject2 = myclass()
myobject2.var = 'Hello World'
print(myobject.var)
print(myobject2.var) |
class Solution:
def findClosestElements(self, arr: List[int], k: int, x: int) -> List[int]:
if x<=arr[0]:
return arr[:k]
if x>=arr[-1]:
return arr[-k:]
l=0
r=len(arr)-k
while l<r:
mid = l+(r-l)//2
if x-arr[mid]>arr[mid+k]-x:
l=mid+1
else:
r=mid
return arr[l:l+k] | class Solution:
def find_closest_elements(self, arr: List[int], k: int, x: int) -> List[int]:
if x <= arr[0]:
return arr[:k]
if x >= arr[-1]:
return arr[-k:]
l = 0
r = len(arr) - k
while l < r:
mid = l + (r - l) // 2
if x - arr[mid] > arr[mid + k] - x:
l = mid + 1
else:
r = mid
return arr[l:l + k] |
def distance(s1, s2):
if len(s1) != len(s2):
raise ValueError("Sequences not of equal length.")
return sum(a != b for a, b in zip(s1, s2))
| def distance(s1, s2):
if len(s1) != len(s2):
raise value_error('Sequences not of equal length.')
return sum((a != b for (a, b) in zip(s1, s2))) |
class Device(object):
def __init__(self):
self.name = 'Unknown Device'
self.ip = None
self.identifier = None
self.app_installed = False
def is_remote(self):
return self.ip is not None
def is_usb(self):
return self.ip is None and self.identifier is not None
def get_human_name(self):
name = self.name
if self.identifier:
name += ' id: [%s]' % self.identifier
if self.ip:
name += ' ip: [%s]' % self.ip
return name
| class Device(object):
def __init__(self):
self.name = 'Unknown Device'
self.ip = None
self.identifier = None
self.app_installed = False
def is_remote(self):
return self.ip is not None
def is_usb(self):
return self.ip is None and self.identifier is not None
def get_human_name(self):
name = self.name
if self.identifier:
name += ' id: [%s]' % self.identifier
if self.ip:
name += ' ip: [%s]' % self.ip
return name |
#!/usr/bin/env python
class OPT:
"A python container for operator types enumerator"
EQ = 1
NE = 2
GT = 3
GE = 4
LT = 5
LE = 6
| class Opt:
"""A python container for operator types enumerator"""
eq = 1
ne = 2
gt = 3
ge = 4
lt = 5
le = 6 |
cows_num = int(input())
cows_list = []
for cow_num in range(cows_num):
postion, infected = map(int, input().split())
cows_list.append([postion, infected])
cows_list.sort()
min_offset = None
for cow_num, cow in enumerate(cows_list):
if cow_num + 1 == len(cows_list):
break
if cows_list[cow_num+1][1] != cow[1]:
offset = cows_list[cow_num+1][0] - cow[0]
# print(offset)
if min_offset is None or min_offset > offset:
min_offset = offset
# print(cows_list)
# print(min_offset)
init_cows_num = 0
for cow in cows_list:
if cow[1] == 1:
init_cows_num += 1
for cow_num, cow in enumerate(cows_list):
if cow_num + 1 == len(cows_list):
break
if cows_list[cow_num+1][1] == cow[1] and cow[1] == 1:
if cows_list[cow_num+1][0] - cow[0] < min_offset:
init_cows_num -= 1
print(init_cows_num) | cows_num = int(input())
cows_list = []
for cow_num in range(cows_num):
(postion, infected) = map(int, input().split())
cows_list.append([postion, infected])
cows_list.sort()
min_offset = None
for (cow_num, cow) in enumerate(cows_list):
if cow_num + 1 == len(cows_list):
break
if cows_list[cow_num + 1][1] != cow[1]:
offset = cows_list[cow_num + 1][0] - cow[0]
if min_offset is None or min_offset > offset:
min_offset = offset
init_cows_num = 0
for cow in cows_list:
if cow[1] == 1:
init_cows_num += 1
for (cow_num, cow) in enumerate(cows_list):
if cow_num + 1 == len(cows_list):
break
if cows_list[cow_num + 1][1] == cow[1] and cow[1] == 1:
if cows_list[cow_num + 1][0] - cow[0] < min_offset:
init_cows_num -= 1
print(init_cows_num) |
__author__ = 'yinjun'
# Definition for singly-linked list with a random pointer.
# class RandomListNode:
# def __init__(self, x):
# self.label = x
# self.next = None
# self.random = None
class Solution:
# @param head: A RandomListNode
# @return: A RandomListNode
def copyRandomList(self, head):
# write your code here
dict= {}
p = head
c = RandomListNode('')
m = c
while p != None:
q = RandomListNode(p.label)
dict[p] = q
m.next = q
p = p.next
m = m.next
p = head
q = c.next
while q != None:
if p.random in dict:
q.random = dict[p.random]
q = q.next
p = p.next
return c.next
| __author__ = 'yinjun'
class Solution:
def copy_random_list(self, head):
dict = {}
p = head
c = random_list_node('')
m = c
while p != None:
q = random_list_node(p.label)
dict[p] = q
m.next = q
p = p.next
m = m.next
p = head
q = c.next
while q != None:
if p.random in dict:
q.random = dict[p.random]
q = q.next
p = p.next
return c.next |
# Space: O(n)
# Time: O(n)
# Explanation:
# Monotonic stack approach
# Using stack to save INDEX of temperatures, the stack is in "ascending" order. (lowest temperature in the bottom).
# Loop through each item, when the current temperature is greater than stack top temperature, then start to pop item out
# of stack, and the result(next warmer temperature) of popped item is equal to current temperature index - stack popped item.
class Solution:
def dailyTemperatures(self, T):
stack = []
res = [0] * len(T) # initial result array
for i in range(len(T)):
while stack and T[stack[-1]] < T[i]: # the current temperature is greater than stack top temperature
res[stack[-1]] = i - stack[-1] # result of popped item: current temperature index - stack popped item.
stack.pop()
else:
stack.append(i)
return res
| class Solution:
def daily_temperatures(self, T):
stack = []
res = [0] * len(T)
for i in range(len(T)):
while stack and T[stack[-1]] < T[i]:
res[stack[-1]] = i - stack[-1]
stack.pop()
else:
stack.append(i)
return res |
class noise:
def __init__(self, mean=0., std = 1., mag = 0.1):
self.mean = mean
self.std = std
self.mag = mag
self.rg = Generator(PCG64())
def draw(self):
return self.mag * self.rg.normal(self.mean, self.std) | class Noise:
def __init__(self, mean=0.0, std=1.0, mag=0.1):
self.mean = mean
self.std = std
self.mag = mag
self.rg = generator(pcg64())
def draw(self):
return self.mag * self.rg.normal(self.mean, self.std) |
# _*_coding:utf-8_*_
class Solution:
def ReverseSentence(self, s):
if None is s or len(s) <= 0:
return ""
word = ""
result = ""
for item in s:
if ' ' == item:
result = word + result
result = item + result
word = ""
else:
word += item
result = word + result
return result
s = Solution()
print(s.ReverseSentence("I am a student."))
print(s.ReverseSentence(""))
print(s.ReverseSentence(None)) | class Solution:
def reverse_sentence(self, s):
if None is s or len(s) <= 0:
return ''
word = ''
result = ''
for item in s:
if ' ' == item:
result = word + result
result = item + result
word = ''
else:
word += item
result = word + result
return result
s = solution()
print(s.ReverseSentence('I am a student.'))
print(s.ReverseSentence(''))
print(s.ReverseSentence(None)) |
old_ops = parent().findChildren( type = containerCOMP, depth = 1 )
config_DAT = op( 'select_config' )
def delete_old_ops():
for each_op in old_ops:
each_op.destroy()
return
def create_new_ops():
new_op = parent().create( containerCOMP, 'container_' + config_DAT[ 0, 0 ] )
new_op.par.externaltox = config_DAT[ 0, 1 ]
new_op.par.savebackup = 0
new_op.par.reinitnet.pulse()
return
delete_old_ops()
create_new_ops() | old_ops = parent().findChildren(type=containerCOMP, depth=1)
config_dat = op('select_config')
def delete_old_ops():
for each_op in old_ops:
each_op.destroy()
return
def create_new_ops():
new_op = parent().create(containerCOMP, 'container_' + config_DAT[0, 0])
new_op.par.externaltox = config_DAT[0, 1]
new_op.par.savebackup = 0
new_op.par.reinitnet.pulse()
return
delete_old_ops()
create_new_ops() |
def get_digits(n):
while str(n):
yield n % 10
n = n // 10
if not n:
break
digit = get_digits(1729)
print(next(digit)) # 9
print(next(digit)) # 2
print(next(digit)) # 7
print(next(digit)) # 1
for digit in get_digits(74831965):
print(digit)
# 5
# 6
# 9
# 1
# 3
# 8
# 4
# 7
# >>> def letter(name):
# ... for ch in name:
# ... yield ch
# ...
# >>>
# >>> char = letter("RISHIKESH")
# >>>
# >>> next(char)
# 'R'
# >>>
# >>> "Second letter is my name is: " + next(char)
# 'Second letter is my name is: I'
# >>>
# >>> "3rd one: " + next(char)
# '3rd one: S'
# >>>
# >>> next(char)
# 'H'
# >>> | def get_digits(n):
while str(n):
yield (n % 10)
n = n // 10
if not n:
break
digit = get_digits(1729)
print(next(digit))
print(next(digit))
print(next(digit))
print(next(digit))
for digit in get_digits(74831965):
print(digit) |
# Project Euler
# Problem 18 - Maximum path sum I
# (c) 2020-2022 Jordan Sola. All rights reserved. (MIT License)
# Written by Jordan Sola 2021
def compute():
set = [ [75],
[95,64],
[17,47,82],
[18,35,87,10],
[20, 4,82,47,65],
[19, 1,23,75, 3,34],
[88, 2,77,73, 7,63,67],
[99,65, 4,28,6,16,70,92],
[41,41,26,56,83,40,80,70,33],
[41,48,72,33,47,32,37,16,94,29],
[53,71,44,65,25,43,91,52,97,51,14],
[70,11,33,28,77,73,17,78,39,68,17,57],
[91,71,52,38,17,14,91,43,58,50,27,29,48],
[63,66, 4,68,89,53,67,30,73,16,69,87,40,31],
[ 4,62,98,27,23, 9,70,98,73,93,38,53,60, 4,23] ]
# - Adding the maximum value from the adjacent leafs in a
# tree, leading up to the root of the tree, gives us the
# absolute max sum from all paths at the root node.
for row in range(len(set)-1 , 0, -1):
for col in range(0, row):
set[row-1][col] += max(set[row][col], set[row][col+1])
max_path = set[0][0]
return max_path
if __name__ == "__main__":
print(compute())
# Answer: 1074
# Asymptotic complexity: O(N)
# M1 (3.2 GHz CPU) ARMv8-A64 (64 bit): 10000 loops, best of 5: 21.1 usec per loop
| def compute():
set = [[75], [95, 64], [17, 47, 82], [18, 35, 87, 10], [20, 4, 82, 47, 65], [19, 1, 23, 75, 3, 34], [88, 2, 77, 73, 7, 63, 67], [99, 65, 4, 28, 6, 16, 70, 92], [41, 41, 26, 56, 83, 40, 80, 70, 33], [41, 48, 72, 33, 47, 32, 37, 16, 94, 29], [53, 71, 44, 65, 25, 43, 91, 52, 97, 51, 14], [70, 11, 33, 28, 77, 73, 17, 78, 39, 68, 17, 57], [91, 71, 52, 38, 17, 14, 91, 43, 58, 50, 27, 29, 48], [63, 66, 4, 68, 89, 53, 67, 30, 73, 16, 69, 87, 40, 31], [4, 62, 98, 27, 23, 9, 70, 98, 73, 93, 38, 53, 60, 4, 23]]
for row in range(len(set) - 1, 0, -1):
for col in range(0, row):
set[row - 1][col] += max(set[row][col], set[row][col + 1])
max_path = set[0][0]
return max_path
if __name__ == '__main__':
print(compute()) |
class ResourceMetamodel(object):
def __init__(self, resource):
self.resource = resource
def _request(self, obj):
form = self.resource._get_form(inst=obj, initial=self.resource._get_form_initial(obj))
result = {}
for key, field in form.fields.items():
choices = getattr(field, 'choices', None)
if choices:
choices = list(choices)
result[key] = {
'type': field.__class__.__name__,
'is_required': field.required,
'verbose_name': field.label,
'initial': form[key].value(),
'widget': field.widget.__class__.__name__,
'help_text': field.help_text,
'choices': choices,
}
return result
def _get_resource_method_fields(self, fields):
out = dict()
# TODO
for field in fields.flat():
t = getattr(self.resource, str(field), None)
if t and callable(t):
out[field] = t
return out
def _get_model_fields(self):
out = dict()
for f in self.resource.model._meta.fields:
out[f.name] = f
return out
def _get_m2m_fields(self):
out = dict()
for mf in self.resource.model._meta.many_to_many:
if mf.serialize:
out[mf.name] = mf
return out
def _response(self, obj):
result = {}
fields = self.resource.get_fields(obj)
resource_method_fields = self._get_resource_method_fields(fields)
model_fields = self._get_model_fields()
m2m_fields = self._get_m2m_fields()
for field_name in fields.flat():
if field_name in resource_method_fields:
result[field_name] = {
'type': 'method',
'verbose_name': getattr(resource_method_fields[field_name], 'short_description', None),
}
elif field_name in m2m_fields:
result[field_name] = {
'type': m2m_fields[field_name].__class__.__name__,
'verbose_name': m2m_fields[field_name].verbose_name,
}
elif field_name in model_fields:
result[field_name] = {
'type': model_fields[field_name].__class__.__name__,
'verbose_name': model_fields[field_name].verbose_name,
}
else:
deskriptor = getattr(self.resource.model, field_name, None)
if deskriptor and hasattr(deskriptor, 'related'):
result[field_name] = {
'type': deskriptor.__class__.__name__,
}
else:
result[field_name] = {
'type': 'method',
}
return result
def get(self, obj):
return {
'RESPONSE': self._response(obj)
}
def post(self, obj):
return {
'REQUEST': self._request(obj),
'RESPONSE': self._response(obj)
}
def put(self, obj):
return {
'REQUEST': self._request(obj),
'RESPONSE': self._response(obj)
} | class Resourcemetamodel(object):
def __init__(self, resource):
self.resource = resource
def _request(self, obj):
form = self.resource._get_form(inst=obj, initial=self.resource._get_form_initial(obj))
result = {}
for (key, field) in form.fields.items():
choices = getattr(field, 'choices', None)
if choices:
choices = list(choices)
result[key] = {'type': field.__class__.__name__, 'is_required': field.required, 'verbose_name': field.label, 'initial': form[key].value(), 'widget': field.widget.__class__.__name__, 'help_text': field.help_text, 'choices': choices}
return result
def _get_resource_method_fields(self, fields):
out = dict()
for field in fields.flat():
t = getattr(self.resource, str(field), None)
if t and callable(t):
out[field] = t
return out
def _get_model_fields(self):
out = dict()
for f in self.resource.model._meta.fields:
out[f.name] = f
return out
def _get_m2m_fields(self):
out = dict()
for mf in self.resource.model._meta.many_to_many:
if mf.serialize:
out[mf.name] = mf
return out
def _response(self, obj):
result = {}
fields = self.resource.get_fields(obj)
resource_method_fields = self._get_resource_method_fields(fields)
model_fields = self._get_model_fields()
m2m_fields = self._get_m2m_fields()
for field_name in fields.flat():
if field_name in resource_method_fields:
result[field_name] = {'type': 'method', 'verbose_name': getattr(resource_method_fields[field_name], 'short_description', None)}
elif field_name in m2m_fields:
result[field_name] = {'type': m2m_fields[field_name].__class__.__name__, 'verbose_name': m2m_fields[field_name].verbose_name}
elif field_name in model_fields:
result[field_name] = {'type': model_fields[field_name].__class__.__name__, 'verbose_name': model_fields[field_name].verbose_name}
else:
deskriptor = getattr(self.resource.model, field_name, None)
if deskriptor and hasattr(deskriptor, 'related'):
result[field_name] = {'type': deskriptor.__class__.__name__}
else:
result[field_name] = {'type': 'method'}
return result
def get(self, obj):
return {'RESPONSE': self._response(obj)}
def post(self, obj):
return {'REQUEST': self._request(obj), 'RESPONSE': self._response(obj)}
def put(self, obj):
return {'REQUEST': self._request(obj), 'RESPONSE': self._response(obj)} |
ged_data = []
def initialize_file():
global ged_data
ged_data = []
def add_line(hierarchy,type,value=None):
global ged_data
if value:
ged_data.append(str(hierarchy) + ' ' + str(type) + ' ' + str(value))
else:
ged_data.append(str(hierarchy) + ' ' + str(type))
def append_record(parent,hierarchy,type,value=None):
new_record = ""
insert_before = None
existing_key_index = None
if (value):
new_record = (str(hierarchy) + ' ' + str(type) + ' ' + str(value))
else:
new_record = (str(hierarchy) + ' ' + str(type))
global ged_data
try:
existing_key_index = ged_data.index(parent)
except:
pass
if existing_key_index:
for i, elem in enumerate(ged_data[existing_key_index+1:]):
if '0 @' in elem:
insert_before = i+existing_key_index+1
break
if insert_before:
ged_data.insert(insert_before,new_record)
def render_output():
add_line(0,"TRLR")
return "\n".join(ged_data)
def already_exists(record_id,record_type):
#check for duplicates
record = ""
if record_type=="FAM":
record = "0 @F{}@ FAM".format(str(record_id))
elif record_type=='INDI':
record = "0 @I{}@ INDI".format(str(record_id))
else:
raise Exception ('Invalid record type specified.')
if record in ged_data:
return True
else:
return False | ged_data = []
def initialize_file():
global ged_data
ged_data = []
def add_line(hierarchy, type, value=None):
global ged_data
if value:
ged_data.append(str(hierarchy) + ' ' + str(type) + ' ' + str(value))
else:
ged_data.append(str(hierarchy) + ' ' + str(type))
def append_record(parent, hierarchy, type, value=None):
new_record = ''
insert_before = None
existing_key_index = None
if value:
new_record = str(hierarchy) + ' ' + str(type) + ' ' + str(value)
else:
new_record = str(hierarchy) + ' ' + str(type)
global ged_data
try:
existing_key_index = ged_data.index(parent)
except:
pass
if existing_key_index:
for (i, elem) in enumerate(ged_data[existing_key_index + 1:]):
if '0 @' in elem:
insert_before = i + existing_key_index + 1
break
if insert_before:
ged_data.insert(insert_before, new_record)
def render_output():
add_line(0, 'TRLR')
return '\n'.join(ged_data)
def already_exists(record_id, record_type):
record = ''
if record_type == 'FAM':
record = '0 @F{}@ FAM'.format(str(record_id))
elif record_type == 'INDI':
record = '0 @I{}@ INDI'.format(str(record_id))
else:
raise exception('Invalid record type specified.')
if record in ged_data:
return True
else:
return False |
#List 1
a = ['physics','chemistry',2003,2009]
#List 2
b = [1,2,3,4,5]
#List 3
c = ["p","r","s"]
a.insert(0,'Biology')
b.insert(5,6)
c.insert(1,"q")
print(a,b,c)
#Result
#['Biology', 'physics', 'chemistry', 2003, 2009] [1, 2, 3, 4, 5, 6] ['p', 'q', 'r', 's']
| a = ['physics', 'chemistry', 2003, 2009]
b = [1, 2, 3, 4, 5]
c = ['p', 'r', 's']
a.insert(0, 'Biology')
b.insert(5, 6)
c.insert(1, 'q')
print(a, b, c) |
#
# PySNMP MIB module SUN-ILOM-CONTROL-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/SUN-ILOM-CONTROL-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:12:04 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ConstraintsIntersection", "ValueSizeConstraint")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup")
ObjectIdentity, ModuleIdentity, Bits, Integer32, NotificationType, Gauge32, Counter32, MibIdentifier, Unsigned32, enterprises, iso, Counter64, IpAddress, TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "ModuleIdentity", "Bits", "Integer32", "NotificationType", "Gauge32", "Counter32", "MibIdentifier", "Unsigned32", "enterprises", "iso", "Counter64", "IpAddress", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TruthValue, RowStatus, DateAndTime, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "RowStatus", "DateAndTime", "TextualConvention", "DisplayString")
sun = MibIdentifier((1, 3, 6, 1, 4, 1, 42))
products = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2))
ilom = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175))
ilomCtrlMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 42, 2, 175, 102))
ilomCtrlMIB.setRevisions(('2010-06-11 00:00', '2010-06-08 00:00', '2009-03-30 00:00', '2009-03-03 00:00', '2008-05-15 00:00', '2008-04-11 00:00', '2007-02-20 00:00', '2006-12-15 00:00', '2005-12-19 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: ilomCtrlMIB.setRevisionsDescriptions(("Add support for the SPARC diagnostic 'HW change' trigger", 'Add ActiveDirectory parameter ilomCtrlActiveDirStrictCredentialErrorEnabled', 'Add LdapSsl optional User Mapping parameters.', 'Add ActiveDirectory parameter ilomCtrlActiveDirExpSearchEnabled.', "Version 3.0 Released with ILOM version 3.0 Added alert event class/type filtering Added Telemetry Harness Daemon (THD) Added dns-locator objects and certificate params for ActiveDirectory Added ilomCtrlLdapSsl Unify POST knobs for Volume and Enterprise Products Added BackupAndRestore configuration XML file support Added DNS configuration support Added factory to ILOMCtrlResetToDefaultsAction Added 'other' values to several TCs Added ilomCtrlSPARCHostHypervisorVersion Added ilomCtrlSPARCHostSysFwVersion Added ilomCtrlSPARCHostSendBreakAction Added sideband management support", 'Add destinationport for use with trap type alerts. Remove range from ilomCtrlEventLogRecordID.', 'Version 2.0', 'Version: 1.1 Released with ILOM version 1.1.5', 'Version: 0.7 Initial Release',))
if mibBuilder.loadTexts: ilomCtrlMIB.setLastUpdated('201006110000Z')
if mibBuilder.loadTexts: ilomCtrlMIB.setOrganization('Oracle Corporation')
if mibBuilder.loadTexts: ilomCtrlMIB.setContactInfo('Oracle Corporation 500 Oracle Parkway Redwood Shores, CA 95065 U.S.A. http://www.oracle.com')
if mibBuilder.loadTexts: ilomCtrlMIB.setDescription('SUN-ILOM-CONTROL-MIB.mib Version 3.0 Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. This MIB controls all Sun Integrated Lights Out Management devices.')
ilomCtrlClients = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1))
ilomCtrlServices = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2))
ilomCtrlNetwork = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3))
ilomCtrlUsers = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4))
ilomCtrlSessions = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5))
ilomCtrlFirmwareMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6))
ilomCtrlLogs = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7))
ilomCtrlAlerts = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8))
ilomCtrlClock = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9))
ilomCtrlSerial = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10))
ilomCtrlPowerReset = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11))
ilomCtrlRedundancy = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12))
ilomCtrlPolicy = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13))
ilomCtrlConfigMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14))
ilomCtrlSPARC = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15))
ilomCtrlIdentification = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 16))
ilomCtrlThd = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17))
ilomCtrlConformances = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18))
ilomCtrlNtp = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 1))
ilomCtrlLdap = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2))
ilomCtrlRadius = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3))
ilomCtrlRemoteSyslog = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 4))
ilomCtrlActiveDirectory = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5))
ilomCtrlSMTP = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6))
ilomCtrlLdapSsl = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7))
ilomCtrlDNS = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8))
ilomCtrlHttp = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1))
ilomCtrlHttps = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 2))
ilomCtrlSsh = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3))
ilomCtrlSingleSignon = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 4))
ilomCtrlEventLog = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1))
ilomCtrlPowerControl = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1))
ilomCtrlResetControl = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2))
ilomCtrlBackupAndRestore = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2))
ilomCtrlSPARCDiags = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1))
ilomCtrlSPARCHostControl = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2))
ilomCtrlSPARCBootMode = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3))
ilomCtrlSPARCKeySwitch = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 4))
ilomCtrlCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 1))
ilomCtrlGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 2))
class ILOMCtrlTargetIndex(TextualConvention, OctetString):
description = 'A string that is short enough to be used properly as an index without overflowing the maximum number of subOIDs.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 110)
class ILOMCtrlModTargetIndex(TextualConvention, OctetString):
description = 'A string that is short enough to be used properly along with ILOMCtrlInstanceTargetIndex as a pair of indexes without overflowing the maximum number of subOIDs.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 12)
class ILOMCtrlInstanceTargetIndex(TextualConvention, OctetString):
description = 'A string that is short enough to be used properly along with ILOMCtrlModTargetIndex as a pair of indexes without overflowing the maximum number of subOIDs.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 100)
class ILOMCtrlSessionsConnectionType(TextualConvention, Integer32):
description = 'An enumerated value which describes possible connection types by which a user can be log in.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("shell", 1), ("web", 2), ("other", 3), ("snmp", 4))
class ILOMCtrlLocalUserUsername(TextualConvention, OctetString):
description = "A local user username. This must start with an alphabetical letter and may contain alphabetical letters, digits, hyphens and underscores. This can not be 'password'. This can not contain spaces."
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(4, 16)
class ILOMCtrlLocalUserPassword(TextualConvention, OctetString):
description = 'A local user password.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(8, 16)
class ILOMCtrlUserRole(TextualConvention, Integer32):
description = 'An enumerated value which describes possible privilege levels (also known as roles) a user can have. ***NOTE: this textual-convention is deprecated and replaced by ILOMCtrlUserRoles.'
status = 'deprecated'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("administrator", 1), ("operator", 2), ("none", 3), ("other", 4))
class ILOMCtrlUserRoles(TextualConvention, OctetString):
description = "A set of role-IDs which describe the possible privilege levels (also known as roles) for a user. This property supports the legacy roles of 'Administrator' or 'Operator', or any of the individual role ID combinations of 'a', 'u', 'c', 'r', 'o' and 's' (like 'aucro') where a-admin, u-user, c-console, r-reset, s-service and o-readOnly."
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 13)
class ILOMCtrlLocalUserAuthCLIMode(TextualConvention, Integer32):
description = "An enumerated value which describes the possible CLI modes. The 'default' mode corresponds to the ILOM DMTF CLP. The 'alom' mode corresponds to the ALOM CMT."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("default", 1), ("alom", 2))
class ILOMCtrlPowerAction(TextualConvention, Integer32):
description = 'An enumerated value which describes possible actions that can applied to a power control target.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("powerOn", 1), ("powerOff", 2), ("powerCycle", 3), ("powerSoft", 4))
class ILOMCtrlResetAction(TextualConvention, Integer32):
description = 'An enumerated value which describes possible actions that can applied to a reset control target.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("reset", 1), ("resetNonMaskableInterrupt", 2), ("force", 3))
class ILOMCtrlNetworkIpDiscovery(TextualConvention, Integer32):
description = 'An enumerated value which determines whether the IP settings should static or dynamic (DHCP).'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("static", 1), ("dynamic", 2), ("other", 3))
class ILOMCtrlEventLogType(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible event log type.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("log", 1), ("action", 2), ("fault", 3), ("state", 4), ("repair", 5), ("other", 6))
class ILOMCtrlEventLogClass(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible event log class.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))
namedValues = NamedValues(("audit", 1), ("ipmi", 2), ("chassis", 3), ("fma", 4), ("system", 5), ("pcm", 6), ("other", 7))
class ILOMCtrlEventSeverity(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible event severities.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("disable", 1), ("critical", 2), ("major", 3), ("minor", 4), ("down", 5), ("other", 6))
class ILOMCtrlAlertType(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible alert notification types.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("email", 1), ("snmptrap", 2), ("ipmipet", 3))
class ILOMCtrlAlertSNMPVersion(TextualConvention, Integer32):
description = 'An enumeration of the possible SNMP versions for traps generated by configuring alert rules.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("v1", 1), ("v2c", 2), ("v3", 3))
class ILOMCtrlBaudRate(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible baud rates for serial ports.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("baud9600", 1), ("baud19200", 2), ("baud38400", 3), ("baud57600", 4), ("baud115200", 5))
class ILOMCtrlFlowControl(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible flowcontrol settings for serial ports.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("unknown", 1), ("hardware", 2), ("software", 3), ("none", 4))
class ILOMCtrlFirmwareUpdateStatus(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible status values during a firmware update.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("tftpError", 1), ("imageVerificationFailed", 2), ("inProgress", 3), ("success", 4), ("other", 5))
class ILOMCtrlFirmwareUpdateAction(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible firmware management actions.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("clearProperties", 1), ("initiate", 2))
class ILOMCtrlResetToDefaultsAction(TextualConvention, Integer32):
description = 'An enumerated value indicating possible actions for resetting the SP back to factory defaults.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("none", 1), ("all", 2), ("factory", 3))
class ILOMCtrlRedundancyStatus(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states a device can have in a redundant configuration.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("initializing", 1), ("active", 2), ("standby", 3), ("standAlone", 4), ("other", 5))
class ILOMCtrlRedundancyAction(TextualConvention, Integer32):
description = 'Setting the redundancy action to initiateFailover will cause the current SC to switch mastership. i.e., it will initiate actions to become master if it is standby or to become standby if it is master. No action is taken if the SC is initializing or running in standalone mode.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("ready", 1), ("initiateFailover", 2))
class ILOMCtrlSPARCDiagsLevel(TextualConvention, Integer32):
description = "An enumerated value which contains all the possible states for embedded diagnostics for the host. The min value is the same as the 'enabled' value on some platforms and the max value is the same as the 'extended' value. ***NOTE: this textual-convention is deprecated and replaced with ILOMCtrlSPARCDiagsLevelAdv."
status = 'deprecated'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("min", 1), ("max", 2), ("advsettings", 3))
class ILOMCtrlSPARCDiagsLevelAdv(TextualConvention, Integer32):
description = "An enumerated value which contains all the possible states for embedded diagnostics for the host. The min value is the same as the 'enabled' value on some platforms and the max value is the same as the 'extended' value."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("init", 1), ("minimum", 2), ("normal", 3), ("maximum", 4), ("other", 5))
class ILOMCtrlSPARCDiagsTrigger(TextualConvention, Integer32):
description = "An enumerated value which contains all the possible states for the trigger for embedded diagnostics on the host. x64 platforms with embedded diagnostics only support 'all-resets' and 'none' as possible states."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))
namedValues = NamedValues(("allResets", 1), ("none", 2), ("userReset", 3), ("powerOnReset", 4), ("errorTest", 5), ("userResetandpowerOnReset", 6), ("userResetanderrorTest", 7), ("userTestandpowerOnReset", 8), ("hwChange", 9), ("hwChangeandpowerOnReset", 10), ("hwChangeanderrorTest", 11))
class ILOMCtrlSPARCDiagsMode(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible OPS modes specified to POST.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("off", 1), ("normal", 2), ("service", 3), ("unknown", 4))
class ILOMCtrlSPARCDiagsVerbosity(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the verbosity level for embedded diagnostics on the host. ***NOTE: this textual-convention is deprecated and replaced with ILOMCtrlSPARCDiagsVerbosityAdv.'
status = 'deprecated'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("min", 1), ("max", 2), ("advsettings", 3))
class ILOMCtrlSPARCDiagsVerbosityAdv(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the verbosity level for embedded diagnostics on the host.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("none", 1), ("minimum", 2), ("normal", 3), ("maximum", 4), ("debug", 5))
class ILOMCtrlSPARCHostAutoRestartPolicy(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible actions to perform when the SP determines that the host has hung.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("none", 1), ("reset", 2), ("dumpcore", 3))
class ILOMCtrlSPARCHostBootRestart(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible actions to perform when the boot timer expires.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("none", 1), ("reset", 2))
class ILOMCtrlSPARCHostBootFailRecovery(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible actions to perform when the max boot failures allowed is reached.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("none", 1), ("powercycle", 2), ("poweroff", 3))
class ILOMCtrlSPARCHostSendBreakAction(TextualConvention, Integer32):
description = 'Send Break Action to Host.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("nop", 1), ("break", 2), ("dumpcore", 3))
class ILOMCtrlSPARCHostIoReconfigurePolicy(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the host IO reconfiguration policy that is applied at next host power-on.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("false", 1), ("nextboot", 2), ("true", 3))
class ILOMCtrlSPARCBootModeState(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the boot mode state.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("normal", 1), ("resetNvram", 2))
class ILOMCtrlSPARCKeySwitchState(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the key switch.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("normal", 1), ("standby", 2), ("diag", 3), ("locked", 4))
class ILOMCtrlSPARCDiagsAction(TextualConvention, Integer32):
description = 'An action to take to control POST running on the host.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("stop", 1), ("start", 2))
class ILOMCtrlSshKeyGenType(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible key types for ssh.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("none", 1), ("rsa", 2), ("dsa", 3))
class ILOMCtrlThdAction(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible control actions for a THD module.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("suspend", 1), ("resume", 2), ("nop", 3))
class ILOMCtrlBackupAndRestoreAction(TextualConvention, Integer32):
description = 'An action to start Backup or Restore operation.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("backup", 1), ("restore", 2))
ilomCtrlDeviceNTPServerOneIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 1, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDeviceNTPServerOneIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDeviceNTPServerOneIP.setDescription('The IP address of the first NTP server used by the device. This property is ignored if NTP is not enabled.')
ilomCtrlDeviceNTPServerTwoIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDeviceNTPServerTwoIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDeviceNTPServerTwoIP.setDescription('The IP address of the second NTP server used by the device. This property is ignored if NTP is not enabled.')
ilomCtrlLdapEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapEnabled.setDescription('Specifies whether or not the LDAP client is enabled.')
ilomCtrlLdapServerIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapServerIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapServerIP.setDescription('The IP address of the LDAP server used as a name service for user accounts.')
ilomCtrlLdapPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapPortNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapPortNumber.setDescription('Specifies the port number for the LDAP client.')
ilomCtrlLdapBindDn = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 4), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapBindDn.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapBindDn.setDescription('The distinguished name (DN) for the read-only proxy user used to bind to the LDAP server. Example: cn=proxyuser,ou=people,dc=sun,dc=com')
ilomCtrlLdapBindPassword = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 5), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapBindPassword.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapBindPassword.setDescription('The password of a read-only proxy user which is used to bind to the LDAP server. This property is essentially write-only. The write-only access level is no longer supported as of SNMPv2. This property must return a null value when read.')
ilomCtrlLdapSearchBase = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 6), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSearchBase.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSearchBase.setDescription('A search base in the LDAP database below which to find users. Example: ou=people,dc=sun,dc=com')
ilomCtrlLdapDefaultRole = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 7), ILOMCtrlUserRole()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapDefaultRole.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLdapDefaultRole.setDescription('Specifies the role that a user authenticated via LDAP should have. ***NOTE: this object is deprecated and replaced by ilomCtrlLdapDefaultRoles.')
ilomCtrlLdapDefaultRoles = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 8), ILOMCtrlUserRoles()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapDefaultRoles.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapDefaultRoles.setDescription("Specifies the role that a user authenticated via LDAP should have. This property supports the legacy roles of 'Administrator' or 'Operator', or any of the individual role ID combinations of 'a', 'u', 'c', 'r', 'o' and 's' (like 'aucro') where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilomCtrlRadiusEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRadiusEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRadiusEnabled.setDescription('Specifies whether or not the RADIUS client is enabled.')
ilomCtrlRadiusServerIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRadiusServerIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRadiusServerIP.setDescription('The IP address of the RADIUS server used as a name service for user accounts.')
ilomCtrlRadiusPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRadiusPortNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRadiusPortNumber.setDescription('Specifies the port number for the RADIUS client.')
ilomCtrlRadiusSecret = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 4), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRadiusSecret.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRadiusSecret.setDescription('The shared secret encryption key that is used to encypt traffic between the RADIUS client and server.')
ilomCtrlRadiusDefaultRole = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 5), ILOMCtrlUserRole()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRadiusDefaultRole.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlRadiusDefaultRole.setDescription('Specifies the role that a user authenticated via RADIUS should have. ***NOTE: this object is deprecated and replaced by ILOMCtrlUserRoles.')
ilomCtrlRadiusDefaultRoles = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 6), ILOMCtrlUserRoles()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRadiusDefaultRoles.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRadiusDefaultRoles.setDescription("Specifies the role that a user authenticated via RADIUS should have. This property supports the legacy roles of 'Administrator' or 'Operator', or any of the individual role ID combinations of 'a', 'u', 'c', 'r', 'o' and 's' (like 'aucro') where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilomCtrlRemoteSyslogDest1 = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 4, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRemoteSyslogDest1.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRemoteSyslogDest1.setDescription('The IP address of the first remote syslog destination (log host).')
ilomCtrlRemoteSyslogDest2 = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 4, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRemoteSyslogDest2.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRemoteSyslogDest2.setDescription('The IP address of the second remote syslog destination (log host).')
ilomCtrlHttpEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlHttpEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlHttpEnabled.setDescription('Specifies whether or not the embedded web server should be running and listening on the HTTP port.')
ilomCtrlHttpPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlHttpPortNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlHttpPortNumber.setDescription('Specifies the port number that the embedded web server should listen to for HTTP requests.')
ilomCtrlHttpSecureRedirect = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1, 3), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlHttpSecureRedirect.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlHttpSecureRedirect.setDescription('Specifies whether or not the embedded web server should redirect HTTP connections to HTTPS.')
ilomCtrlHttpsEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 2, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlHttpsEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlHttpsEnabled.setDescription('Specifies whether or not the embedded web server should be running and listening on the HTTPS port.')
ilomCtrlHttpsPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlHttpsPortNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlHttpsPortNumber.setDescription('Specifies the port number that the embedded web server should listen to for HTTPS requests.')
ilomCtrlSshRsaKeyFingerprint = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 1), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSshRsaKeyFingerprint.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshRsaKeyFingerprint.setDescription('The fingerprint of the RSA key used for the SSH protocol.')
ilomCtrlSshRsaKeyLength = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSshRsaKeyLength.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshRsaKeyLength.setDescription('The length of the RSA key used for the SSH protocol.')
ilomCtrlSshDsaKeyFingerprint = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSshDsaKeyFingerprint.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshDsaKeyFingerprint.setDescription('The fingerprint of the DSA key used for the SSH protocol.')
ilomCtrlSshDsaKeyLength = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSshDsaKeyLength.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshDsaKeyLength.setDescription('The length of the DSA key used for the SSH protocol.')
ilomCtrlSshGenerateNewKeyAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 5), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSshGenerateNewKeyAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshGenerateNewKeyAction.setDescription('This property is used to initiate a new public key generation.')
ilomCtrlSshGenerateNewKeyType = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 6), ILOMCtrlSshKeyGenType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSshGenerateNewKeyType.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshGenerateNewKeyType.setDescription('SSH new key type. The possible type are rsa(2), dsa(3).')
ilomCtrlSshRestartSshdAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 7), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSshRestartSshdAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshRestartSshdAction.setDescription('This property is used to initiate sshd restart.')
ilomCtrlSshEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 8), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSshEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSshEnabled.setDescription('Speicfies whether or not the SSHD is enabled.')
ilomCtrlSingleSignonEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 4, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSingleSignonEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSingleSignonEnabled.setDescription('Specified whether single sign-on authentication should be enabled on the device. Single sign-on allows tokens to be passed around so that it is not necessary to re-enter passwords between different applications. This would allow single sign-on between the SC web interface and the SP web interface, between the SC command-line interface and the SP command-line interface, and between the SC and SP interfaces and the Java Remote Console application.')
ilomCtrlNetworkTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1), )
if mibBuilder.loadTexts: ilomCtrlNetworkTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkTable.setDescription('A table listing all targets whose networks can be controlled.')
ilomCtrlNetworkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkTarget"))
if mibBuilder.loadTexts: ilomCtrlNetworkEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkEntry.setDescription('An entry for a target which can be reset.')
ilomCtrlNetworkTarget = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 1), SnmpAdminString())
if mibBuilder.loadTexts: ilomCtrlNetworkTarget.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkTarget.setDescription("This is the nomenclature name for a target which has a configurable network. On some systems, there are multiple targets which have networks. On a traditional, non-blade system, this table will contain only one row for the network configuration of the service processor, which has a nomenclature name of '/SP'. On blade systems, this table will contain multiple rows. There will be a row for '/SC' which allows for configuration of the system controller's network settings. In addition, there will be rows for each blade's service processor. For example, a blade's service processor nomenclature takes the form of '/CH/BL0/SP', '/CH/BL1/SP' and so on. This will allow for the configuration of the service processors from the system controller. In the case of redundant system controllers, the floating master IP addressed can be configured using a name of /MASTERSC.")
ilomCtrlNetworkMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 2), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkMacAddress.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkMacAddress.setDescription('Specifies the MAC address of the service processor or system controller.')
ilomCtrlNetworkIpDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 3), ILOMCtrlNetworkIpDiscovery()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkIpDiscovery.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkIpDiscovery.setDescription('Specifies whether the current target is configured to have static IP settings or whether these settings are retrieved dynamically from DHCP.')
ilomCtrlNetworkIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkIpAddress.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkIpAddress.setDescription('Indicates the current IP address for the given target.')
ilomCtrlNetworkIpGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkIpGateway.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkIpGateway.setDescription('Indicates the current IP gateway for the given target.')
ilomCtrlNetworkIpNetmask = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkIpNetmask.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkIpNetmask.setDescription('Indicates the current IP netmask for the given target.')
ilomCtrlNetworkPendingIpDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 7), ILOMCtrlNetworkIpDiscovery()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpDiscovery.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpDiscovery.setDescription('This property is used to set the pending value for the mode of IP discovery for the given target. The possible values are static(1) or dynamic(2). Static values can be specified by setting the other pending properties in this table: ilomCtrlNetworkPendingIpAddress, ilomCtrlNetworkPendingIpGateway, and ilomCtrlNetworkPendingIpNetmask. If dynamic is specified, the other pending properties should not be set. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilomCtrlNetworkPendingIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 8), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpAddress.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpAddress.setDescription('This property is used to set the pending IP address for the given target. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilomCtrlNetworkPendingIpGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 9), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpGateway.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpGateway.setDescription('This property is used to set the pending IP gateway for the given target. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilomCtrlNetworkPendingIpNetmask = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 10), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpNetmask.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkPendingIpNetmask.setDescription('This property is used to set the pending IP netmask for the given target. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilomCtrlNetworkCommitPending = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 11), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkCommitPending.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkCommitPending.setDescription('This property is used to commit pending properties for the given row. Settings this property to true(1) will cause the network to be reconfigured according to the values specified in the other pending properties.')
ilomCtrlNetworkOutOfBandMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 12), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkOutOfBandMacAddress.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkOutOfBandMacAddress.setDescription('Specifies the MAC address of the out of band management interface (where applicable)')
ilomCtrlNetworkSidebandMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 13), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkSidebandMacAddress.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkSidebandMacAddress.setDescription('Specifies the MAC address of the sideband management interface (where applicable)')
ilomCtrlNetworkPendingManagementPort = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 14), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkPendingManagementPort.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkPendingManagementPort.setDescription('This property is used to set the pending management port for the giventarget. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilomCtrlNetworkManagementPort = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 15), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkManagementPort.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkManagementPort.setDescription('Indicates the current managment port for the given target')
ilomCtrlNetworkDHCPServerAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 16), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlNetworkDHCPServerAddr.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkDHCPServerAddr.setDescription('The address of the DHCP server for this row.')
ilomCtrlNetworkState = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 17), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNetworkState.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNetworkState.setDescription('Specifies whether or not the row is enabled.')
ilomCtrlLocalUserAuthTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1), )
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthTable.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthTable.setDescription('This table provides a listing of the current local users on a system along with their password state. ***NOTE: this table is deprecated and replaced with ilomCtrlLocalUserTable.')
ilomCtrlLocalUserAuthEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserAuthUsername"))
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthEntry.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthEntry.setDescription('An entry containing objects for a local user in the database. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserEntry.')
ilomCtrlLocalUserAuthUsername = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 1), SnmpAdminString())
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthUsername.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthUsername.setDescription('The username of a local user on the device. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserUsername.')
ilomCtrlLocalUserAuthPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 2), SnmpAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthPassword.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthPassword.setDescription('The password of a local user on the device. This property is essentially write-only. The write-only access level is no longer supported as of SNMPv2. This property must return a null value when read. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserPassword.')
ilomCtrlLocalUserAuthRole = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 3), ILOMCtrlUserRole()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthRole.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthRole.setDescription("Specifies whether a user's password is assigned or unassigned. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserRoles.")
ilomCtrlLocalUserAuthRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthRowStatus.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthRowStatus.setDescription('This object is used to create a new row or to delete an existing row in the table. This property can be set to either createAndWait(5) or destroy(6), to create and remove a user respectively. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserRowStatus.')
ilomCtrlLocalUserAuthCLIMode = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 5), ILOMCtrlLocalUserAuthCLIMode()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthCLIMode.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlLocalUserAuthCLIMode.setDescription("Allows the CLI mode to be configured on a per-user basis. The CLI mode determines which shell the user will interact with. If the 'default' mode is select, the user will see the DMTF CLP after logging in via ssh or the console. If the 'alom' mode is selected, the user will see the ALOM CMT shell after logging in via ssh or the console. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserCLIMode.")
ilomCtrlLocalUserTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2), )
if mibBuilder.loadTexts: ilomCtrlLocalUserTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLocalUserTable.setDescription('This table provides a listing of the current local users on a system along with their password state.')
ilomCtrlLocalUserEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserUsername"))
if mibBuilder.loadTexts: ilomCtrlLocalUserEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLocalUserEntry.setDescription('An entry containing objects for a local user in the database.')
ilomCtrlLocalUserUsername = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 1), ILOMCtrlLocalUserUsername())
if mibBuilder.loadTexts: ilomCtrlLocalUserUsername.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLocalUserUsername.setDescription('The username of a local user on the device.')
ilomCtrlLocalUserPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 2), ILOMCtrlLocalUserPassword()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ilomCtrlLocalUserPassword.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLocalUserPassword.setDescription('The password of a local user on the device. This property is essentially write-only. The write-only access level is no longer supported as of SNMPv2. This property must return a null value when read.')
ilomCtrlLocalUserRoles = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 3), ILOMCtrlUserRoles()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLocalUserRoles.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLocalUserRoles.setDescription("Specifies the role that is associated with a user. The roles can be assigned for the legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's'. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilomCtrlLocalUserRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ilomCtrlLocalUserRowStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLocalUserRowStatus.setDescription('This object is used to create a new row or to delete an existing row in the table. This property can be set to either createAndWait(5) or destroy(6), to create and remove a user respectively.')
ilomCtrlLocalUserCLIMode = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 5), ILOMCtrlLocalUserAuthCLIMode()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLocalUserCLIMode.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLocalUserCLIMode.setDescription("Allows the CLI mode to be configured on a per-user basis. The CLI mode determines which shell the user will interact with. If the 'default' mode is select, the user will see the DMTF CLP after logging in via ssh or the console. If the 'alom' mode is selected, the user will see the ALOM CMT shell after logging in via ssh or the console.")
ilomCtrlSessionsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1), )
if mibBuilder.loadTexts: ilomCtrlSessionsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSessionsTable.setDescription('A table listing the current user sessions.')
ilomCtrlSessionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlSessionsId"))
if mibBuilder.loadTexts: ilomCtrlSessionsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSessionsEntry.setDescription('An entry for a current session.')
ilomCtrlSessionsId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: ilomCtrlSessionsId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSessionsId.setDescription('The instance number of a given logged-in user. This property is necessary since the same user can be logged in multiple times.')
ilomCtrlSessionsUsername = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 2), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSessionsUsername.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSessionsUsername.setDescription('The username of the user associated with the session.')
ilomCtrlSessionsConnectionType = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 3), ILOMCtrlSessionsConnectionType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSessionsConnectionType.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSessionsConnectionType.setDescription('The type of connection that the given user is using to access the device.')
ilomCtrlSessionsLoginTime = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 4), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSessionsLoginTime.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSessionsLoginTime.setDescription('The date and time that the logged into the device.')
ilomCtrlFirmwareMgmtVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 1), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtVersion.setDescription('The version of the current firmware image.')
ilomCtrlFirmwareBuildNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlFirmwareBuildNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareBuildNumber.setDescription('The build number of the current firmware image.')
ilomCtrlFirmwareBuildDate = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlFirmwareBuildDate.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareBuildDate.setDescription('The build date and time of the current firmware image.')
ilomCtrlFirmwareTFTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlFirmwareTFTPServerIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareTFTPServerIP.setDescription('The IP address of the TFTP server which will be used to download the the firmware image.')
ilomCtrlFirmwareTFTPFileName = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 5), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlFirmwareTFTPFileName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareTFTPFileName.setDescription('The relative path of the new firmware image file on the TFTP server.')
ilomCtrlFirmwarePreserveConfig = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 6), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlFirmwarePreserveConfig.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwarePreserveConfig.setDescription('This property determines whether the previous configuration of the device should be preserved after a firmware update. The configuration data includes all users information, configuration of clients and services, and any logs. The default value of this property is true.')
ilomCtrlFirmwareMgmtStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 7), ILOMCtrlFirmwareUpdateStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtStatus.setDescription('This property indicates the status of a firmware update. If a TFTP error occurred while attempting to upload a new firmware image, the value of this property will be tftpError(1). If the image was uploaded correctly but it did not pass verification, the value of this property will be imageVerificationFailed(2). Otherwise, the status will indicate that the update is inProgress(3) or is a success(4). A firmware update could take as long as 20 minutes. During this time, no other operations should be performed on the device. Upon success, the device will be reset.')
ilomCtrlFirmwareMgmtAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 8), ILOMCtrlFirmwareUpdateAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtAction.setDescription('This property is used to initiate a firmware update using the values of the other firmware management properties as parameters. It can also clear the values of those parameters. To initiate a firmware update, set the value of this property to initate(2). To clear the values of the writeable firmware management properties, set this propery to clearProperties(1). Before initiating a firmware update, the ilomCtrlFirmwareTFTPServerIP, ilomCtrlFirmwareTFTPFileName, and ilomCtrlFirmwarePreserveConfig properties must be set. After intiating a firmware update, the ilomCtrlFirmwareMgmtStatus property can be used to determine if the operation was successful. This is effectively a write-only property.')
ilomCtrlFirmwareMgmtFilesystemVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 9), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtFilesystemVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareMgmtFilesystemVersion.setDescription('The version of the current file system.')
ilomCtrlFirmwareDelayBIOS = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 10), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlFirmwareDelayBIOS.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlFirmwareDelayBIOS.setDescription("On servers that support a BIOS, this property is used to postpone the BIOS upgrade until the next server poweroff. Setting this property to 'false' will cause the server to be forced off if a BIOS upgrade is necessary. The default value of this property is false.")
ilomCtrlEventLogTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1), )
if mibBuilder.loadTexts: ilomCtrlEventLogTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogTable.setDescription('This table provides a list of the current entries in the event log.')
ilomCtrlEventLogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlEventLogRecordID"))
if mibBuilder.loadTexts: ilomCtrlEventLogEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogEntry.setDescription('An entry in the event logs table.')
ilomCtrlEventLogRecordID = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 1), Unsigned32())
if mibBuilder.loadTexts: ilomCtrlEventLogRecordID.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogRecordID.setDescription('The record number for a given the event log entry.')
ilomCtrlEventLogType = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 2), ILOMCtrlEventLogType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlEventLogType.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogType.setDescription('An integer representing the type of event.')
ilomCtrlEventLogTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 3), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlEventLogTimestamp.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogTimestamp.setDescription('The date and time that the event log entry was recorded.')
ilomCtrlEventLogClass = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 4), ILOMCtrlEventLogClass()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlEventLogClass.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogClass.setDescription('An integer representing the class of event.')
ilomCtrlEventLogSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 5), ILOMCtrlEventSeverity()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlEventLogSeverity.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogSeverity.setDescription('The event severity corresponding to the given log entry.')
ilomCtrlEventLogDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 6), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlEventLogDescription.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogDescription.setDescription('A textual description of the event.')
ilomCtrlEventLogClear = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlEventLogClear.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlEventLogClear.setDescription("When set to 'true' clears the event log.")
ilomCtrlAlertsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1), )
if mibBuilder.loadTexts: ilomCtrlAlertsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertsTable.setDescription('This table is used to view and add alert rules.')
ilomCtrlAlertsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertID"))
if mibBuilder.loadTexts: ilomCtrlAlertsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertsEntry.setDescription('An entry containing objects for an alert rule.')
ilomCtrlAlertID = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: ilomCtrlAlertID.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertID.setDescription('An integer ID associated with a given alert rule.')
ilomCtrlAlertSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 2), ILOMCtrlEventSeverity()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertSeverity.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertSeverity.setDescription('This property specifies the mininum event severity which should trigger an alert, for a given class.')
ilomCtrlAlertType = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 3), ILOMCtrlAlertType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertType.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertType.setDescription('This property specifies the type of notification for a given alert. If the type is snmptrap(2) or ipmipet(3), the ilomCtrlAlertDestinationIP must be specified. If the type is email(1), the ilomCtrlAlertDestinationEmail must be specified.')
ilomCtrlAlertDestinationIP = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertDestinationIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertDestinationIP.setDescription('This property species the IP address to send alert notifications when the alert type is snmptrap(2), ipmipet(3), or remotesyslog(4).')
ilomCtrlAlertDestinationEmail = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 5), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertDestinationEmail.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertDestinationEmail.setDescription('This property species the email address to send alert notifications when the alert type is email(1).')
ilomCtrlAlertSNMPVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 6), ILOMCtrlAlertSNMPVersion()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertSNMPVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertSNMPVersion.setDescription('The version of SNMP trap that should be used for the given alert rule.')
ilomCtrlAlertSNMPCommunityOrUsername = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 7), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertSNMPCommunityOrUsername.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertSNMPCommunityOrUsername.setDescription("This string specifies the community string to be used when the ilomCtrlAlertSNMPVersion property is set to 'v1' or 'v2c'. Alternatively, this string specifies the SNMP username to use when the ilomCtrlAlertSNMPVersion is set to 'v3'.")
ilomCtrlAlertDestinationPort = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertDestinationPort.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertDestinationPort.setDescription('Destination port for SNMP traps, 0 maps to the default')
ilomCtrlAlertEmailEventClassFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 9), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertEmailEventClassFilter.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertEmailEventClassFilter.setDescription("A class name or 'all' to filter emailed alerts on.")
ilomCtrlAlertEmailEventTypeFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 10), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertEmailEventTypeFilter.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertEmailEventTypeFilter.setDescription("A type name or 'all' to filter emailed alerts on.")
ilomCtrlAlertEmailCustomSender = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 11), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertEmailCustomSender.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertEmailCustomSender.setDescription("An optional format to identify the sender or the 'from' address. Customizing this string allows the user to specify the exact contents (up to 80 chars) of the 'from' field in the email message. Either one of the substitution strings '<IPADDRESS>' or '<HOSTNAME>' can be used as needed. By default, this parameter is an empty string, which results in the standard ILOM formatted originator for the alerts. e.g., ilom-sp@sp1302.dev.sun.com, sun-ilom@[<IPADDRESS>], or ilom-alert@<HOSTNAME>.abc.com")
ilomCtrlAlertEmailMessagePrefix = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 12), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlAlertEmailMessagePrefix.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlAlertEmailMessagePrefix.setDescription('An optional string that can be added to the beginning of the message body. The prefix size can be up to 80 characters.')
ilomCtrlDateAndTime = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9, 1), DateAndTime()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDateAndTime.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDateAndTime.setDescription('The date and time of the device.')
ilomCtrlNTPEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlNTPEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlNTPEnabled.setDescription('Specifies whether or not Network Time Protocol is enabled.')
ilomCtrlTimezone = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9, 3), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlTimezone.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlTimezone.setDescription('The configured timezone string.')
ilomCtrlSerialInternalPortPresent = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSerialInternalPortPresent.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSerialInternalPortPresent.setDescription('Indicates whether the given device has an internal serial port that is configurable. The internal serial port is the connection between the host server and the service processor that allows the SP to access the host serial console.')
ilomCtrlSerialInternalPortBaudRate = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 2), ILOMCtrlBaudRate()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSerialInternalPortBaudRate.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSerialInternalPortBaudRate.setDescription('Specifies the current baud rate setting for the internal serial port. This is only readable/settable if ilomCtrlSerialInternalPortPresent is true.')
ilomCtrlSerialExternalPortPresent = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSerialExternalPortPresent.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSerialExternalPortPresent.setDescription('Indicates whether the given device has an external serial port that is configurable.')
ilomCtrlSerialExternalPortBaudRate = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 4), ILOMCtrlBaudRate()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSerialExternalPortBaudRate.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSerialExternalPortBaudRate.setDescription('Specifies the current baud rate setting for the external serial port. This is only readable/settable if ilomCtrlSerialExternalPortPresent is true.')
ilomCtrlSerialExternalPortFlowControl = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 5), ILOMCtrlFlowControl()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSerialExternalPortFlowControl.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSerialExternalPortFlowControl.setDescription('Specifies the current flowcontrol setting for the external serial port. This is only readable/settable if ilomCtrlSerialExternalPortPresent is true.')
ilomCtrlPowerTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1), )
if mibBuilder.loadTexts: ilomCtrlPowerTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPowerTable.setDescription('A table listing all targets whose power can be controlled.')
ilomCtrlPowerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlPowerTarget"))
if mibBuilder.loadTexts: ilomCtrlPowerEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPowerEntry.setDescription('An entry for a power-controllable target.')
ilomCtrlPowerTarget = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1, 1, 1), SnmpAdminString())
if mibBuilder.loadTexts: ilomCtrlPowerTarget.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPowerTarget.setDescription("This is the nomenclature name for a target which supports power control. On some systems, there are multiple targets which support power control. On a traditional, non-blade system, this table will contain only one row. The nomenclature name for a traditional server is '/SYS'. On blade systems, this table will contain multiple rows. There will be a row for '/CH' which allows for power control of the entire chassis. In addition, there will be rows for each blade. Blade nomenclature takes the form of '/CH/BL0/SYS', '/CH/BL1/SYS', and so on.")
ilomCtrlPowerAction = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1, 1, 2), ILOMCtrlPowerAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlPowerAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPowerAction.setDescription('The action to apply to the given power control target. The possible actions are powerOn(1), powerOff(2), powerCycle(3), and powerSoft(4). When this value is read, it returns a null value.')
ilomCtrlResetTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1), )
if mibBuilder.loadTexts: ilomCtrlResetTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlResetTable.setDescription('A table listing all targets which can be reset.')
ilomCtrlResetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlResetTarget"))
if mibBuilder.loadTexts: ilomCtrlResetEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlResetEntry.setDescription('An entry for a target which can be reset.')
ilomCtrlResetTarget = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1, 1, 1), SnmpAdminString())
if mibBuilder.loadTexts: ilomCtrlResetTarget.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlResetTarget.setDescription("This is the nomenclature name for a target which supports reset capabilities. On some systems, there are multiple targets which support reset. On most systems, only system controllers and service processors support reset. On a traditional, non-blade system, this table will contain only one row, representing its service processor. The nomenclature name for a traditional server's service processor is '/SP'. On blade systems, this table will contain multiple rows. There will be a row for '/SC' which allows for reset of the system controller. In addition, there will be rows for each blade's service processor. For example, a blade's service processor nomenclature takes the form of '/CH/BL0/SP', '/CH/BL1/SP' and so on.")
ilomCtrlResetAction = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1, 1, 2), ILOMCtrlResetAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlResetAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlResetAction.setDescription('The action to apply to the given reset control target. The possible actions are reset(1), which is a normal reset, resetNonMaskableInterrupt(2) which is a forced reset, and force(3) which is a forced reset for platforms that do not support NMI. When this value is read, it returns a null value.')
ilomCtrlRedundancyStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12, 1), ILOMCtrlRedundancyStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlRedundancyStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRedundancyStatus.setDescription('This property indicates the status of the device in a redundant configuration. It may be active(2) or standby(3) when configured as a redundant pair or standAlone(4) if it does not have a peer. In addition, it may be in a state called initializing(1) if it is in a transitional state.')
ilomCtrlRedundancyAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12, 2), ILOMCtrlRedundancyAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlRedundancyAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRedundancyAction.setDescription('This action is used to promote or demote this device from active or standy status.')
ilomCtrlRedundancyFRUName = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlRedundancyFRUName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlRedundancyFRUName.setDescription('FRU Name of the CMM on which this agent is running.')
ilomCtrlPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1), )
if mibBuilder.loadTexts: ilomCtrlPolicyTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPolicyTable.setDescription('A table listing all policies that can be administered.')
ilomCtrlPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlPolicyId"))
if mibBuilder.loadTexts: ilomCtrlPolicyEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPolicyEntry.setDescription('An entry for a policy which can be enabled or disabled.')
ilomCtrlPolicyId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: ilomCtrlPolicyId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPolicyId.setDescription('An integer identifier of the policy.')
ilomCtrlPolicyShortStr = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlPolicyShortStr.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPolicyShortStr.setDescription('A short description of the policy.')
ilomCtrlPolicyLongStr = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlPolicyLongStr.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPolicyLongStr.setDescription('A verbose description of the policy.')
ilomCtrlPolicyEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlPolicyEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlPolicyEnabled.setDescription('Indicates the status of the policy.')
ilomCtrlResetToDefaultsAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 1), ILOMCtrlResetToDefaultsAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlResetToDefaultsAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlResetToDefaultsAction.setDescription('This property is used to initiate the action of restoring the configuration on the SP to the original factory default state.')
ilomCtrlBackupAndRestoreTargetURI = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 1), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlBackupAndRestoreTargetURI.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlBackupAndRestoreTargetURI.setDescription('This property is used to set target destination of configuration xml file during backup and restore. The syntax is {protocol}://[user:passwword]@]host[/][path/][file] for example tftp://10.8.136.154/remotedir/config_backup.xml currently, the supported protocols are: scp, tftp. for certain protocol which needs password field, please use ilomCtrlBackupAndRestoreProtocolPassword to set password.')
ilomCtrlBackupAndRestorePassphrase = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlBackupAndRestorePassphrase.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlBackupAndRestorePassphrase.setDescription('This property is used to set passphrase for encrypt/decrypt sensitive data during backup and restore. For snmpget, it returns null as value. ')
ilomCtrlBackupAndRestoreAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 3), ILOMCtrlBackupAndRestoreAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlBackupAndRestoreAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlBackupAndRestoreAction.setDescription('This property is used to issue a action, either backup or restore. ')
ilomCtrlBackupAndRestoreActionStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 4), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlBackupAndRestoreActionStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlBackupAndRestoreActionStatus.setDescription('This property is used to monitor the current status of backup/restore. ')
ilomCtrlSPARCDiagsLevel = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 1), ILOMCtrlSPARCDiagsLevel()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsLevel.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot. ***NOTE: this object is deprecated and replaced with these: ilomCtrlSPARCDiagsPowerOnLevel, ilomCtrlSPARCDiagsUserResetLevel, ilomCtrlSPARCDiagsErrorResetLevel While deprecated, this object will display advsettings(3), unless: - all 3 of the above are currently set to init(1), in which case this object will display min(1) - all 3 of the above are currently set to maximum(3), in which case this object will display max(2).')
ilomCtrlSPARCDiagsTrigger = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 2), ILOMCtrlSPARCDiagsTrigger()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsTrigger.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsTrigger.setDescription('Indicates the triggers of embedded diagnostics for the host.')
ilomCtrlSPARCDiagsVerbosity = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 3), ILOMCtrlSPARCDiagsVerbosity()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsVerbosity.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot. ***NOTE: this object is deprecated and replaced with these: ilomCtrlSPARCDiagsPowerOnVerbosity, ilomCtrlSPARCDiagsUserResetVerbosity, ilomCtrlSPARCDiagsErrorResetVerbosity. While deprecated, this object will display advsettings(3), unless: - all 3 of the above are currently set to minimum(1), in which case this object will display min(1) - all 3 of the above are currently set to maximum(3), in which case this object will display max(2).')
ilomCtrlSPARCDiagsMode = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 4), ILOMCtrlSPARCDiagsMode()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsMode.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsMode.setDescription('Indicates the modes for POST. POST will stop at the mode specified by this property.')
ilomCtrlSPARCDiagsPowerOnLevel = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 5), ILOMCtrlSPARCDiagsLevelAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsPowerOnLevel.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsPowerOnLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the power-on-reset trigger.')
ilomCtrlSPARCDiagsUserResetLevel = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 6), ILOMCtrlSPARCDiagsLevelAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsUserResetLevel.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsUserResetLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the user-reset trigger.')
ilomCtrlSPARCDiagsErrorResetLevel = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 7), ILOMCtrlSPARCDiagsLevelAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsErrorResetLevel.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsErrorResetLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the error-reset trigger.')
ilomCtrlSPARCDiagsPowerOnVerbosity = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 8), ILOMCtrlSPARCDiagsVerbosityAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsPowerOnVerbosity.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsPowerOnVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for power-on-reset trigger.')
ilomCtrlSPARCDiagsUserResetVerbosity = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 9), ILOMCtrlSPARCDiagsVerbosityAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsUserResetVerbosity.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsUserResetVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for user-reset trigger.')
ilomCtrlSPARCDiagsErrorResetVerbosity = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 10), ILOMCtrlSPARCDiagsVerbosityAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsErrorResetVerbosity.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsErrorResetVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for error-reset trigger.')
ilomCtrlSPARCDiagsStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsStatus.setDescription('Indicates the progress of POST diagnostics on the host, expressed as a percentage.')
ilomCtrlSPARCDiagsAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 12), ILOMCtrlSPARCDiagsAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsAction.setDescription('An action to take to control POST running on the host.')
ilomCtrlSPARCDiagsHwChangeLevel = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 13), ILOMCtrlSPARCDiagsLevelAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsHwChangeLevel.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsHwChangeLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the hw-change trigger.')
ilomCtrlSPARCDiagsHwChangeVerbosity = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 14), ILOMCtrlSPARCDiagsVerbosityAdv()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsHwChangeVerbosity.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCDiagsHwChangeVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for hw-change trigger.')
ilomCtrlSPARCHostMACAddress = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 1), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostMACAddress.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostMACAddress.setDescription('Displays the starting MAC address for the host.')
ilomCtrlSPARCHostOBPVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostOBPVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostOBPVersion.setDescription('Displays the version string for OBP.')
ilomCtrlSPARCHostPOSTVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 4), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostPOSTVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostPOSTVersion.setDescription('Displays the version string for POST.')
ilomCtrlSPARCHostAutoRunOnError = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 6), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostAutoRunOnError.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostAutoRunOnError.setDescription('This option determines whether the host should continue to boot in the event of a non-fatal POST error.')
ilomCtrlSPARCHostPOSTStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 7), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostPOSTStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostPOSTStatus.setDescription('A string that describes the status of POST. ***NOTE: OS Boot status is ilomCtrlSPARCHostOSBootStatus.')
ilomCtrlSPARCHostAutoRestartPolicy = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 8), ILOMCtrlSPARCHostAutoRestartPolicy()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostAutoRestartPolicy.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostAutoRestartPolicy.setDescription('This determines what action the SP should take when it discovers that the host is hung.')
ilomCtrlSPARCHostOSBootStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 9), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostOSBootStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostOSBootStatus.setDescription('A string that describes the boot status of host OS.')
ilomCtrlSPARCHostBootTimeout = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 36000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostBootTimeout.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostBootTimeout.setDescription('This is the boot timer time out value.')
ilomCtrlSPARCHostBootRestart = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 11), ILOMCtrlSPARCHostBootRestart()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostBootRestart.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostBootRestart.setDescription('This determines what action the SP should take when the boot timer expires.')
ilomCtrlSPARCHostMaxBootFail = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostMaxBootFail.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostMaxBootFail.setDescription('This is the number of max boot failures allowed.')
ilomCtrlSPARCHostBootFailRecovery = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 13), ILOMCtrlSPARCHostBootFailRecovery()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostBootFailRecovery.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostBootFailRecovery.setDescription('This determines what action the SP should take when the max boot failures are reached.')
ilomCtrlSPARCHostHypervisorVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 14), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostHypervisorVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostHypervisorVersion.setDescription('Displays the version string for Hypervisor.')
ilomCtrlSPARCHostSysFwVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 15), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostSysFwVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostSysFwVersion.setDescription('Displays the version string for SysFw.')
ilomCtrlSPARCHostSendBreakAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 16), ILOMCtrlSPARCHostSendBreakAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostSendBreakAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostSendBreakAction.setDescription('Send Break Action to Host')
ilomCtrlSPARCHostIoReconfigurePolicy = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 17), ILOMCtrlSPARCHostIoReconfigurePolicy()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCHostIoReconfigurePolicy.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostIoReconfigurePolicy.setDescription('This determines the host IO reconfiguration policy to apply on next host power-on.')
ilomCtrlSPARCHostGMVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 18), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCHostGMVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCHostGMVersion.setDescription('Displays the version string for Guest Manager.')
ilomCtrlSPARCBootModeState = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 1), ILOMCtrlSPARCBootModeState()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeState.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeState.setDescription("Configures the boot mode state for the host. Specifying 'normal' means that the host retains current NVRAM variable settings. Specifying 'resetNvram' means that all NVRAM settings will be reset to their default values.")
ilomCtrlSPARCBootModeScript = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeScript.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeScript.setDescription('Specifies the script to run when host boots.')
ilomCtrlSPARCBootModeExpires = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 3), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeExpires.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeExpires.setDescription('Displays the date and time for when the boot mode configuration should expire.')
ilomCtrlSPARCBootModeLDOMConfig = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeLDOMConfig.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCBootModeLDOMConfig.setDescription("This string refers to the config name value that must either be 'default' or match a named LDOM configuration downloaded to the service processor using the LDOM Manager.")
ilomCtrlSPARCKeySwitchState = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 4, 1), ILOMCtrlSPARCKeySwitchState()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSPARCKeySwitchState.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSPARCKeySwitchState.setDescription('Specifies the current state of the virtual key switch.')
ilomCtrlSystemIdentifier = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 16, 1), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSystemIdentifier.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSystemIdentifier.setDescription('This string, which is often the host name of the server associated with ILOM, will be sent out in the varbind for all traps that ILOM generates.')
ilomCtrlHostName = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 16, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlHostName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlHostName.setDescription('This string is the hostname for ILOM.')
ilomCtrlActiveDirectoryEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryEnabled.setDescription('Specifies whether or not the Active Directory client is enabled.')
ilomCtrlActiveDirectoryIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryIP.setDescription('The IP address of the Active Directory server used as a name service for user accounts.')
ilomCtrlActiveDirectoryPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryPortNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryPortNumber.setDescription('Specifies the port number for the Active Directory client. Specifying 0 as the port means auto-select while specifying 1-65535 configures the actual port.')
ilomCtrlActiveDirectoryDefaultRole = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 4), ILOMCtrlUserRole()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryDefaultRole.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryDefaultRole.setDescription("Specifies the role that a user authenticated via Active Directory should have. Setting this property to 'Administrator' or 'Operator' will cause the Active Directory client to ignore the schema stored on the AD server. Setting this to 'none' clears the value and indicates that the native Active Directory schema should be used. ***NOTE: this object is deprecated and replaced with ilomCtrlActiveDirectoryDefaultRoles.")
ilomCtrlActiveDirectoryCertFileURI = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 5), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertFileURI.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertFileURI.setDescription('This is the URI of a certificate file needed when Strict Cert Mode is enabled. Setting the URI causes the tranfer of the file, making the certificate available immediately for certificate authentication.')
ilomCtrlActiveDirectoryTimeout = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryTimeout.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryTimeout.setDescription('Specifies the number of seconds to wait before timing out if the Active Directory Server is not responding.')
ilomCtrlActiveDirectoryStrictCertEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 7), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryStrictCertEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryStrictCertEnabled.setDescription('Specifies whether or not the Strict Cert Mode is enabled for the Active Directory Client. If enabled, the Active Directory certificate must be uploaded to the SP so that certificate validation can be performed when communicating with the Active Directory server.')
ilomCtrlActiveDirectoryCertFileStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertFileStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertFileStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilomCtrlActiveDirUserDomainTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9), )
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomainTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomainTable.setDescription('This table is used to configure domain information required for configuring the Active Directory client.')
ilomCtrlActiveDirUserDomainEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirUserDomainId"))
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomainEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomainEntry.setDescription('An entry for an Active Directory user domain.')
ilomCtrlActiveDirUserDomainId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomainId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomainId.setDescription('An integer identifier of the Active Directory domain.')
ilomCtrlActiveDirUserDomain = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomain.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirUserDomain.setDescription("This string should match exactly with an authentication domain on the Active Directory server. This string should contain a substitution string '<USERNAME>' which will be replaced with the user's login name during authentication. Either the principle or distinguished name format is allowed.")
ilomCtrlActiveDirAdminGroupsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10), )
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupsTable.setDescription('This table is used to configure admin group information required for configuring the Active Directory client.')
ilomCtrlActiveDirAdminGroupsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAdminGroupId"))
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupsEntry.setDescription('An entry for an Active Directory admin group.')
ilomCtrlActiveDirAdminGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupId.setDescription('An integer identifier of the Active Directory admin group entry.')
ilomCtrlActiveDirAdminGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAdminGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the ActiveDirectory server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Administrator.')
ilomCtrlActiveDirOperatorGroupsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11), )
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupsTable.setDescription('This table is used to configure operator group information required for configuring the Active Directory client.')
ilomCtrlActiveDirOperatorGroupsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirOperatorGroupId"))
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupsEntry.setDescription('An entry for an Active Directory operator group.')
ilomCtrlActiveDirOperatorGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupId.setDescription('An integer identifier of the Active Directory operator group entry.')
ilomCtrlActiveDirOperatorGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirOperatorGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the ActiveDirectory server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Operator.')
ilomCtrlActiveDirAlternateServerTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12), )
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerTable.setDescription('This table is used to view and configure alternate server information for the Active Directory client.')
ilomCtrlActiveDirAlternateServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerId"))
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerEntry.setDescription('An entry for an Active Directory alternate server.')
ilomCtrlActiveDirAlternateServerId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerId.setDescription('An integer identifier of the Active Directory alternate server table.')
ilomCtrlActiveDirAlternateServerIp = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerIp.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerIp.setDescription('The IP address of the Active Directory alternate server used as a name service for user accounts.')
ilomCtrlActiveDirAlternateServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerPort.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerPort.setDescription('Specifies the port number for the Active Directory alternate server. Specifying 0 as the port indicates that auto-select will use the well known port number. Specifying 1-65535 is used to explicitly set the port number.')
ilomCtrlActiveDirAlternateServerCertStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilomCtrlActiveDirAlternateServerCertURI = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 5), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertURI.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertURI.setDescription("This is the URI of a certificate file needed when Strict Cert Mode is enabled. Setting the URI causes the tranfer of the file, making the certificate available immediately for certificate authentication. Additionally, either 'remove' or 'restore' are supported for direct certificate manipulation.")
ilomCtrlActiveDirAlternateServerCertClear = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 6), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertClear.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilomCtrlActiveDirAlternateServerCertVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertVersion.setDescription('A string indicating the certificate version of the alternate server certificate file.')
ilomCtrlActiveDirAlternateServerCertSerialNo = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertSerialNo.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertSerialNo.setDescription('A string showing the serial number of the alternate server certificate file.')
ilomCtrlActiveDirAlternateServerCertIssuer = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertIssuer.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertIssuer.setDescription('A string showing the issuer of the alternate server certificate file.')
ilomCtrlActiveDirAlternateServerCertSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 10), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertSubject.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertSubject.setDescription('A string showing the subject of the alternate server certificate file.')
ilomCtrlActiveDirAlternateServerCertValidBegin = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 11), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertValidBegin.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertValidBegin.setDescription('A string showing the valid start date of the alternate server certificate file.')
ilomCtrlActiveDirAlternateServerCertValidEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertValidEnd.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirAlternateServerCertValidEnd.setDescription('A string showing the valid end date of the alternate server certificate file.')
ilomCtrlActiveDirectoryLogDetail = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("none", 1), ("high", 2), ("medium", 3), ("low", 4), ("trace", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryLogDetail.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryLogDetail.setDescription("Controls the amount of messages sent to the event log. The high priority has the least number of messages going to the log, while the lowest priority 'trace' has the most messages logged. When this object is set to 'none', no messages are logged.")
ilomCtrlActiveDirectoryDefaultRoles = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 14), ILOMCtrlUserRoles()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryDefaultRoles.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryDefaultRoles.setDescription("Specifies the role that a user authenticated via Active Directory should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the Active Directory client to ignore the schema stored on the AD server. Setting this to 'none' clears the value and indicates that the native Active Directory schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilomCtrlActiveDirCustomGroupsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15), )
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupsTable.setDescription('This table is used to configure custom group information required for configuring the Active Directory client.')
ilomCtrlActiveDirCustomGroupsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirCustomGroupId"))
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupsEntry.setDescription('An entry for an Active Directory custom group.')
ilomCtrlActiveDirCustomGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupId.setDescription('An integer identifier of the Active Directory custom group entry.')
ilomCtrlActiveDirCustomGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupName.setDescription("This string should contain a distinguished name that exactly matches one of the group names on the ActiveDirectory server. Any user belonging to one of these groups in this table will be assigned the ILOM role based on the entry's configuration for roles.")
ilomCtrlActiveDirCustomGroupRoles = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1, 3), ILOMCtrlUserRoles()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupRoles.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirCustomGroupRoles.setDescription("Specifies the role that a user authenticated via Active Directory should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the Active Directory client to ignore the schema stored on the AD server. Setting this to 'none' clears the value and indicates that the native Active Directory schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilomCtrlActiveDirectoryCertClear = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 16), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertClear.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilomCtrlActiveDirectoryCertVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 17), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertVersion.setDescription('A string indicating the certificate version of the certificate file.')
ilomCtrlActiveDirectoryCertSerialNo = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 18), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertSerialNo.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertSerialNo.setDescription('A string showing the serial number of the certificate file.')
ilomCtrlActiveDirectoryCertIssuer = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 19), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertIssuer.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertIssuer.setDescription('A string showing the issuer of the certificate file.')
ilomCtrlActiveDirectoryCertSubject = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 20), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertSubject.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertSubject.setDescription('A string showing the subject of the certificate file.')
ilomCtrlActiveDirectoryCertValidBegin = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 21), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertValidBegin.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertValidBegin.setDescription('A string showing the valid start date of the certificate file.')
ilomCtrlActiveDirectoryCertValidEnd = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 22), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertValidEnd.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirectoryCertValidEnd.setDescription('A string showing the valid end date of the certificate file.')
ilomCtrlActiveDirDnsLocatorEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 23), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorEnabled.setDescription('Specifies whether or not the Active Directory DNS Locator functionality is enabled.')
ilomCtrlActiveDirDnsLocatorQueryTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24), )
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryTable.setDescription('This table is used to configure DNS Locator search queries used to locate the Active Directory server.')
ilomCtrlActiveDirDnsLocatorQueryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirDnsLocatorQueryId"))
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryEntry.setDescription('An entry for an Active Directory DNS Locator search query.')
ilomCtrlActiveDirDnsLocatorQueryId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryId.setDescription('An integer identifier of the Active Directory DNS Locator Query entry.')
ilomCtrlActiveDirDnsLocatorQueryService = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryService.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirDnsLocatorQueryService.setDescription("This string should contain the service name that will be used to perform the DNS query. The name may contain '<DOMAIN>' as a substitution marker, being replaced by the domain information associated for the user at the time of authentication. Also, the optional '<PORT: >' (ie <PORT:636> for standard LDAP/SSL port 636) can be used to override any learned port information if necessary.")
ilomCtrlActiveDirExpSearchEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 25), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirExpSearchEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirExpSearchEnabled.setDescription('Specifies whether or not the Active Directory expanded search query functionality is enabled.')
ilomCtrlActiveDirStrictCredentialErrorEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 26), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlActiveDirStrictCredentialErrorEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlActiveDirStrictCredentialErrorEnabled.setDescription('Specifies whether or not user credential errors for Active Directory cause the user credentials to be completely errored out, or if the credential validation is attempted using any alternate server. When the parameter is true, the first user credential violation takes effect, but when the mode is false, the same user credentionals can be presented to other servers for authentication.')
ilomCtrlSMTPEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSMTPEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSMTPEnabled.setDescription('Specifies whether or not the SMTP client is enabled.')
ilomCtrlSMTPServerIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSMTPServerIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSMTPServerIP.setDescription('The IP address of the SMTP server used as a name service for user accounts.')
ilomCtrlSMTPPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSMTPPortNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSMTPPortNumber.setDescription('Specifies the port number for the SMTP client.')
ilomCtrlSMTPCustomSender = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlSMTPCustomSender.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlSMTPCustomSender.setDescription("An optional format to identify the sender or the 'from' address. Customizing this string allows the user to specify the exact contents (up to 80 chars) of the 'from' field in the email message. Either one of the substitution strings '<IPADDRESS>' or '<HOSTNAME>' can be used as needed. e.g., ilom-sp@sp1302.dev.sun.com, sun-ilom@[<IPADDRESS>], or ilom-alert@<HOSTNAME>.abc.com. By default, this parameter is an empty string. The 'from' field is formatted by either: 1) alert-rule custom-sender, 2) smtp custom-sender, or 3) the standard ILOM originator.")
ilomCtrlThdState = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 1), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlThdState.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdState.setDescription('The state of the THD daemon.')
ilomCtrlThdAction = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 2), ILOMCtrlThdAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlThdAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdAction.setDescription('Control action for THD daemon, either suspend or resume.')
ilomCtrlThdModulesTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3), )
if mibBuilder.loadTexts: ilomCtrlThdModulesTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdModulesTable.setDescription('A table listing the currently loaded THD modules.')
ilomCtrlThdModulesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlThdModuleName"))
if mibBuilder.loadTexts: ilomCtrlThdModulesEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdModulesEntry.setDescription('An entry for a currently loaded THD module.')
ilomCtrlThdModuleName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 1), ILOMCtrlTargetIndex())
if mibBuilder.loadTexts: ilomCtrlThdModuleName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdModuleName.setDescription('The name of the THD module.')
ilomCtrlThdModuleDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 2), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlThdModuleDesc.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdModuleDesc.setDescription('The description of the THD module.')
ilomCtrlThdModuleState = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlThdModuleState.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdModuleState.setDescription('The state of the THD module.')
ilomCtrlThdModuleAction = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 4), ILOMCtrlThdAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlThdModuleAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdModuleAction.setDescription('The control action for the THD module.')
ilomCtrlThdInstanceTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4), )
if mibBuilder.loadTexts: ilomCtrlThdInstanceTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdInstanceTable.setDescription('A table listing instances of currently loaded THD modules.')
ilomCtrlThdInstanceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlThdModName"), (0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlThdInstanceName"))
if mibBuilder.loadTexts: ilomCtrlThdInstanceEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdInstanceEntry.setDescription('An entry for a currently loaded THD module.')
ilomCtrlThdModName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 1), ILOMCtrlModTargetIndex())
if mibBuilder.loadTexts: ilomCtrlThdModName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdModName.setDescription('The name of the THD class of the instance.')
ilomCtrlThdInstanceName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 2), ILOMCtrlInstanceTargetIndex())
if mibBuilder.loadTexts: ilomCtrlThdInstanceName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdInstanceName.setDescription('The name of the instance.')
ilomCtrlThdInstanceState = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 3), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlThdInstanceState.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdInstanceState.setDescription('The state of the instance.')
ilomCtrlThdInstanceAction = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 4), ILOMCtrlThdAction()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlThdInstanceAction.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlThdInstanceAction.setDescription('The control action for instance.')
ilomCtrlLdapSslGlobalObj = MibIdentifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1))
ilomCtrlLdapSslEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslEnabled.setDescription('Specifies whether or not the LDAP/SSL client is enabled.')
ilomCtrlLdapSslIP = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslIP.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslIP.setDescription('The IP address of the LDAP/SSL server used as a directory service for user accounts.')
ilomCtrlLdapSslPortNumber = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslPortNumber.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslPortNumber.setDescription('Specifies the port number for the LDAP/SSL client. Specifying 0 as the port means auto-select while specifying 1-65535 configures the actual port value.')
ilomCtrlLdapSslDefaultRole = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 4), ILOMCtrlUserRole()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslDefaultRole.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslDefaultRole.setDescription("Specifies the role that a user authenticated via LDAP/SSL should have. Setting this property to 'Administrator' or 'Operator' will cause the LDAP/SSL client to ignore the schema stored on the server. The user will be granted the corresponding access level. Setting this to an empty string, or 'none' clears the value and indicates that the native LDAP/SSL schema should be used.")
ilomCtrlLdapSslCertFileURI = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 5), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileURI.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileURI.setDescription("The tftp URI of the LDAP/SSL server's certificate file that should be uploaded in order to perform certificate validation. Setting the URI causes the tranfer of the specified file, making the certificate available immediately for certificate authentication. The server certificate file is needed when Strict Cert Mode is enabled. Additionally, either 'remove' or 'restore' are supported for direct certificate manipulation.")
ilomCtrlLdapSslTimeout = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslTimeout.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslTimeout.setDescription('Specifies the number of seconds to wait before timing out if the LDAP/SSL Server is not responding.')
ilomCtrlLdapSslStrictCertEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 7), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslStrictCertEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslStrictCertEnabled.setDescription("Specifies whether or not the Strict Cert Mode is enabled for the LDAP/SSL Client. If enabled, the LDAP/SSL server's certificate must be uploaded to the SP so that certificate validation can be performed when communicating with the LDAP/SSL server.")
ilomCtrlLdapSslCertFileStatus = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilomCtrlLdapSslLogDetail = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("none", 1), ("high", 2), ("medium", 3), ("low", 4), ("trace", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslLogDetail.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslLogDetail.setDescription("Controls the amount of messages sent to the event log. The high priority has the least number of messages going to the log, while the lowest priority 'trace' has the most messages logged. When this object is set to 'none', no messages are logged.")
ilomCtrlLdapSslDefaultRoles = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 10), ILOMCtrlUserRoles()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslDefaultRoles.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslDefaultRoles.setDescription("Specifies the role that a user authenticated via LDAP/SSL should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the LDAP/SSL client to ignore the schema stored on the LDAP server. Setting this to 'none' clears the value and indicates that the native LDAP/SSL schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilomCtrlLdapSslCertFileClear = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 11), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileClear.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilomCtrlLdapSslCertFileVersion = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileVersion.setDescription('A string indicating the certificate version of the certificate file.')
ilomCtrlLdapSslCertFileSerialNo = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileSerialNo.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileSerialNo.setDescription('A string showing the serial number of the certificate file.')
ilomCtrlLdapSslCertFileIssuer = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 14), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileIssuer.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileIssuer.setDescription('A string showing the issuer of the certificate file.')
ilomCtrlLdapSslCertFileSubject = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 15), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileSubject.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileSubject.setDescription('A string showing the subject of the certificate file.')
ilomCtrlLdapSslCertFileValidBegin = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 16), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileValidBegin.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileValidBegin.setDescription('A string showing the valid start date of the certificate file.')
ilomCtrlLdapSslCertFileValidEnd = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 17), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileValidEnd.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCertFileValidEnd.setDescription('A string showing the valid end date of the certificate file.')
ilomCtrlLdapSslOptUsrMappingEnabled = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 18), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingEnabled.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingEnabled.setDescription("Specifies whether or not the optional UserMapping feature is enabled. When this feature is enabled, a typical Manager style ldap bind is done first using the specified credentials for the bindDn and bindPw. Then, the user's login name is used as part of the search/filter criteria defined in the attribute-info to obtain the user's official Distinguished Name.")
ilomCtrlLdapSslOptUsrMappingAttrInfo = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 19), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingAttrInfo.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingAttrInfo.setDescription("The attribute information used to lookup the user login name to the user's Distinguished Name (DN). Typically, it looks very much like a standard LDAP query or filter. The <USERNAME> prefix will be replaced with the login name as part of the query eg: (&(objectclass=person)(uid=<USERNAME>)).")
ilomCtrlLdapSslOptUsrMappingBindDn = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 20), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingBindDn.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingBindDn.setDescription('The Distinguished Name used for the manager style ldap bind so that user lookups can be done.')
ilomCtrlLdapSslOptUsrMappingBindPw = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 21), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingBindPw.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingBindPw.setDescription('The password string used for the manager style ldap bind.')
ilomCtrlLdapSslOptUsrMappingSearchBase = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 22), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingSearchBase.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOptUsrMappingSearchBase.setDescription('The search based used to attempt the user name look up as defined in the attribute information above.')
ilomCtrlLdapSslUserDomainTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2), )
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomainTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomainTable.setDescription('This table is used to configure domain information required for configuring the LDAP/SSL client.')
ilomCtrlLdapSslUserDomainEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslUserDomainId"))
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomainEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomainEntry.setDescription('An entry for an LDAP/SSL user domain.')
ilomCtrlLdapSslUserDomainId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomainId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomainId.setDescription('An integer identifier of the LDAP/SSL domain.')
ilomCtrlLdapSslUserDomain = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomain.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslUserDomain.setDescription("This string should match exactly with an authentication domain on the LDAP/SSL server. This string should contain a substitution string '<USERNAME>' which will be replaced with the user's login name during authentication. Either the principle or distinguished name format is allowed.")
ilomCtrlLdapSslAdminGroupsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3), )
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupsTable.setDescription('This table is used to configure Admin Group information required for configuring the LDAP/SSL client.')
ilomCtrlLdapSslAdminGroupsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAdminGroupId"))
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupsEntry.setDescription('An entry for an LDAP/SSL Admin Group.')
ilomCtrlLdapSslAdminGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupId.setDescription('An integer identifier of the LDAP/SSL AdminGroup entry.')
ilomCtrlLdapSslAdminGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAdminGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the LDAP/SSL server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Administrator.')
ilomCtrlLdapSslOperatorGroupsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4), )
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupsTable.setDescription('This table is used to configure Operator Group information required for configuring the LDAP/SSL client.')
ilomCtrlLdapSslOperatorGroupsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslOperatorGroupId"))
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupsEntry.setDescription('An entry for an LDAP/SSL Operator Group.')
ilomCtrlLdapSslOperatorGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupId.setDescription('An integer identifier of the LDAP/SSL Operator Group entry.')
ilomCtrlLdapSslOperatorGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslOperatorGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the LDAP/SSL server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Operator.')
ilomCtrlLdapSslAlternateServerTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5), )
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerTable.setDescription('This table is used to view and configure alternate server information for the LDAP/SSL client.')
ilomCtrlLdapSslAlternateServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerId"))
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerEntry.setDescription('An entry for an LDAP/SSL alternate server table.')
ilomCtrlLdapSslAlternateServerId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerId.setDescription('An integer identifier of the LDAP/SSL alternate server table.')
ilomCtrlLdapSslAlternateServerIp = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerIp.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerIp.setDescription('The IP address of the LDAP/SSL alternate server used as directory server for user accounts.')
ilomCtrlLdapSslAlternateServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerPort.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerPort.setDescription('Specifies the port number for the LDAP/SSL alternate server. Specifying 0 as the port indicates that auto-select will use the well known port number. Specifying 1-65535 is used to explicitly set the port number.')
ilomCtrlLdapSslAlternateServerCertStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertStatus.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilomCtrlLdapSslAlternateServerCertURI = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 5), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertURI.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertURI.setDescription("This is the URI of a certificate file needed when Strict Cert Mode is enabled. Setting the URI causes the tranfer of the file, making the certificate available immediately for certificate authentication. Additionally, either 'remove' or 'restore' are supported for direct certificate manipulation.")
ilomCtrlLdapSslAlternateServerCertClear = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 6), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertClear.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilomCtrlLdapSslAlternateServerCertVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertVersion.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertVersion.setDescription('A string indicating the certificate version of the alternate server certificate file.')
ilomCtrlLdapSslAlternateServerCertSerialNo = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertSerialNo.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertSerialNo.setDescription('A string showing the serial number of the alternate server certificate file.')
ilomCtrlLdapSslAlternateServerCertIssuer = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertIssuer.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertIssuer.setDescription('A string showing the issuer of the alternate server certificate file.')
ilomCtrlLdapSslAlternateServerCertSubject = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 10), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertSubject.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertSubject.setDescription('A string showing the subject of the alternate server certificate file.')
ilomCtrlLdapSslAlternateServerCertValidBegin = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 11), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertValidBegin.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertValidBegin.setDescription('A string showing the valid start date of the alternate server certificate file.')
ilomCtrlLdapSslAlternateServerCertValidEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertValidEnd.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslAlternateServerCertValidEnd.setDescription('A string showing the valid end date of the alternate server certificate file.')
ilomCtrlLdapSslCustomGroupsTable = MibTable((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6), )
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupsTable.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupsTable.setDescription('This table is used to configure custom group information required for configuring the LDAP/SSL client.')
ilomCtrlLdapSslCustomGroupsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1), ).setIndexNames((0, "SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCustomGroupId"))
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupsEntry.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupsEntry.setDescription('An entry for an LDAP/SSLcustom group.')
ilomCtrlLdapSslCustomGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)))
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupId.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupId.setDescription('An integer identifier of the LDAP/SSL custom group entry.')
ilomCtrlLdapSslCustomGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupName.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupName.setDescription("This string should contain a distinguished name that exactly matches one of the group names on the LDAP/SSL server. Any user belonging to one of these groups in this table will be assigned the ILOM role based on the entry's configuration for roles.")
ilomCtrlLdapSslCustomGroupRoles = MibTableColumn((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1, 3), ILOMCtrlUserRoles()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupRoles.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlLdapSslCustomGroupRoles.setDescription("Specifies the role that a user authenticated via LDAP/SSL should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the LDAP/SSL client to ignore the schema stored on the LDAP/SSL server. Setting this to 'none' clears the value and indicates that the native LDAP/SSL schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilomCtrlDNSNameServers = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 1), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDNSNameServers.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDNSNameServers.setDescription('Specifies the nameserver for DNS.')
ilomCtrlDNSSearchPath = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 2), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDNSSearchPath.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDNSSearchPath.setDescription('Specifies the searchpath for DNS.')
ilomCtrlDNSdhcpAutoDns = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 3), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDNSdhcpAutoDns.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDNSdhcpAutoDns.setDescription('Specifies whether or not DHCP autodns is enabled.')
ilomCtrlDNSTimeout = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(5)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDNSTimeout.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDNSTimeout.setDescription('Specifies the number of seconds to wait before timing out if the server does not respond.')
ilomCtrlDNSRetries = MibScalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ilomCtrlDNSRetries.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlDNSRetries.setDescription('Specifies the number of times a request is attempted again, after a timeout.')
ilomCtrlObjectsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 2, 2)).setObjects(("SUN-ILOM-CONTROL-MIB", "ilomCtrlDeviceNTPServerOneIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlDeviceNTPServerTwoIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapServerIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapPortNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapBindDn"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapBindPassword"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSearchBase"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapDefaultRoles"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRadiusEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRadiusServerIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRadiusPortNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRadiusSecret"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRadiusDefaultRoles"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRemoteSyslogDest1"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRemoteSyslogDest2"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryPortNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertFileURI"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryTimeout"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryStrictCertEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertFileStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirUserDomain"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAdminGroupName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirOperatorGroupName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirCustomGroupName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirCustomGroupRoles"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerIp"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerPort"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertURI"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertClear"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertSerialNo"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertIssuer"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertSubject"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertValidBegin"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirAlternateServerCertValidEnd"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryLogDetail"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryDefaultRoles"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertClear"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertSerialNo"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertIssuer"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertSubject"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertValidBegin"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryCertValidEnd"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirDnsLocatorEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirDnsLocatorQueryService"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirExpSearchEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirStrictCredentialErrorEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSMTPEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSMTPServerIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSMTPPortNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSMTPCustomSender"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslPortNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslDefaultRole"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileURI"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslTimeout"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslStrictCertEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslLogDetail"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslDefaultRoles"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileClear"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileSerialNo"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileIssuer"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileSubject"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileValidBegin"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCertFileValidEnd"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslOptUsrMappingEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslOptUsrMappingAttrInfo"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslOptUsrMappingBindDn"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslOptUsrMappingBindPw"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslOptUsrMappingSearchBase"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslUserDomain"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAdminGroupName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslOperatorGroupName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCustomGroupName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslCustomGroupRoles"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerIp"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerPort"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertURI"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertClear"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertSerialNo"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertIssuer"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertSubject"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertValidBegin"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapSslAlternateServerCertValidEnd"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlHttpEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlHttpPortNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlHttpSecureRedirect"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlHttpsEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlHttpsPortNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshRsaKeyFingerprint"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshRsaKeyLength"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshDsaKeyFingerprint"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshDsaKeyLength"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshGenerateNewKeyAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshGenerateNewKeyType"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshRestartSshdAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSshEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSingleSignonEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkMacAddress"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkIpDiscovery"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkIpAddress"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkIpGateway"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkIpNetmask"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkPendingIpDiscovery"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkPendingIpAddress"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkPendingIpGateway"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkPendingIpNetmask"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkCommitPending"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkDHCPServerAddr"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkPendingManagementPort"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkManagementPort"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkOutOfBandMacAddress"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkSidebandMacAddress"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNetworkState"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserPassword"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserRoles"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserRowStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserCLIMode"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSessionsUsername"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSessionsConnectionType"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSessionsLoginTime"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareMgmtVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareBuildNumber"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareBuildDate"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareTFTPServerIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareTFTPFileName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwarePreserveConfig"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareMgmtStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareMgmtAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareMgmtFilesystemVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlFirmwareDelayBIOS"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlEventLogType"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlEventLogTimestamp"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlEventLogClass"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlEventLogSeverity"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlEventLogDescription"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlEventLogClear"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertSeverity"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertType"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertDestinationIP"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertDestinationPort"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertDestinationEmail"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertSNMPVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertSNMPCommunityOrUsername"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertEmailEventClassFilter"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertEmailEventTypeFilter"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertEmailCustomSender"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlAlertEmailMessagePrefix"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlDateAndTime"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlNTPEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlTimezone"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSerialInternalPortPresent"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSerialInternalPortBaudRate"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSerialExternalPortPresent"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSerialExternalPortBaudRate"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSerialExternalPortFlowControl"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlPowerAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlResetAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRedundancyStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRedundancyAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRedundancyFRUName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlPolicyShortStr"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlPolicyLongStr"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlPolicyEnabled"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlResetToDefaultsAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsTrigger"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsMode"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsPowerOnLevel"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsUserResetLevel"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsErrorResetLevel"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsPowerOnVerbosity"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsUserResetVerbosity"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsErrorResetVerbosity"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsHwChangeLevel"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsHwChangeVerbosity"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostMACAddress"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostOBPVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostPOSTVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostAutoRunOnError"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostPOSTStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostAutoRestartPolicy"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostIoReconfigurePolicy"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostOSBootStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostBootTimeout"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostBootRestart"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostMaxBootFail"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostBootFailRecovery"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostHypervisorVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostSysFwVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostGMVersion"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCHostSendBreakAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCBootModeState"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCBootModeScript"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCBootModeExpires"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCBootModeLDOMConfig"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCKeySwitchState"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSystemIdentifier"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlHostName"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlThdState"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlThdAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlThdModuleDesc"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlThdModuleState"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlThdModuleAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlThdInstanceState"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlThdInstanceAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlBackupAndRestoreTargetURI"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlBackupAndRestorePassphrase"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlBackupAndRestoreAction"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlBackupAndRestoreActionStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlDNSNameServers"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlDNSSearchPath"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlDNSdhcpAutoDns"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlDNSTimeout"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlDNSRetries"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ilomCtrlObjectsGroup = ilomCtrlObjectsGroup.setStatus('current')
if mibBuilder.loadTexts: ilomCtrlObjectsGroup.setDescription('The group of current objects.')
ilomCtrlDeprecatedObjectsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 2, 1)).setObjects(("SUN-ILOM-CONTROL-MIB", "ilomCtrlLdapDefaultRole"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlRadiusDefaultRole"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserAuthPassword"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserAuthRole"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserAuthRowStatus"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlLocalUserAuthCLIMode"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsLevel"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlSPARCDiagsVerbosity"), ("SUN-ILOM-CONTROL-MIB", "ilomCtrlActiveDirectoryDefaultRole"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ilomCtrlDeprecatedObjectsGroup = ilomCtrlDeprecatedObjectsGroup.setStatus('deprecated')
if mibBuilder.loadTexts: ilomCtrlDeprecatedObjectsGroup.setDescription('The objects that have been deprecated.')
mibBuilder.exportSymbols("SUN-ILOM-CONTROL-MIB", ilomCtrlNetworkOutOfBandMacAddress=ilomCtrlNetworkOutOfBandMacAddress, ilomCtrlActiveDirUserDomainEntry=ilomCtrlActiveDirUserDomainEntry, ilomCtrlAlertDestinationEmail=ilomCtrlAlertDestinationEmail, ilomCtrlLdapSslCustomGroupRoles=ilomCtrlLdapSslCustomGroupRoles, ilomCtrlAlertDestinationIP=ilomCtrlAlertDestinationIP, ilomCtrlActiveDirOperatorGroupsTable=ilomCtrlActiveDirOperatorGroupsTable, ilomCtrlRemoteSyslog=ilomCtrlRemoteSyslog, ilomCtrlActiveDirAlternateServerCertSerialNo=ilomCtrlActiveDirAlternateServerCertSerialNo, ilomCtrlSingleSignonEnabled=ilomCtrlSingleSignonEnabled, sun=sun, ilomCtrlActiveDirectoryCertValidEnd=ilomCtrlActiveDirectoryCertValidEnd, ilomCtrlSPARCHostAutoRunOnError=ilomCtrlSPARCHostAutoRunOnError, ilomCtrlActiveDirectoryCertSubject=ilomCtrlActiveDirectoryCertSubject, ilomCtrlActiveDirectoryDefaultRoles=ilomCtrlActiveDirectoryDefaultRoles, ilomCtrlNetworkPendingIpAddress=ilomCtrlNetworkPendingIpAddress, ilomCtrlActiveDirAlternateServerPort=ilomCtrlActiveDirAlternateServerPort, ilomCtrlSerialExternalPortPresent=ilomCtrlSerialExternalPortPresent, ilomCtrlActiveDirAdminGroupName=ilomCtrlActiveDirAdminGroupName, ilomCtrlActiveDirectoryCertVersion=ilomCtrlActiveDirectoryCertVersion, ilomCtrlThdModuleState=ilomCtrlThdModuleState, ilomCtrlSPARC=ilomCtrlSPARC, ilomCtrlActiveDirectoryCertClear=ilomCtrlActiveDirectoryCertClear, ilomCtrlThdState=ilomCtrlThdState, ilomCtrlActiveDirOperatorGroupName=ilomCtrlActiveDirOperatorGroupName, ilomCtrlAlertSNMPVersion=ilomCtrlAlertSNMPVersion, ilomCtrlSPARCDiagsStatus=ilomCtrlSPARCDiagsStatus, ILOMCtrlSPARCBootModeState=ILOMCtrlSPARCBootModeState, ilomCtrlSPARCBootModeExpires=ilomCtrlSPARCBootModeExpires, ilomCtrlLocalUserRowStatus=ilomCtrlLocalUserRowStatus, ilomCtrlAlertSeverity=ilomCtrlAlertSeverity, ILOMCtrlLocalUserAuthCLIMode=ILOMCtrlLocalUserAuthCLIMode, ilomCtrlPolicyShortStr=ilomCtrlPolicyShortStr, ilomCtrlConfigMgmt=ilomCtrlConfigMgmt, ilomCtrlRadiusPortNumber=ilomCtrlRadiusPortNumber, ilomCtrlSerialExternalPortFlowControl=ilomCtrlSerialExternalPortFlowControl, ilomCtrlFirmwareDelayBIOS=ilomCtrlFirmwareDelayBIOS, ilomCtrlLdapSslAlternateServerCertURI=ilomCtrlLdapSslAlternateServerCertURI, ilomCtrlSPARCDiagsPowerOnVerbosity=ilomCtrlSPARCDiagsPowerOnVerbosity, ilomCtrlSessionsLoginTime=ilomCtrlSessionsLoginTime, ilomCtrlDNS=ilomCtrlDNS, ilomCtrlLdapSslTimeout=ilomCtrlLdapSslTimeout, ilomCtrlCompliances=ilomCtrlCompliances, ilomCtrlLdapSslAlternateServerCertValidEnd=ilomCtrlLdapSslAlternateServerCertValidEnd, ilomCtrlDNSSearchPath=ilomCtrlDNSSearchPath, ILOMCtrlFirmwareUpdateAction=ILOMCtrlFirmwareUpdateAction, ilomCtrlActiveDirectoryStrictCertEnabled=ilomCtrlActiveDirectoryStrictCertEnabled, ilomCtrlSPARCDiagsErrorResetLevel=ilomCtrlSPARCDiagsErrorResetLevel, ilomCtrlFirmwareMgmtStatus=ilomCtrlFirmwareMgmtStatus, ilomCtrlActiveDirOperatorGroupId=ilomCtrlActiveDirOperatorGroupId, ilomCtrlResetTarget=ilomCtrlResetTarget, ilomCtrlBackupAndRestore=ilomCtrlBackupAndRestore, ILOMCtrlSPARCDiagsAction=ILOMCtrlSPARCDiagsAction, ilomCtrlThdInstanceAction=ilomCtrlThdInstanceAction, ilomCtrlNetworkEntry=ilomCtrlNetworkEntry, ilomCtrlActiveDirAlternateServerTable=ilomCtrlActiveDirAlternateServerTable, ilomCtrlSPARCKeySwitchState=ilomCtrlSPARCKeySwitchState, ilomCtrlSPARCDiagsAction=ilomCtrlSPARCDiagsAction, ilomCtrlSMTPPortNumber=ilomCtrlSMTPPortNumber, ilomCtrlPolicyEntry=ilomCtrlPolicyEntry, ilomCtrlSshRestartSshdAction=ilomCtrlSshRestartSshdAction, ILOMCtrlLocalUserPassword=ILOMCtrlLocalUserPassword, ilomCtrlLdapSslCertFileIssuer=ilomCtrlLdapSslCertFileIssuer, ilomCtrlNetworkTable=ilomCtrlNetworkTable, ilomCtrlLdapDefaultRole=ilomCtrlLdapDefaultRole, ilomCtrlLdapSslCustomGroupsEntry=ilomCtrlLdapSslCustomGroupsEntry, ilomCtrlNetworkIpGateway=ilomCtrlNetworkIpGateway, ilomCtrlSPARCBootModeLDOMConfig=ilomCtrlSPARCBootModeLDOMConfig, ilomCtrlNtp=ilomCtrlNtp, ilomCtrlSPARCKeySwitch=ilomCtrlSPARCKeySwitch, ilomCtrlPowerTarget=ilomCtrlPowerTarget, ilomCtrlNetworkTarget=ilomCtrlNetworkTarget, ILOMCtrlSPARCKeySwitchState=ILOMCtrlSPARCKeySwitchState, ilomCtrlLdapSslLogDetail=ilomCtrlLdapSslLogDetail, ilomCtrlActiveDirCustomGroupId=ilomCtrlActiveDirCustomGroupId, ilomCtrlActiveDirectoryCertIssuer=ilomCtrlActiveDirectoryCertIssuer, ilomCtrlDNSRetries=ilomCtrlDNSRetries, ilomCtrlActiveDirAlternateServerCertURI=ilomCtrlActiveDirAlternateServerCertURI, ilomCtrlSPARCHostSysFwVersion=ilomCtrlSPARCHostSysFwVersion, ilomCtrlLdapSslOperatorGroupId=ilomCtrlLdapSslOperatorGroupId, ILOMCtrlResetToDefaultsAction=ILOMCtrlResetToDefaultsAction, ilomCtrlRedundancyFRUName=ilomCtrlRedundancyFRUName, ilomCtrlLdapSslAdminGroupName=ilomCtrlLdapSslAdminGroupName, ilomCtrlLocalUserRoles=ilomCtrlLocalUserRoles, ilomCtrlLdapPortNumber=ilomCtrlLdapPortNumber, ilomCtrlLdapSearchBase=ilomCtrlLdapSearchBase, ilomCtrlServices=ilomCtrlServices, ilomCtrlNetwork=ilomCtrlNetwork, ilomCtrlHttps=ilomCtrlHttps, ilomCtrlActiveDirectoryCertFileStatus=ilomCtrlActiveDirectoryCertFileStatus, ILOMCtrlPowerAction=ILOMCtrlPowerAction, ilomCtrlRadiusServerIP=ilomCtrlRadiusServerIP, ilomCtrlAlertEmailCustomSender=ilomCtrlAlertEmailCustomSender, ilomCtrlLocalUserAuthEntry=ilomCtrlLocalUserAuthEntry, ilomCtrlLdapSslCertFileValidEnd=ilomCtrlLdapSslCertFileValidEnd, ilomCtrlActiveDirAlternateServerCertVersion=ilomCtrlActiveDirAlternateServerCertVersion, ilomCtrlSPARCDiagsErrorResetVerbosity=ilomCtrlSPARCDiagsErrorResetVerbosity, ILOMCtrlInstanceTargetIndex=ILOMCtrlInstanceTargetIndex, ilomCtrlAlertEmailEventClassFilter=ilomCtrlAlertEmailEventClassFilter, ilomCtrlObjectsGroup=ilomCtrlObjectsGroup, ilomCtrlAlerts=ilomCtrlAlerts, ilomCtrlLdapSslStrictCertEnabled=ilomCtrlLdapSslStrictCertEnabled, ILOMCtrlSshKeyGenType=ILOMCtrlSshKeyGenType, products=products, ilomCtrlSMTPServerIP=ilomCtrlSMTPServerIP, ilomCtrlActiveDirectoryEnabled=ilomCtrlActiveDirectoryEnabled, ilomCtrlThdInstanceName=ilomCtrlThdInstanceName, ilomCtrlRedundancy=ilomCtrlRedundancy, ilomCtrlNTPEnabled=ilomCtrlNTPEnabled, ilomCtrlHttpsPortNumber=ilomCtrlHttpsPortNumber, ilomCtrlFirmwareBuildDate=ilomCtrlFirmwareBuildDate, ilomCtrlLdapSslAlternateServerCertSerialNo=ilomCtrlLdapSslAlternateServerCertSerialNo, ilomCtrlLocalUserAuthCLIMode=ilomCtrlLocalUserAuthCLIMode, ilomCtrlLdapSslUserDomainId=ilomCtrlLdapSslUserDomainId, ilomCtrlSPARCDiagsHwChangeLevel=ilomCtrlSPARCDiagsHwChangeLevel, ilomCtrlSPARCHostAutoRestartPolicy=ilomCtrlSPARCHostAutoRestartPolicy, ilomCtrlSshDsaKeyFingerprint=ilomCtrlSshDsaKeyFingerprint, ilomCtrlPowerAction=ilomCtrlPowerAction, ilomCtrlSerialInternalPortBaudRate=ilomCtrlSerialInternalPortBaudRate, ilomCtrlAlertsEntry=ilomCtrlAlertsEntry, ilomCtrlActiveDirectoryCertFileURI=ilomCtrlActiveDirectoryCertFileURI, ilomCtrlSessionsTable=ilomCtrlSessionsTable, ilomCtrlActiveDirectoryCertSerialNo=ilomCtrlActiveDirectoryCertSerialNo, ilomCtrlLdapSslOperatorGroupName=ilomCtrlLdapSslOperatorGroupName, ilomCtrlResetControl=ilomCtrlResetControl, ilomCtrlRadiusEnabled=ilomCtrlRadiusEnabled, ilomCtrlLdapSslOptUsrMappingBindPw=ilomCtrlLdapSslOptUsrMappingBindPw, ilomCtrlActiveDirUserDomain=ilomCtrlActiveDirUserDomain, ilomCtrlActiveDirOperatorGroupsEntry=ilomCtrlActiveDirOperatorGroupsEntry, ilomCtrlLdapSslAdminGroupId=ilomCtrlLdapSslAdminGroupId, ilomCtrlLdapSslAlternateServerPort=ilomCtrlLdapSslAlternateServerPort, ilomCtrlLdapSslAdminGroupsEntry=ilomCtrlLdapSslAdminGroupsEntry, ilomCtrlRadius=ilomCtrlRadius, ilomCtrlPowerEntry=ilomCtrlPowerEntry, ilomCtrlBackupAndRestoreActionStatus=ilomCtrlBackupAndRestoreActionStatus, ilomCtrlSessions=ilomCtrlSessions, ilomCtrlActiveDirDnsLocatorQueryId=ilomCtrlActiveDirDnsLocatorQueryId, ilomCtrlThdModulesEntry=ilomCtrlThdModulesEntry, ilomCtrlSystemIdentifier=ilomCtrlSystemIdentifier, ILOMCtrlBackupAndRestoreAction=ILOMCtrlBackupAndRestoreAction, ilomCtrlPowerTable=ilomCtrlPowerTable, ilomCtrlSPARCDiagsLevel=ilomCtrlSPARCDiagsLevel, ilomCtrlLdapSsl=ilomCtrlLdapSsl, ilomCtrlLdapSslCustomGroupId=ilomCtrlLdapSslCustomGroupId, ilomCtrlActiveDirDnsLocatorQueryService=ilomCtrlActiveDirDnsLocatorQueryService, ilomCtrlThdInstanceState=ilomCtrlThdInstanceState, ilomCtrlSerialInternalPortPresent=ilomCtrlSerialInternalPortPresent, ilomCtrlAlertEmailEventTypeFilter=ilomCtrlAlertEmailEventTypeFilter, ilomCtrlEventLog=ilomCtrlEventLog, ILOMCtrlFirmwareUpdateStatus=ILOMCtrlFirmwareUpdateStatus, ilomCtrlSPARCHostBootRestart=ilomCtrlSPARCHostBootRestart, ilomCtrlLdapSslUserDomainTable=ilomCtrlLdapSslUserDomainTable, ilomCtrlBackupAndRestoreAction=ilomCtrlBackupAndRestoreAction, ilomCtrlFirmwareBuildNumber=ilomCtrlFirmwareBuildNumber, ilomCtrlSPARCHostPOSTVersion=ilomCtrlSPARCHostPOSTVersion, ilomCtrlEventLogDescription=ilomCtrlEventLogDescription, ilomCtrlLocalUserEntry=ilomCtrlLocalUserEntry, ilomCtrlConformances=ilomCtrlConformances, ilomCtrlPowerReset=ilomCtrlPowerReset, ilomCtrlSessionsUsername=ilomCtrlSessionsUsername, ilomCtrlFirmwareMgmtFilesystemVersion=ilomCtrlFirmwareMgmtFilesystemVersion, ILOMCtrlTargetIndex=ILOMCtrlTargetIndex, ilomCtrlDeprecatedObjectsGroup=ilomCtrlDeprecatedObjectsGroup, ilomCtrlActiveDirAdminGroupId=ilomCtrlActiveDirAdminGroupId, ilomCtrlActiveDirectoryCertValidBegin=ilomCtrlActiveDirectoryCertValidBegin, ilomCtrlSingleSignon=ilomCtrlSingleSignon, ilomCtrlNetworkPendingIpGateway=ilomCtrlNetworkPendingIpGateway, ilomCtrlSPARCBootMode=ilomCtrlSPARCBootMode, ilomCtrlThdModuleName=ilomCtrlThdModuleName, ilomCtrlSPARCDiags=ilomCtrlSPARCDiags, ilomCtrlEventLogTable=ilomCtrlEventLogTable, ilomCtrlUsers=ilomCtrlUsers, ilomCtrlRemoteSyslogDest2=ilomCtrlRemoteSyslogDest2, ilomCtrlSPARCHostControl=ilomCtrlSPARCHostControl, ilomCtrlSshRsaKeyLength=ilomCtrlSshRsaKeyLength, ilomCtrlDeviceNTPServerOneIP=ilomCtrlDeviceNTPServerOneIP, ilomCtrlRadiusSecret=ilomCtrlRadiusSecret, ilomCtrlSshRsaKeyFingerprint=ilomCtrlSshRsaKeyFingerprint, ilomCtrlDNSNameServers=ilomCtrlDNSNameServers, ilomCtrlNetworkState=ilomCtrlNetworkState, ilomCtrlThdInstanceTable=ilomCtrlThdInstanceTable, ilomCtrlSPARCHostSendBreakAction=ilomCtrlSPARCHostSendBreakAction, ilomCtrlActiveDirDnsLocatorEnabled=ilomCtrlActiveDirDnsLocatorEnabled, ilomCtrlPolicy=ilomCtrlPolicy, ilomCtrlFirmwareTFTPFileName=ilomCtrlFirmwareTFTPFileName, ilomCtrlSshGenerateNewKeyType=ilomCtrlSshGenerateNewKeyType, ilomCtrlLdapBindPassword=ilomCtrlLdapBindPassword, ilomCtrlRedundancyStatus=ilomCtrlRedundancyStatus, ilomCtrlSPARCHostHypervisorVersion=ilomCtrlSPARCHostHypervisorVersion, ilomCtrlLdapSslAlternateServerCertValidBegin=ilomCtrlLdapSslAlternateServerCertValidBegin, ilomCtrlSsh=ilomCtrlSsh, ilomCtrlSPARCHostMACAddress=ilomCtrlSPARCHostMACAddress, ilomCtrlLdapSslUserDomainEntry=ilomCtrlLdapSslUserDomainEntry, ilomCtrlRadiusDefaultRoles=ilomCtrlRadiusDefaultRoles, ilomCtrlNetworkCommitPending=ilomCtrlNetworkCommitPending, ilomCtrlActiveDirectoryLogDetail=ilomCtrlActiveDirectoryLogDetail, ilomCtrlActiveDirUserDomainTable=ilomCtrlActiveDirUserDomainTable, ilomCtrlSPARCHostBootFailRecovery=ilomCtrlSPARCHostBootFailRecovery, ilomCtrlActiveDirUserDomainId=ilomCtrlActiveDirUserDomainId, ilomCtrlActiveDirStrictCredentialErrorEnabled=ilomCtrlActiveDirStrictCredentialErrorEnabled, ilomCtrlSMTPCustomSender=ilomCtrlSMTPCustomSender, ilomCtrlLocalUserAuthTable=ilomCtrlLocalUserAuthTable, ilomCtrlLdapEnabled=ilomCtrlLdapEnabled, ilomCtrlThdModuleDesc=ilomCtrlThdModuleDesc, ilomCtrlLocalUserPassword=ilomCtrlLocalUserPassword, ilomCtrlAlertID=ilomCtrlAlertID, ilomCtrlLdap=ilomCtrlLdap, ILOMCtrlSPARCDiagsTrigger=ILOMCtrlSPARCDiagsTrigger, ilomCtrlAlertEmailMessagePrefix=ilomCtrlAlertEmailMessagePrefix, ILOMCtrlRedundancyAction=ILOMCtrlRedundancyAction, ilomCtrlLdapSslCertFileVersion=ilomCtrlLdapSslCertFileVersion, ilomCtrlActiveDirAlternateServerId=ilomCtrlActiveDirAlternateServerId, ILOMCtrlEventLogClass=ILOMCtrlEventLogClass, ILOMCtrlSPARCHostSendBreakAction=ILOMCtrlSPARCHostSendBreakAction, ilomCtrlAlertsTable=ilomCtrlAlertsTable, ilomCtrlActiveDirAlternateServerEntry=ilomCtrlActiveDirAlternateServerEntry, ilomCtrlResetAction=ilomCtrlResetAction, ilomCtrlThdModName=ilomCtrlThdModName, ilomCtrlActiveDirectoryDefaultRole=ilomCtrlActiveDirectoryDefaultRole, ilomCtrlLdapSslCertFileURI=ilomCtrlLdapSslCertFileURI, ilomCtrlLdapSslCustomGroupName=ilomCtrlLdapSslCustomGroupName, PYSNMP_MODULE_ID=ilomCtrlMIB, ilomCtrlSPARCHostIoReconfigurePolicy=ilomCtrlSPARCHostIoReconfigurePolicy, ilomCtrlLdapDefaultRoles=ilomCtrlLdapDefaultRoles, ilomCtrlLdapSslEnabled=ilomCtrlLdapSslEnabled, ilomCtrlActiveDirDnsLocatorQueryTable=ilomCtrlActiveDirDnsLocatorQueryTable, ILOMCtrlSPARCHostBootFailRecovery=ILOMCtrlSPARCHostBootFailRecovery, ilomCtrlThdModuleAction=ilomCtrlThdModuleAction, ilomCtrlSPARCHostMaxBootFail=ilomCtrlSPARCHostMaxBootFail, ilomCtrlActiveDirCustomGroupName=ilomCtrlActiveDirCustomGroupName, ilomCtrlSPARCHostPOSTStatus=ilomCtrlSPARCHostPOSTStatus, ilomCtrlClients=ilomCtrlClients, ilom=ilom, ilomCtrlHttpEnabled=ilomCtrlHttpEnabled, ilomCtrlSPARCHostBootTimeout=ilomCtrlSPARCHostBootTimeout, ilomCtrlLdapSslCertFileClear=ilomCtrlLdapSslCertFileClear, ilomCtrlLdapSslAlternateServerCertClear=ilomCtrlLdapSslAlternateServerCertClear, ILOMCtrlThdAction=ILOMCtrlThdAction, ilomCtrlSessionsId=ilomCtrlSessionsId, ilomCtrlLdapSslGlobalObj=ilomCtrlLdapSslGlobalObj, ILOMCtrlModTargetIndex=ILOMCtrlModTargetIndex, ILOMCtrlSPARCHostIoReconfigurePolicy=ILOMCtrlSPARCHostIoReconfigurePolicy, ilomCtrlRedundancyAction=ilomCtrlRedundancyAction, ilomCtrlSPARCDiagsVerbosity=ilomCtrlSPARCDiagsVerbosity, ilomCtrlLdapSslOperatorGroupsEntry=ilomCtrlLdapSslOperatorGroupsEntry, ilomCtrlFirmwarePreserveConfig=ilomCtrlFirmwarePreserveConfig, ilomCtrlAlertSNMPCommunityOrUsername=ilomCtrlAlertSNMPCommunityOrUsername, ilomCtrlActiveDirAlternateServerCertStatus=ilomCtrlActiveDirAlternateServerCertStatus, ilomCtrlFirmwareMgmt=ilomCtrlFirmwareMgmt, ilomCtrlSPARCDiagsHwChangeVerbosity=ilomCtrlSPARCDiagsHwChangeVerbosity, ilomCtrlLdapSslIP=ilomCtrlLdapSslIP, ILOMCtrlAlertSNMPVersion=ILOMCtrlAlertSNMPVersion, ILOMCtrlEventSeverity=ILOMCtrlEventSeverity, ilomCtrlThdModulesTable=ilomCtrlThdModulesTable, ilomCtrlActiveDirectoryPortNumber=ilomCtrlActiveDirectoryPortNumber)
mibBuilder.exportSymbols("SUN-ILOM-CONTROL-MIB", ilomCtrlActiveDirectory=ilomCtrlActiveDirectory, ilomCtrlPolicyTable=ilomCtrlPolicyTable, ilomCtrlLdapSslCertFileSubject=ilomCtrlLdapSslCertFileSubject, ilomCtrlLocalUserUsername=ilomCtrlLocalUserUsername, ilomCtrlEventLogClass=ilomCtrlEventLogClass, ilomCtrlSPARCBootModeState=ilomCtrlSPARCBootModeState, ilomCtrlRemoteSyslogDest1=ilomCtrlRemoteSyslogDest1, ilomCtrlEventLogType=ilomCtrlEventLogType, ilomCtrlLdapBindDn=ilomCtrlLdapBindDn, ilomCtrlActiveDirAlternateServerIp=ilomCtrlActiveDirAlternateServerIp, ILOMCtrlNetworkIpDiscovery=ILOMCtrlNetworkIpDiscovery, ilomCtrlActiveDirectoryIP=ilomCtrlActiveDirectoryIP, ilomCtrlThdAction=ilomCtrlThdAction, ilomCtrlLdapSslAlternateServerIp=ilomCtrlLdapSslAlternateServerIp, ilomCtrlEventLogEntry=ilomCtrlEventLogEntry, ilomCtrlThd=ilomCtrlThd, ilomCtrlLdapSslAlternateServerTable=ilomCtrlLdapSslAlternateServerTable, ilomCtrlTimezone=ilomCtrlTimezone, ilomCtrlPolicyId=ilomCtrlPolicyId, ilomCtrlNetworkIpAddress=ilomCtrlNetworkIpAddress, ilomCtrlNetworkPendingIpDiscovery=ilomCtrlNetworkPendingIpDiscovery, ilomCtrlDateAndTime=ilomCtrlDateAndTime, ilomCtrlLdapSslAlternateServerCertIssuer=ilomCtrlLdapSslAlternateServerCertIssuer, ILOMCtrlSPARCDiagsVerbosityAdv=ILOMCtrlSPARCDiagsVerbosityAdv, ilomCtrlSMTPEnabled=ilomCtrlSMTPEnabled, ilomCtrlActiveDirAlternateServerCertValidEnd=ilomCtrlActiveDirAlternateServerCertValidEnd, ilomCtrlClock=ilomCtrlClock, ilomCtrlSMTP=ilomCtrlSMTP, ilomCtrlLocalUserTable=ilomCtrlLocalUserTable, ilomCtrlDNSdhcpAutoDns=ilomCtrlDNSdhcpAutoDns, ilomCtrlSPARCHostGMVersion=ilomCtrlSPARCHostGMVersion, ilomCtrlLogs=ilomCtrlLogs, ilomCtrlEventLogRecordID=ilomCtrlEventLogRecordID, ilomCtrlSPARCDiagsTrigger=ilomCtrlSPARCDiagsTrigger, ilomCtrlActiveDirAdminGroupsTable=ilomCtrlActiveDirAdminGroupsTable, ilomCtrlFirmwareTFTPServerIP=ilomCtrlFirmwareTFTPServerIP, ILOMCtrlSPARCHostBootRestart=ILOMCtrlSPARCHostBootRestart, ILOMCtrlSessionsConnectionType=ILOMCtrlSessionsConnectionType, ilomCtrlNetworkManagementPort=ilomCtrlNetworkManagementPort, ilomCtrlPolicyEnabled=ilomCtrlPolicyEnabled, ilomCtrlActiveDirCustomGroupsEntry=ilomCtrlActiveDirCustomGroupsEntry, ilomCtrlLdapServerIP=ilomCtrlLdapServerIP, ilomCtrlLdapSslAlternateServerId=ilomCtrlLdapSslAlternateServerId, ilomCtrlHttpSecureRedirect=ilomCtrlHttpSecureRedirect, ilomCtrlLdapSslCertFileStatus=ilomCtrlLdapSslCertFileStatus, ilomCtrlLdapSslDefaultRole=ilomCtrlLdapSslDefaultRole, ilomCtrlLdapSslCertFileValidBegin=ilomCtrlLdapSslCertFileValidBegin, ilomCtrlSPARCHostOSBootStatus=ilomCtrlSPARCHostOSBootStatus, ilomCtrlActiveDirAlternateServerCertValidBegin=ilomCtrlActiveDirAlternateServerCertValidBegin, ilomCtrlFirmwareMgmtAction=ilomCtrlFirmwareMgmtAction, ilomCtrlEventLogTimestamp=ilomCtrlEventLogTimestamp, ilomCtrlLdapSslAdminGroupsTable=ilomCtrlLdapSslAdminGroupsTable, ilomCtrlLdapSslOptUsrMappingAttrInfo=ilomCtrlLdapSslOptUsrMappingAttrInfo, ILOMCtrlAlertType=ILOMCtrlAlertType, ilomCtrlResetToDefaultsAction=ilomCtrlResetToDefaultsAction, ilomCtrlLdapSslOperatorGroupsTable=ilomCtrlLdapSslOperatorGroupsTable, ilomCtrlEventLogClear=ilomCtrlEventLogClear, ilomCtrlNetworkIpNetmask=ilomCtrlNetworkIpNetmask, ilomCtrlBackupAndRestoreTargetURI=ilomCtrlBackupAndRestoreTargetURI, ilomCtrlLdapSslCustomGroupsTable=ilomCtrlLdapSslCustomGroupsTable, ilomCtrlSshEnabled=ilomCtrlSshEnabled, ILOMCtrlSPARCDiagsLevelAdv=ILOMCtrlSPARCDiagsLevelAdv, ILOMCtrlSPARCDiagsLevel=ILOMCtrlSPARCDiagsLevel, ilomCtrlNetworkIpDiscovery=ilomCtrlNetworkIpDiscovery, ilomCtrlLdapSslDefaultRoles=ilomCtrlLdapSslDefaultRoles, ilomCtrlActiveDirAlternateServerCertIssuer=ilomCtrlActiveDirAlternateServerCertIssuer, ilomCtrlLdapSslUserDomain=ilomCtrlLdapSslUserDomain, ilomCtrlLocalUserAuthRowStatus=ilomCtrlLocalUserAuthRowStatus, ilomCtrlLdapSslOptUsrMappingBindDn=ilomCtrlLdapSslOptUsrMappingBindDn, ilomCtrlSshDsaKeyLength=ilomCtrlSshDsaKeyLength, ilomCtrlGroups=ilomCtrlGroups, ilomCtrlNetworkSidebandMacAddress=ilomCtrlNetworkSidebandMacAddress, ilomCtrlLdapSslPortNumber=ilomCtrlLdapSslPortNumber, ilomCtrlPowerControl=ilomCtrlPowerControl, ilomCtrlAlertDestinationPort=ilomCtrlAlertDestinationPort, ILOMCtrlSPARCDiagsVerbosity=ILOMCtrlSPARCDiagsVerbosity, ilomCtrlResetTable=ilomCtrlResetTable, ILOMCtrlUserRole=ILOMCtrlUserRole, ilomCtrlResetEntry=ilomCtrlResetEntry, ilomCtrlIdentification=ilomCtrlIdentification, ilomCtrlHostName=ilomCtrlHostName, ilomCtrlHttpPortNumber=ilomCtrlHttpPortNumber, ILOMCtrlRedundancyStatus=ILOMCtrlRedundancyStatus, ilomCtrlLdapSslAlternateServerCertVersion=ilomCtrlLdapSslAlternateServerCertVersion, ilomCtrlLdapSslOptUsrMappingSearchBase=ilomCtrlLdapSslOptUsrMappingSearchBase, ilomCtrlNetworkMacAddress=ilomCtrlNetworkMacAddress, ilomCtrlActiveDirExpSearchEnabled=ilomCtrlActiveDirExpSearchEnabled, ILOMCtrlUserRoles=ILOMCtrlUserRoles, ilomCtrlHttp=ilomCtrlHttp, ilomCtrlAlertType=ilomCtrlAlertType, ilomCtrlPolicyLongStr=ilomCtrlPolicyLongStr, ilomCtrlSPARCHostOBPVersion=ilomCtrlSPARCHostOBPVersion, ilomCtrlLocalUserCLIMode=ilomCtrlLocalUserCLIMode, ilomCtrlActiveDirCustomGroupsTable=ilomCtrlActiveDirCustomGroupsTable, ILOMCtrlFlowControl=ILOMCtrlFlowControl, ilomCtrlActiveDirAlternateServerCertClear=ilomCtrlActiveDirAlternateServerCertClear, ILOMCtrlEventLogType=ILOMCtrlEventLogType, ilomCtrlSerial=ilomCtrlSerial, ilomCtrlLdapSslAlternateServerCertSubject=ilomCtrlLdapSslAlternateServerCertSubject, ilomCtrlEventLogSeverity=ilomCtrlEventLogSeverity, ilomCtrlLocalUserAuthUsername=ilomCtrlLocalUserAuthUsername, ilomCtrlSessionsEntry=ilomCtrlSessionsEntry, ilomCtrlNetworkPendingManagementPort=ilomCtrlNetworkPendingManagementPort, ilomCtrlSessionsConnectionType=ilomCtrlSessionsConnectionType, ilomCtrlActiveDirDnsLocatorQueryEntry=ilomCtrlActiveDirDnsLocatorQueryEntry, ilomCtrlSPARCDiagsUserResetLevel=ilomCtrlSPARCDiagsUserResetLevel, ilomCtrlSshGenerateNewKeyAction=ilomCtrlSshGenerateNewKeyAction, ilomCtrlLdapSslAlternateServerEntry=ilomCtrlLdapSslAlternateServerEntry, ILOMCtrlSPARCHostAutoRestartPolicy=ILOMCtrlSPARCHostAutoRestartPolicy, ILOMCtrlBaudRate=ILOMCtrlBaudRate, ilomCtrlSPARCDiagsPowerOnLevel=ilomCtrlSPARCDiagsPowerOnLevel, ilomCtrlHttpsEnabled=ilomCtrlHttpsEnabled, ilomCtrlDeviceNTPServerTwoIP=ilomCtrlDeviceNTPServerTwoIP, ILOMCtrlResetAction=ILOMCtrlResetAction, ilomCtrlLocalUserAuthPassword=ilomCtrlLocalUserAuthPassword, ilomCtrlFirmwareMgmtVersion=ilomCtrlFirmwareMgmtVersion, ilomCtrlLdapSslCertFileSerialNo=ilomCtrlLdapSslCertFileSerialNo, ilomCtrlActiveDirCustomGroupRoles=ilomCtrlActiveDirCustomGroupRoles, ILOMCtrlLocalUserUsername=ILOMCtrlLocalUserUsername, ilomCtrlLdapSslOptUsrMappingEnabled=ilomCtrlLdapSslOptUsrMappingEnabled, ilomCtrlSPARCDiagsMode=ilomCtrlSPARCDiagsMode, ilomCtrlLocalUserAuthRole=ilomCtrlLocalUserAuthRole, ilomCtrlBackupAndRestorePassphrase=ilomCtrlBackupAndRestorePassphrase, ilomCtrlDNSTimeout=ilomCtrlDNSTimeout, ilomCtrlNetworkDHCPServerAddr=ilomCtrlNetworkDHCPServerAddr, ilomCtrlMIB=ilomCtrlMIB, ILOMCtrlSPARCDiagsMode=ILOMCtrlSPARCDiagsMode, ilomCtrlNetworkPendingIpNetmask=ilomCtrlNetworkPendingIpNetmask, ilomCtrlActiveDirectoryTimeout=ilomCtrlActiveDirectoryTimeout, ilomCtrlActiveDirAlternateServerCertSubject=ilomCtrlActiveDirAlternateServerCertSubject, ilomCtrlSPARCBootModeScript=ilomCtrlSPARCBootModeScript, ilomCtrlThdInstanceEntry=ilomCtrlThdInstanceEntry, ilomCtrlSPARCDiagsUserResetVerbosity=ilomCtrlSPARCDiagsUserResetVerbosity, ilomCtrlLdapSslAlternateServerCertStatus=ilomCtrlLdapSslAlternateServerCertStatus, ilomCtrlActiveDirAdminGroupsEntry=ilomCtrlActiveDirAdminGroupsEntry, ilomCtrlSerialExternalPortBaudRate=ilomCtrlSerialExternalPortBaudRate, ilomCtrlRadiusDefaultRole=ilomCtrlRadiusDefaultRole)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, value_range_constraint, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(object_group, module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'ModuleCompliance', 'NotificationGroup')
(object_identity, module_identity, bits, integer32, notification_type, gauge32, counter32, mib_identifier, unsigned32, enterprises, iso, counter64, ip_address, time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'ModuleIdentity', 'Bits', 'Integer32', 'NotificationType', 'Gauge32', 'Counter32', 'MibIdentifier', 'Unsigned32', 'enterprises', 'iso', 'Counter64', 'IpAddress', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(truth_value, row_status, date_and_time, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'RowStatus', 'DateAndTime', 'TextualConvention', 'DisplayString')
sun = mib_identifier((1, 3, 6, 1, 4, 1, 42))
products = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2))
ilom = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175))
ilom_ctrl_mib = module_identity((1, 3, 6, 1, 4, 1, 42, 2, 175, 102))
ilomCtrlMIB.setRevisions(('2010-06-11 00:00', '2010-06-08 00:00', '2009-03-30 00:00', '2009-03-03 00:00', '2008-05-15 00:00', '2008-04-11 00:00', '2007-02-20 00:00', '2006-12-15 00:00', '2005-12-19 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
ilomCtrlMIB.setRevisionsDescriptions(("Add support for the SPARC diagnostic 'HW change' trigger", 'Add ActiveDirectory parameter ilomCtrlActiveDirStrictCredentialErrorEnabled', 'Add LdapSsl optional User Mapping parameters.', 'Add ActiveDirectory parameter ilomCtrlActiveDirExpSearchEnabled.', "Version 3.0 Released with ILOM version 3.0 Added alert event class/type filtering Added Telemetry Harness Daemon (THD) Added dns-locator objects and certificate params for ActiveDirectory Added ilomCtrlLdapSsl Unify POST knobs for Volume and Enterprise Products Added BackupAndRestore configuration XML file support Added DNS configuration support Added factory to ILOMCtrlResetToDefaultsAction Added 'other' values to several TCs Added ilomCtrlSPARCHostHypervisorVersion Added ilomCtrlSPARCHostSysFwVersion Added ilomCtrlSPARCHostSendBreakAction Added sideband management support", 'Add destinationport for use with trap type alerts. Remove range from ilomCtrlEventLogRecordID.', 'Version 2.0', 'Version: 1.1 Released with ILOM version 1.1.5', 'Version: 0.7 Initial Release'))
if mibBuilder.loadTexts:
ilomCtrlMIB.setLastUpdated('201006110000Z')
if mibBuilder.loadTexts:
ilomCtrlMIB.setOrganization('Oracle Corporation')
if mibBuilder.loadTexts:
ilomCtrlMIB.setContactInfo('Oracle Corporation 500 Oracle Parkway Redwood Shores, CA 95065 U.S.A. http://www.oracle.com')
if mibBuilder.loadTexts:
ilomCtrlMIB.setDescription('SUN-ILOM-CONTROL-MIB.mib Version 3.0 Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. This MIB controls all Sun Integrated Lights Out Management devices.')
ilom_ctrl_clients = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1))
ilom_ctrl_services = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2))
ilom_ctrl_network = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3))
ilom_ctrl_users = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4))
ilom_ctrl_sessions = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5))
ilom_ctrl_firmware_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6))
ilom_ctrl_logs = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7))
ilom_ctrl_alerts = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8))
ilom_ctrl_clock = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9))
ilom_ctrl_serial = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10))
ilom_ctrl_power_reset = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11))
ilom_ctrl_redundancy = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12))
ilom_ctrl_policy = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13))
ilom_ctrl_config_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14))
ilom_ctrl_sparc = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15))
ilom_ctrl_identification = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 16))
ilom_ctrl_thd = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17))
ilom_ctrl_conformances = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18))
ilom_ctrl_ntp = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 1))
ilom_ctrl_ldap = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2))
ilom_ctrl_radius = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3))
ilom_ctrl_remote_syslog = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 4))
ilom_ctrl_active_directory = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5))
ilom_ctrl_smtp = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6))
ilom_ctrl_ldap_ssl = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7))
ilom_ctrl_dns = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8))
ilom_ctrl_http = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1))
ilom_ctrl_https = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 2))
ilom_ctrl_ssh = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3))
ilom_ctrl_single_signon = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 4))
ilom_ctrl_event_log = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1))
ilom_ctrl_power_control = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1))
ilom_ctrl_reset_control = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2))
ilom_ctrl_backup_and_restore = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2))
ilom_ctrl_sparc_diags = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1))
ilom_ctrl_sparc_host_control = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2))
ilom_ctrl_sparc_boot_mode = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3))
ilom_ctrl_sparc_key_switch = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 4))
ilom_ctrl_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 1))
ilom_ctrl_groups = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 2))
class Ilomctrltargetindex(TextualConvention, OctetString):
description = 'A string that is short enough to be used properly as an index without overflowing the maximum number of subOIDs.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 110)
class Ilomctrlmodtargetindex(TextualConvention, OctetString):
description = 'A string that is short enough to be used properly along with ILOMCtrlInstanceTargetIndex as a pair of indexes without overflowing the maximum number of subOIDs.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 12)
class Ilomctrlinstancetargetindex(TextualConvention, OctetString):
description = 'A string that is short enough to be used properly along with ILOMCtrlModTargetIndex as a pair of indexes without overflowing the maximum number of subOIDs.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 100)
class Ilomctrlsessionsconnectiontype(TextualConvention, Integer32):
description = 'An enumerated value which describes possible connection types by which a user can be log in.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('shell', 1), ('web', 2), ('other', 3), ('snmp', 4))
class Ilomctrllocaluserusername(TextualConvention, OctetString):
description = "A local user username. This must start with an alphabetical letter and may contain alphabetical letters, digits, hyphens and underscores. This can not be 'password'. This can not contain spaces."
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(4, 16)
class Ilomctrllocaluserpassword(TextualConvention, OctetString):
description = 'A local user password.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(8, 16)
class Ilomctrluserrole(TextualConvention, Integer32):
description = 'An enumerated value which describes possible privilege levels (also known as roles) a user can have. ***NOTE: this textual-convention is deprecated and replaced by ILOMCtrlUserRoles.'
status = 'deprecated'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('administrator', 1), ('operator', 2), ('none', 3), ('other', 4))
class Ilomctrluserroles(TextualConvention, OctetString):
description = "A set of role-IDs which describe the possible privilege levels (also known as roles) for a user. This property supports the legacy roles of 'Administrator' or 'Operator', or any of the individual role ID combinations of 'a', 'u', 'c', 'r', 'o' and 's' (like 'aucro') where a-admin, u-user, c-console, r-reset, s-service and o-readOnly."
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 13)
class Ilomctrllocaluserauthclimode(TextualConvention, Integer32):
description = "An enumerated value which describes the possible CLI modes. The 'default' mode corresponds to the ILOM DMTF CLP. The 'alom' mode corresponds to the ALOM CMT."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('default', 1), ('alom', 2))
class Ilomctrlpoweraction(TextualConvention, Integer32):
description = 'An enumerated value which describes possible actions that can applied to a power control target.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('powerOn', 1), ('powerOff', 2), ('powerCycle', 3), ('powerSoft', 4))
class Ilomctrlresetaction(TextualConvention, Integer32):
description = 'An enumerated value which describes possible actions that can applied to a reset control target.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('reset', 1), ('resetNonMaskableInterrupt', 2), ('force', 3))
class Ilomctrlnetworkipdiscovery(TextualConvention, Integer32):
description = 'An enumerated value which determines whether the IP settings should static or dynamic (DHCP).'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('static', 1), ('dynamic', 2), ('other', 3))
class Ilomctrleventlogtype(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible event log type.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))
named_values = named_values(('log', 1), ('action', 2), ('fault', 3), ('state', 4), ('repair', 5), ('other', 6))
class Ilomctrleventlogclass(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible event log class.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))
named_values = named_values(('audit', 1), ('ipmi', 2), ('chassis', 3), ('fma', 4), ('system', 5), ('pcm', 6), ('other', 7))
class Ilomctrleventseverity(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible event severities.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))
named_values = named_values(('disable', 1), ('critical', 2), ('major', 3), ('minor', 4), ('down', 5), ('other', 6))
class Ilomctrlalerttype(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible alert notification types.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('email', 1), ('snmptrap', 2), ('ipmipet', 3))
class Ilomctrlalertsnmpversion(TextualConvention, Integer32):
description = 'An enumeration of the possible SNMP versions for traps generated by configuring alert rules.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('v1', 1), ('v2c', 2), ('v3', 3))
class Ilomctrlbaudrate(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible baud rates for serial ports.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('baud9600', 1), ('baud19200', 2), ('baud38400', 3), ('baud57600', 4), ('baud115200', 5))
class Ilomctrlflowcontrol(TextualConvention, Integer32):
description = 'An enumerated value which describes the possible flowcontrol settings for serial ports.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('unknown', 1), ('hardware', 2), ('software', 3), ('none', 4))
class Ilomctrlfirmwareupdatestatus(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible status values during a firmware update.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('tftpError', 1), ('imageVerificationFailed', 2), ('inProgress', 3), ('success', 4), ('other', 5))
class Ilomctrlfirmwareupdateaction(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible firmware management actions.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('clearProperties', 1), ('initiate', 2))
class Ilomctrlresettodefaultsaction(TextualConvention, Integer32):
description = 'An enumerated value indicating possible actions for resetting the SP back to factory defaults.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('none', 1), ('all', 2), ('factory', 3))
class Ilomctrlredundancystatus(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states a device can have in a redundant configuration.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('initializing', 1), ('active', 2), ('standby', 3), ('standAlone', 4), ('other', 5))
class Ilomctrlredundancyaction(TextualConvention, Integer32):
description = 'Setting the redundancy action to initiateFailover will cause the current SC to switch mastership. i.e., it will initiate actions to become master if it is standby or to become standby if it is master. No action is taken if the SC is initializing or running in standalone mode.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('ready', 1), ('initiateFailover', 2))
class Ilomctrlsparcdiagslevel(TextualConvention, Integer32):
description = "An enumerated value which contains all the possible states for embedded diagnostics for the host. The min value is the same as the 'enabled' value on some platforms and the max value is the same as the 'extended' value. ***NOTE: this textual-convention is deprecated and replaced with ILOMCtrlSPARCDiagsLevelAdv."
status = 'deprecated'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('min', 1), ('max', 2), ('advsettings', 3))
class Ilomctrlsparcdiagsleveladv(TextualConvention, Integer32):
description = "An enumerated value which contains all the possible states for embedded diagnostics for the host. The min value is the same as the 'enabled' value on some platforms and the max value is the same as the 'extended' value."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('init', 1), ('minimum', 2), ('normal', 3), ('maximum', 4), ('other', 5))
class Ilomctrlsparcdiagstrigger(TextualConvention, Integer32):
description = "An enumerated value which contains all the possible states for the trigger for embedded diagnostics on the host. x64 platforms with embedded diagnostics only support 'all-resets' and 'none' as possible states."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))
named_values = named_values(('allResets', 1), ('none', 2), ('userReset', 3), ('powerOnReset', 4), ('errorTest', 5), ('userResetandpowerOnReset', 6), ('userResetanderrorTest', 7), ('userTestandpowerOnReset', 8), ('hwChange', 9), ('hwChangeandpowerOnReset', 10), ('hwChangeanderrorTest', 11))
class Ilomctrlsparcdiagsmode(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible OPS modes specified to POST.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('off', 1), ('normal', 2), ('service', 3), ('unknown', 4))
class Ilomctrlsparcdiagsverbosity(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the verbosity level for embedded diagnostics on the host. ***NOTE: this textual-convention is deprecated and replaced with ILOMCtrlSPARCDiagsVerbosityAdv.'
status = 'deprecated'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('min', 1), ('max', 2), ('advsettings', 3))
class Ilomctrlsparcdiagsverbosityadv(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the verbosity level for embedded diagnostics on the host.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('none', 1), ('minimum', 2), ('normal', 3), ('maximum', 4), ('debug', 5))
class Ilomctrlsparchostautorestartpolicy(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible actions to perform when the SP determines that the host has hung.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('none', 1), ('reset', 2), ('dumpcore', 3))
class Ilomctrlsparchostbootrestart(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible actions to perform when the boot timer expires.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('none', 1), ('reset', 2))
class Ilomctrlsparchostbootfailrecovery(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible actions to perform when the max boot failures allowed is reached.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('none', 1), ('powercycle', 2), ('poweroff', 3))
class Ilomctrlsparchostsendbreakaction(TextualConvention, Integer32):
description = 'Send Break Action to Host.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('nop', 1), ('break', 2), ('dumpcore', 3))
class Ilomctrlsparchostioreconfigurepolicy(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the host IO reconfiguration policy that is applied at next host power-on.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('false', 1), ('nextboot', 2), ('true', 3))
class Ilomctrlsparcbootmodestate(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the boot mode state.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('normal', 1), ('resetNvram', 2))
class Ilomctrlsparckeyswitchstate(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible states for the key switch.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('normal', 1), ('standby', 2), ('diag', 3), ('locked', 4))
class Ilomctrlsparcdiagsaction(TextualConvention, Integer32):
description = 'An action to take to control POST running on the host.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('stop', 1), ('start', 2))
class Ilomctrlsshkeygentype(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible key types for ssh.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('none', 1), ('rsa', 2), ('dsa', 3))
class Ilomctrlthdaction(TextualConvention, Integer32):
description = 'An enumerated value which contains all the possible control actions for a THD module.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('suspend', 1), ('resume', 2), ('nop', 3))
class Ilomctrlbackupandrestoreaction(TextualConvention, Integer32):
description = 'An action to start Backup or Restore operation.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('backup', 1), ('restore', 2))
ilom_ctrl_device_ntp_server_one_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 1, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDeviceNTPServerOneIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDeviceNTPServerOneIP.setDescription('The IP address of the first NTP server used by the device. This property is ignored if NTP is not enabled.')
ilom_ctrl_device_ntp_server_two_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDeviceNTPServerTwoIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDeviceNTPServerTwoIP.setDescription('The IP address of the second NTP server used by the device. This property is ignored if NTP is not enabled.')
ilom_ctrl_ldap_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapEnabled.setDescription('Specifies whether or not the LDAP client is enabled.')
ilom_ctrl_ldap_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapServerIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapServerIP.setDescription('The IP address of the LDAP server used as a name service for user accounts.')
ilom_ctrl_ldap_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapPortNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapPortNumber.setDescription('Specifies the port number for the LDAP client.')
ilom_ctrl_ldap_bind_dn = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 4), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapBindDn.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapBindDn.setDescription('The distinguished name (DN) for the read-only proxy user used to bind to the LDAP server. Example: cn=proxyuser,ou=people,dc=sun,dc=com')
ilom_ctrl_ldap_bind_password = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 5), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapBindPassword.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapBindPassword.setDescription('The password of a read-only proxy user which is used to bind to the LDAP server. This property is essentially write-only. The write-only access level is no longer supported as of SNMPv2. This property must return a null value when read.')
ilom_ctrl_ldap_search_base = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 6), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSearchBase.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSearchBase.setDescription('A search base in the LDAP database below which to find users. Example: ou=people,dc=sun,dc=com')
ilom_ctrl_ldap_default_role = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 7), ilom_ctrl_user_role()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapDefaultRole.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLdapDefaultRole.setDescription('Specifies the role that a user authenticated via LDAP should have. ***NOTE: this object is deprecated and replaced by ilomCtrlLdapDefaultRoles.')
ilom_ctrl_ldap_default_roles = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 2, 8), ilom_ctrl_user_roles()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapDefaultRoles.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapDefaultRoles.setDescription("Specifies the role that a user authenticated via LDAP should have. This property supports the legacy roles of 'Administrator' or 'Operator', or any of the individual role ID combinations of 'a', 'u', 'c', 'r', 'o' and 's' (like 'aucro') where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilom_ctrl_radius_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRadiusEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRadiusEnabled.setDescription('Specifies whether or not the RADIUS client is enabled.')
ilom_ctrl_radius_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRadiusServerIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRadiusServerIP.setDescription('The IP address of the RADIUS server used as a name service for user accounts.')
ilom_ctrl_radius_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRadiusPortNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRadiusPortNumber.setDescription('Specifies the port number for the RADIUS client.')
ilom_ctrl_radius_secret = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 4), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRadiusSecret.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRadiusSecret.setDescription('The shared secret encryption key that is used to encypt traffic between the RADIUS client and server.')
ilom_ctrl_radius_default_role = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 5), ilom_ctrl_user_role()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRadiusDefaultRole.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlRadiusDefaultRole.setDescription('Specifies the role that a user authenticated via RADIUS should have. ***NOTE: this object is deprecated and replaced by ILOMCtrlUserRoles.')
ilom_ctrl_radius_default_roles = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 3, 6), ilom_ctrl_user_roles()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRadiusDefaultRoles.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRadiusDefaultRoles.setDescription("Specifies the role that a user authenticated via RADIUS should have. This property supports the legacy roles of 'Administrator' or 'Operator', or any of the individual role ID combinations of 'a', 'u', 'c', 'r', 'o' and 's' (like 'aucro') where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilom_ctrl_remote_syslog_dest1 = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 4, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRemoteSyslogDest1.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRemoteSyslogDest1.setDescription('The IP address of the first remote syslog destination (log host).')
ilom_ctrl_remote_syslog_dest2 = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 4, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRemoteSyslogDest2.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRemoteSyslogDest2.setDescription('The IP address of the second remote syslog destination (log host).')
ilom_ctrl_http_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlHttpEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlHttpEnabled.setDescription('Specifies whether or not the embedded web server should be running and listening on the HTTP port.')
ilom_ctrl_http_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlHttpPortNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlHttpPortNumber.setDescription('Specifies the port number that the embedded web server should listen to for HTTP requests.')
ilom_ctrl_http_secure_redirect = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 1, 3), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlHttpSecureRedirect.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlHttpSecureRedirect.setDescription('Specifies whether or not the embedded web server should redirect HTTP connections to HTTPS.')
ilom_ctrl_https_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 2, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlHttpsEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlHttpsEnabled.setDescription('Specifies whether or not the embedded web server should be running and listening on the HTTPS port.')
ilom_ctrl_https_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlHttpsPortNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlHttpsPortNumber.setDescription('Specifies the port number that the embedded web server should listen to for HTTPS requests.')
ilom_ctrl_ssh_rsa_key_fingerprint = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 1), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSshRsaKeyFingerprint.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshRsaKeyFingerprint.setDescription('The fingerprint of the RSA key used for the SSH protocol.')
ilom_ctrl_ssh_rsa_key_length = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSshRsaKeyLength.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshRsaKeyLength.setDescription('The length of the RSA key used for the SSH protocol.')
ilom_ctrl_ssh_dsa_key_fingerprint = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSshDsaKeyFingerprint.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshDsaKeyFingerprint.setDescription('The fingerprint of the DSA key used for the SSH protocol.')
ilom_ctrl_ssh_dsa_key_length = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSshDsaKeyLength.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshDsaKeyLength.setDescription('The length of the DSA key used for the SSH protocol.')
ilom_ctrl_ssh_generate_new_key_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 5), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSshGenerateNewKeyAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshGenerateNewKeyAction.setDescription('This property is used to initiate a new public key generation.')
ilom_ctrl_ssh_generate_new_key_type = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 6), ilom_ctrl_ssh_key_gen_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSshGenerateNewKeyType.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshGenerateNewKeyType.setDescription('SSH new key type. The possible type are rsa(2), dsa(3).')
ilom_ctrl_ssh_restart_sshd_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 7), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSshRestartSshdAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshRestartSshdAction.setDescription('This property is used to initiate sshd restart.')
ilom_ctrl_ssh_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 3, 8), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSshEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSshEnabled.setDescription('Speicfies whether or not the SSHD is enabled.')
ilom_ctrl_single_signon_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 2, 4, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSingleSignonEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSingleSignonEnabled.setDescription('Specified whether single sign-on authentication should be enabled on the device. Single sign-on allows tokens to be passed around so that it is not necessary to re-enter passwords between different applications. This would allow single sign-on between the SC web interface and the SP web interface, between the SC command-line interface and the SP command-line interface, and between the SC and SP interfaces and the Java Remote Console application.')
ilom_ctrl_network_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1))
if mibBuilder.loadTexts:
ilomCtrlNetworkTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkTable.setDescription('A table listing all targets whose networks can be controlled.')
ilom_ctrl_network_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkTarget'))
if mibBuilder.loadTexts:
ilomCtrlNetworkEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkEntry.setDescription('An entry for a target which can be reset.')
ilom_ctrl_network_target = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 1), snmp_admin_string())
if mibBuilder.loadTexts:
ilomCtrlNetworkTarget.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkTarget.setDescription("This is the nomenclature name for a target which has a configurable network. On some systems, there are multiple targets which have networks. On a traditional, non-blade system, this table will contain only one row for the network configuration of the service processor, which has a nomenclature name of '/SP'. On blade systems, this table will contain multiple rows. There will be a row for '/SC' which allows for configuration of the system controller's network settings. In addition, there will be rows for each blade's service processor. For example, a blade's service processor nomenclature takes the form of '/CH/BL0/SP', '/CH/BL1/SP' and so on. This will allow for the configuration of the service processors from the system controller. In the case of redundant system controllers, the floating master IP addressed can be configured using a name of /MASTERSC.")
ilom_ctrl_network_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 2), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkMacAddress.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkMacAddress.setDescription('Specifies the MAC address of the service processor or system controller.')
ilom_ctrl_network_ip_discovery = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 3), ilom_ctrl_network_ip_discovery()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpDiscovery.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpDiscovery.setDescription('Specifies whether the current target is configured to have static IP settings or whether these settings are retrieved dynamically from DHCP.')
ilom_ctrl_network_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpAddress.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpAddress.setDescription('Indicates the current IP address for the given target.')
ilom_ctrl_network_ip_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpGateway.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpGateway.setDescription('Indicates the current IP gateway for the given target.')
ilom_ctrl_network_ip_netmask = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpNetmask.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkIpNetmask.setDescription('Indicates the current IP netmask for the given target.')
ilom_ctrl_network_pending_ip_discovery = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 7), ilom_ctrl_network_ip_discovery()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpDiscovery.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpDiscovery.setDescription('This property is used to set the pending value for the mode of IP discovery for the given target. The possible values are static(1) or dynamic(2). Static values can be specified by setting the other pending properties in this table: ilomCtrlNetworkPendingIpAddress, ilomCtrlNetworkPendingIpGateway, and ilomCtrlNetworkPendingIpNetmask. If dynamic is specified, the other pending properties should not be set. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilom_ctrl_network_pending_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 8), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpAddress.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpAddress.setDescription('This property is used to set the pending IP address for the given target. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilom_ctrl_network_pending_ip_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 9), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpGateway.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpGateway.setDescription('This property is used to set the pending IP gateway for the given target. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilom_ctrl_network_pending_ip_netmask = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 10), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpNetmask.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingIpNetmask.setDescription('This property is used to set the pending IP netmask for the given target. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilom_ctrl_network_commit_pending = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 11), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkCommitPending.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkCommitPending.setDescription('This property is used to commit pending properties for the given row. Settings this property to true(1) will cause the network to be reconfigured according to the values specified in the other pending properties.')
ilom_ctrl_network_out_of_band_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 12), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkOutOfBandMacAddress.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkOutOfBandMacAddress.setDescription('Specifies the MAC address of the out of band management interface (where applicable)')
ilom_ctrl_network_sideband_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 13), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkSidebandMacAddress.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkSidebandMacAddress.setDescription('Specifies the MAC address of the sideband management interface (where applicable)')
ilom_ctrl_network_pending_management_port = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 14), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingManagementPort.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkPendingManagementPort.setDescription('This property is used to set the pending management port for the giventarget. This property does not take effect until the ilomCtrlNetworkCommitPending property is set to true for the given row.')
ilom_ctrl_network_management_port = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 15), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkManagementPort.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkManagementPort.setDescription('Indicates the current managment port for the given target')
ilom_ctrl_network_dhcp_server_addr = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 16), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlNetworkDHCPServerAddr.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkDHCPServerAddr.setDescription('The address of the DHCP server for this row.')
ilom_ctrl_network_state = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 3, 1, 1, 17), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNetworkState.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNetworkState.setDescription('Specifies whether or not the row is enabled.')
ilom_ctrl_local_user_auth_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1))
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthTable.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthTable.setDescription('This table provides a listing of the current local users on a system along with their password state. ***NOTE: this table is deprecated and replaced with ilomCtrlLocalUserTable.')
ilom_ctrl_local_user_auth_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserAuthUsername'))
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthEntry.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthEntry.setDescription('An entry containing objects for a local user in the database. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserEntry.')
ilom_ctrl_local_user_auth_username = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 1), snmp_admin_string())
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthUsername.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthUsername.setDescription('The username of a local user on the device. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserUsername.')
ilom_ctrl_local_user_auth_password = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 2), snmp_admin_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthPassword.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthPassword.setDescription('The password of a local user on the device. This property is essentially write-only. The write-only access level is no longer supported as of SNMPv2. This property must return a null value when read. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserPassword.')
ilom_ctrl_local_user_auth_role = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 3), ilom_ctrl_user_role()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthRole.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthRole.setDescription("Specifies whether a user's password is assigned or unassigned. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserRoles.")
ilom_ctrl_local_user_auth_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 4), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthRowStatus.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthRowStatus.setDescription('This object is used to create a new row or to delete an existing row in the table. This property can be set to either createAndWait(5) or destroy(6), to create and remove a user respectively. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserRowStatus.')
ilom_ctrl_local_user_auth_cli_mode = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 1, 1, 5), ilom_ctrl_local_user_auth_cli_mode()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthCLIMode.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlLocalUserAuthCLIMode.setDescription("Allows the CLI mode to be configured on a per-user basis. The CLI mode determines which shell the user will interact with. If the 'default' mode is select, the user will see the DMTF CLP after logging in via ssh or the console. If the 'alom' mode is selected, the user will see the ALOM CMT shell after logging in via ssh or the console. ***NOTE: this object is deprecated and replaced with ilomCtrlLocalUserCLIMode.")
ilom_ctrl_local_user_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2))
if mibBuilder.loadTexts:
ilomCtrlLocalUserTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLocalUserTable.setDescription('This table provides a listing of the current local users on a system along with their password state.')
ilom_ctrl_local_user_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserUsername'))
if mibBuilder.loadTexts:
ilomCtrlLocalUserEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLocalUserEntry.setDescription('An entry containing objects for a local user in the database.')
ilom_ctrl_local_user_username = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 1), ilom_ctrl_local_user_username())
if mibBuilder.loadTexts:
ilomCtrlLocalUserUsername.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLocalUserUsername.setDescription('The username of a local user on the device.')
ilom_ctrl_local_user_password = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 2), ilom_ctrl_local_user_password()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ilomCtrlLocalUserPassword.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLocalUserPassword.setDescription('The password of a local user on the device. This property is essentially write-only. The write-only access level is no longer supported as of SNMPv2. This property must return a null value when read.')
ilom_ctrl_local_user_roles = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 3), ilom_ctrl_user_roles()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLocalUserRoles.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLocalUserRoles.setDescription("Specifies the role that is associated with a user. The roles can be assigned for the legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's'. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilom_ctrl_local_user_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 4), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ilomCtrlLocalUserRowStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLocalUserRowStatus.setDescription('This object is used to create a new row or to delete an existing row in the table. This property can be set to either createAndWait(5) or destroy(6), to create and remove a user respectively.')
ilom_ctrl_local_user_cli_mode = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 4, 2, 1, 5), ilom_ctrl_local_user_auth_cli_mode()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLocalUserCLIMode.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLocalUserCLIMode.setDescription("Allows the CLI mode to be configured on a per-user basis. The CLI mode determines which shell the user will interact with. If the 'default' mode is select, the user will see the DMTF CLP after logging in via ssh or the console. If the 'alom' mode is selected, the user will see the ALOM CMT shell after logging in via ssh or the console.")
ilom_ctrl_sessions_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1))
if mibBuilder.loadTexts:
ilomCtrlSessionsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSessionsTable.setDescription('A table listing the current user sessions.')
ilom_ctrl_sessions_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlSessionsId'))
if mibBuilder.loadTexts:
ilomCtrlSessionsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSessionsEntry.setDescription('An entry for a current session.')
ilom_ctrl_sessions_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
ilomCtrlSessionsId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSessionsId.setDescription('The instance number of a given logged-in user. This property is necessary since the same user can be logged in multiple times.')
ilom_ctrl_sessions_username = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 2), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSessionsUsername.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSessionsUsername.setDescription('The username of the user associated with the session.')
ilom_ctrl_sessions_connection_type = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 3), ilom_ctrl_sessions_connection_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSessionsConnectionType.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSessionsConnectionType.setDescription('The type of connection that the given user is using to access the device.')
ilom_ctrl_sessions_login_time = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 5, 1, 1, 4), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSessionsLoginTime.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSessionsLoginTime.setDescription('The date and time that the logged into the device.')
ilom_ctrl_firmware_mgmt_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 1), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtVersion.setDescription('The version of the current firmware image.')
ilom_ctrl_firmware_build_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlFirmwareBuildNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareBuildNumber.setDescription('The build number of the current firmware image.')
ilom_ctrl_firmware_build_date = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlFirmwareBuildDate.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareBuildDate.setDescription('The build date and time of the current firmware image.')
ilom_ctrl_firmware_tftp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlFirmwareTFTPServerIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareTFTPServerIP.setDescription('The IP address of the TFTP server which will be used to download the the firmware image.')
ilom_ctrl_firmware_tftp_file_name = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 5), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlFirmwareTFTPFileName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareTFTPFileName.setDescription('The relative path of the new firmware image file on the TFTP server.')
ilom_ctrl_firmware_preserve_config = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 6), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlFirmwarePreserveConfig.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwarePreserveConfig.setDescription('This property determines whether the previous configuration of the device should be preserved after a firmware update. The configuration data includes all users information, configuration of clients and services, and any logs. The default value of this property is true.')
ilom_ctrl_firmware_mgmt_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 7), ilom_ctrl_firmware_update_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtStatus.setDescription('This property indicates the status of a firmware update. If a TFTP error occurred while attempting to upload a new firmware image, the value of this property will be tftpError(1). If the image was uploaded correctly but it did not pass verification, the value of this property will be imageVerificationFailed(2). Otherwise, the status will indicate that the update is inProgress(3) or is a success(4). A firmware update could take as long as 20 minutes. During this time, no other operations should be performed on the device. Upon success, the device will be reset.')
ilom_ctrl_firmware_mgmt_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 8), ilom_ctrl_firmware_update_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtAction.setDescription('This property is used to initiate a firmware update using the values of the other firmware management properties as parameters. It can also clear the values of those parameters. To initiate a firmware update, set the value of this property to initate(2). To clear the values of the writeable firmware management properties, set this propery to clearProperties(1). Before initiating a firmware update, the ilomCtrlFirmwareTFTPServerIP, ilomCtrlFirmwareTFTPFileName, and ilomCtrlFirmwarePreserveConfig properties must be set. After intiating a firmware update, the ilomCtrlFirmwareMgmtStatus property can be used to determine if the operation was successful. This is effectively a write-only property.')
ilom_ctrl_firmware_mgmt_filesystem_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 9), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtFilesystemVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareMgmtFilesystemVersion.setDescription('The version of the current file system.')
ilom_ctrl_firmware_delay_bios = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 6, 10), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlFirmwareDelayBIOS.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlFirmwareDelayBIOS.setDescription("On servers that support a BIOS, this property is used to postpone the BIOS upgrade until the next server poweroff. Setting this property to 'false' will cause the server to be forced off if a BIOS upgrade is necessary. The default value of this property is false.")
ilom_ctrl_event_log_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1))
if mibBuilder.loadTexts:
ilomCtrlEventLogTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogTable.setDescription('This table provides a list of the current entries in the event log.')
ilom_ctrl_event_log_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlEventLogRecordID'))
if mibBuilder.loadTexts:
ilomCtrlEventLogEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogEntry.setDescription('An entry in the event logs table.')
ilom_ctrl_event_log_record_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 1), unsigned32())
if mibBuilder.loadTexts:
ilomCtrlEventLogRecordID.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogRecordID.setDescription('The record number for a given the event log entry.')
ilom_ctrl_event_log_type = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 2), ilom_ctrl_event_log_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlEventLogType.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogType.setDescription('An integer representing the type of event.')
ilom_ctrl_event_log_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 3), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlEventLogTimestamp.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogTimestamp.setDescription('The date and time that the event log entry was recorded.')
ilom_ctrl_event_log_class = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 4), ilom_ctrl_event_log_class()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlEventLogClass.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogClass.setDescription('An integer representing the class of event.')
ilom_ctrl_event_log_severity = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 5), ilom_ctrl_event_severity()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlEventLogSeverity.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogSeverity.setDescription('The event severity corresponding to the given log entry.')
ilom_ctrl_event_log_description = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 1, 1, 6), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlEventLogDescription.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogDescription.setDescription('A textual description of the event.')
ilom_ctrl_event_log_clear = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 7, 1, 2), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlEventLogClear.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlEventLogClear.setDescription("When set to 'true' clears the event log.")
ilom_ctrl_alerts_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1))
if mibBuilder.loadTexts:
ilomCtrlAlertsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertsTable.setDescription('This table is used to view and add alert rules.')
ilom_ctrl_alerts_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertID'))
if mibBuilder.loadTexts:
ilomCtrlAlertsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertsEntry.setDescription('An entry containing objects for an alert rule.')
ilom_ctrl_alert_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
ilomCtrlAlertID.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertID.setDescription('An integer ID associated with a given alert rule.')
ilom_ctrl_alert_severity = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 2), ilom_ctrl_event_severity()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertSeverity.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertSeverity.setDescription('This property specifies the mininum event severity which should trigger an alert, for a given class.')
ilom_ctrl_alert_type = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 3), ilom_ctrl_alert_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertType.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertType.setDescription('This property specifies the type of notification for a given alert. If the type is snmptrap(2) or ipmipet(3), the ilomCtrlAlertDestinationIP must be specified. If the type is email(1), the ilomCtrlAlertDestinationEmail must be specified.')
ilom_ctrl_alert_destination_ip = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertDestinationIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertDestinationIP.setDescription('This property species the IP address to send alert notifications when the alert type is snmptrap(2), ipmipet(3), or remotesyslog(4).')
ilom_ctrl_alert_destination_email = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 5), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertDestinationEmail.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertDestinationEmail.setDescription('This property species the email address to send alert notifications when the alert type is email(1).')
ilom_ctrl_alert_snmp_version = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 6), ilom_ctrl_alert_snmp_version()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertSNMPVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertSNMPVersion.setDescription('The version of SNMP trap that should be used for the given alert rule.')
ilom_ctrl_alert_snmp_community_or_username = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 7), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertSNMPCommunityOrUsername.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertSNMPCommunityOrUsername.setDescription("This string specifies the community string to be used when the ilomCtrlAlertSNMPVersion property is set to 'v1' or 'v2c'. Alternatively, this string specifies the SNMP username to use when the ilomCtrlAlertSNMPVersion is set to 'v3'.")
ilom_ctrl_alert_destination_port = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertDestinationPort.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertDestinationPort.setDescription('Destination port for SNMP traps, 0 maps to the default')
ilom_ctrl_alert_email_event_class_filter = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 9), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailEventClassFilter.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailEventClassFilter.setDescription("A class name or 'all' to filter emailed alerts on.")
ilom_ctrl_alert_email_event_type_filter = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 10), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailEventTypeFilter.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailEventTypeFilter.setDescription("A type name or 'all' to filter emailed alerts on.")
ilom_ctrl_alert_email_custom_sender = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 11), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailCustomSender.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailCustomSender.setDescription("An optional format to identify the sender or the 'from' address. Customizing this string allows the user to specify the exact contents (up to 80 chars) of the 'from' field in the email message. Either one of the substitution strings '<IPADDRESS>' or '<HOSTNAME>' can be used as needed. By default, this parameter is an empty string, which results in the standard ILOM formatted originator for the alerts. e.g., ilom-sp@sp1302.dev.sun.com, sun-ilom@[<IPADDRESS>], or ilom-alert@<HOSTNAME>.abc.com")
ilom_ctrl_alert_email_message_prefix = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 8, 1, 1, 12), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailMessagePrefix.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlAlertEmailMessagePrefix.setDescription('An optional string that can be added to the beginning of the message body. The prefix size can be up to 80 characters.')
ilom_ctrl_date_and_time = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9, 1), date_and_time()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDateAndTime.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDateAndTime.setDescription('The date and time of the device.')
ilom_ctrl_ntp_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9, 2), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlNTPEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlNTPEnabled.setDescription('Specifies whether or not Network Time Protocol is enabled.')
ilom_ctrl_timezone = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 9, 3), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlTimezone.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlTimezone.setDescription('The configured timezone string.')
ilom_ctrl_serial_internal_port_present = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSerialInternalPortPresent.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSerialInternalPortPresent.setDescription('Indicates whether the given device has an internal serial port that is configurable. The internal serial port is the connection between the host server and the service processor that allows the SP to access the host serial console.')
ilom_ctrl_serial_internal_port_baud_rate = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 2), ilom_ctrl_baud_rate()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSerialInternalPortBaudRate.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSerialInternalPortBaudRate.setDescription('Specifies the current baud rate setting for the internal serial port. This is only readable/settable if ilomCtrlSerialInternalPortPresent is true.')
ilom_ctrl_serial_external_port_present = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSerialExternalPortPresent.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSerialExternalPortPresent.setDescription('Indicates whether the given device has an external serial port that is configurable.')
ilom_ctrl_serial_external_port_baud_rate = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 4), ilom_ctrl_baud_rate()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSerialExternalPortBaudRate.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSerialExternalPortBaudRate.setDescription('Specifies the current baud rate setting for the external serial port. This is only readable/settable if ilomCtrlSerialExternalPortPresent is true.')
ilom_ctrl_serial_external_port_flow_control = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 10, 5), ilom_ctrl_flow_control()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSerialExternalPortFlowControl.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSerialExternalPortFlowControl.setDescription('Specifies the current flowcontrol setting for the external serial port. This is only readable/settable if ilomCtrlSerialExternalPortPresent is true.')
ilom_ctrl_power_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1))
if mibBuilder.loadTexts:
ilomCtrlPowerTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPowerTable.setDescription('A table listing all targets whose power can be controlled.')
ilom_ctrl_power_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlPowerTarget'))
if mibBuilder.loadTexts:
ilomCtrlPowerEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPowerEntry.setDescription('An entry for a power-controllable target.')
ilom_ctrl_power_target = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1, 1, 1), snmp_admin_string())
if mibBuilder.loadTexts:
ilomCtrlPowerTarget.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPowerTarget.setDescription("This is the nomenclature name for a target which supports power control. On some systems, there are multiple targets which support power control. On a traditional, non-blade system, this table will contain only one row. The nomenclature name for a traditional server is '/SYS'. On blade systems, this table will contain multiple rows. There will be a row for '/CH' which allows for power control of the entire chassis. In addition, there will be rows for each blade. Blade nomenclature takes the form of '/CH/BL0/SYS', '/CH/BL1/SYS', and so on.")
ilom_ctrl_power_action = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 1, 1, 1, 2), ilom_ctrl_power_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlPowerAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPowerAction.setDescription('The action to apply to the given power control target. The possible actions are powerOn(1), powerOff(2), powerCycle(3), and powerSoft(4). When this value is read, it returns a null value.')
ilom_ctrl_reset_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1))
if mibBuilder.loadTexts:
ilomCtrlResetTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlResetTable.setDescription('A table listing all targets which can be reset.')
ilom_ctrl_reset_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlResetTarget'))
if mibBuilder.loadTexts:
ilomCtrlResetEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlResetEntry.setDescription('An entry for a target which can be reset.')
ilom_ctrl_reset_target = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1, 1, 1), snmp_admin_string())
if mibBuilder.loadTexts:
ilomCtrlResetTarget.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlResetTarget.setDescription("This is the nomenclature name for a target which supports reset capabilities. On some systems, there are multiple targets which support reset. On most systems, only system controllers and service processors support reset. On a traditional, non-blade system, this table will contain only one row, representing its service processor. The nomenclature name for a traditional server's service processor is '/SP'. On blade systems, this table will contain multiple rows. There will be a row for '/SC' which allows for reset of the system controller. In addition, there will be rows for each blade's service processor. For example, a blade's service processor nomenclature takes the form of '/CH/BL0/SP', '/CH/BL1/SP' and so on.")
ilom_ctrl_reset_action = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 11, 2, 1, 1, 2), ilom_ctrl_reset_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlResetAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlResetAction.setDescription('The action to apply to the given reset control target. The possible actions are reset(1), which is a normal reset, resetNonMaskableInterrupt(2) which is a forced reset, and force(3) which is a forced reset for platforms that do not support NMI. When this value is read, it returns a null value.')
ilom_ctrl_redundancy_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12, 1), ilom_ctrl_redundancy_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlRedundancyStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRedundancyStatus.setDescription('This property indicates the status of the device in a redundant configuration. It may be active(2) or standby(3) when configured as a redundant pair or standAlone(4) if it does not have a peer. In addition, it may be in a state called initializing(1) if it is in a transitional state.')
ilom_ctrl_redundancy_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12, 2), ilom_ctrl_redundancy_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlRedundancyAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRedundancyAction.setDescription('This action is used to promote or demote this device from active or standy status.')
ilom_ctrl_redundancy_fru_name = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 12, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlRedundancyFRUName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlRedundancyFRUName.setDescription('FRU Name of the CMM on which this agent is running.')
ilom_ctrl_policy_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1))
if mibBuilder.loadTexts:
ilomCtrlPolicyTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPolicyTable.setDescription('A table listing all policies that can be administered.')
ilom_ctrl_policy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlPolicyId'))
if mibBuilder.loadTexts:
ilomCtrlPolicyEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPolicyEntry.setDescription('An entry for a policy which can be enabled or disabled.')
ilom_ctrl_policy_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
ilomCtrlPolicyId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPolicyId.setDescription('An integer identifier of the policy.')
ilom_ctrl_policy_short_str = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlPolicyShortStr.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPolicyShortStr.setDescription('A short description of the policy.')
ilom_ctrl_policy_long_str = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlPolicyLongStr.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPolicyLongStr.setDescription('A verbose description of the policy.')
ilom_ctrl_policy_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 13, 1, 1, 4), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlPolicyEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlPolicyEnabled.setDescription('Indicates the status of the policy.')
ilom_ctrl_reset_to_defaults_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 1), ilom_ctrl_reset_to_defaults_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlResetToDefaultsAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlResetToDefaultsAction.setDescription('This property is used to initiate the action of restoring the configuration on the SP to the original factory default state.')
ilom_ctrl_backup_and_restore_target_uri = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 1), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestoreTargetURI.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestoreTargetURI.setDescription('This property is used to set target destination of configuration xml file during backup and restore. The syntax is {protocol}://[user:passwword]@]host[/][path/][file] for example tftp://10.8.136.154/remotedir/config_backup.xml currently, the supported protocols are: scp, tftp. for certain protocol which needs password field, please use ilomCtrlBackupAndRestoreProtocolPassword to set password.')
ilom_ctrl_backup_and_restore_passphrase = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestorePassphrase.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestorePassphrase.setDescription('This property is used to set passphrase for encrypt/decrypt sensitive data during backup and restore. For snmpget, it returns null as value. ')
ilom_ctrl_backup_and_restore_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 3), ilom_ctrl_backup_and_restore_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestoreAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestoreAction.setDescription('This property is used to issue a action, either backup or restore. ')
ilom_ctrl_backup_and_restore_action_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 14, 2, 4), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestoreActionStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlBackupAndRestoreActionStatus.setDescription('This property is used to monitor the current status of backup/restore. ')
ilom_ctrl_sparc_diags_level = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 1), ilom_ctrl_sparc_diags_level()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsLevel.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot. ***NOTE: this object is deprecated and replaced with these: ilomCtrlSPARCDiagsPowerOnLevel, ilomCtrlSPARCDiagsUserResetLevel, ilomCtrlSPARCDiagsErrorResetLevel While deprecated, this object will display advsettings(3), unless: - all 3 of the above are currently set to init(1), in which case this object will display min(1) - all 3 of the above are currently set to maximum(3), in which case this object will display max(2).')
ilom_ctrl_sparc_diags_trigger = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 2), ilom_ctrl_sparc_diags_trigger()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsTrigger.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsTrigger.setDescription('Indicates the triggers of embedded diagnostics for the host.')
ilom_ctrl_sparc_diags_verbosity = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 3), ilom_ctrl_sparc_diags_verbosity()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsVerbosity.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot. ***NOTE: this object is deprecated and replaced with these: ilomCtrlSPARCDiagsPowerOnVerbosity, ilomCtrlSPARCDiagsUserResetVerbosity, ilomCtrlSPARCDiagsErrorResetVerbosity. While deprecated, this object will display advsettings(3), unless: - all 3 of the above are currently set to minimum(1), in which case this object will display min(1) - all 3 of the above are currently set to maximum(3), in which case this object will display max(2).')
ilom_ctrl_sparc_diags_mode = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 4), ilom_ctrl_sparc_diags_mode()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsMode.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsMode.setDescription('Indicates the modes for POST. POST will stop at the mode specified by this property.')
ilom_ctrl_sparc_diags_power_on_level = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 5), ilom_ctrl_sparc_diags_level_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsPowerOnLevel.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsPowerOnLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the power-on-reset trigger.')
ilom_ctrl_sparc_diags_user_reset_level = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 6), ilom_ctrl_sparc_diags_level_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsUserResetLevel.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsUserResetLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the user-reset trigger.')
ilom_ctrl_sparc_diags_error_reset_level = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 7), ilom_ctrl_sparc_diags_level_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsErrorResetLevel.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsErrorResetLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the error-reset trigger.')
ilom_ctrl_sparc_diags_power_on_verbosity = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 8), ilom_ctrl_sparc_diags_verbosity_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsPowerOnVerbosity.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsPowerOnVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for power-on-reset trigger.')
ilom_ctrl_sparc_diags_user_reset_verbosity = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 9), ilom_ctrl_sparc_diags_verbosity_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsUserResetVerbosity.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsUserResetVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for user-reset trigger.')
ilom_ctrl_sparc_diags_error_reset_verbosity = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 10), ilom_ctrl_sparc_diags_verbosity_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsErrorResetVerbosity.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsErrorResetVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for error-reset trigger.')
ilom_ctrl_sparc_diags_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsStatus.setDescription('Indicates the progress of POST diagnostics on the host, expressed as a percentage.')
ilom_ctrl_sparc_diags_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 12), ilom_ctrl_sparc_diags_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsAction.setDescription('An action to take to control POST running on the host.')
ilom_ctrl_sparc_diags_hw_change_level = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 13), ilom_ctrl_sparc_diags_level_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsHwChangeLevel.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsHwChangeLevel.setDescription('Indicates the level of embedded diagnostics that should be run on the host during a boot for the hw-change trigger.')
ilom_ctrl_sparc_diags_hw_change_verbosity = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 1, 14), ilom_ctrl_sparc_diags_verbosity_adv()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsHwChangeVerbosity.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCDiagsHwChangeVerbosity.setDescription('Indicates the verbosity level of embedded diagnostics that should be run on the host during a boot for hw-change trigger.')
ilom_ctrl_sparc_host_mac_address = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 1), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostMACAddress.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostMACAddress.setDescription('Displays the starting MAC address for the host.')
ilom_ctrl_sparc_host_obp_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostOBPVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostOBPVersion.setDescription('Displays the version string for OBP.')
ilom_ctrl_sparc_host_post_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 4), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostPOSTVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostPOSTVersion.setDescription('Displays the version string for POST.')
ilom_ctrl_sparc_host_auto_run_on_error = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 6), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostAutoRunOnError.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostAutoRunOnError.setDescription('This option determines whether the host should continue to boot in the event of a non-fatal POST error.')
ilom_ctrl_sparc_host_post_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 7), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostPOSTStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostPOSTStatus.setDescription('A string that describes the status of POST. ***NOTE: OS Boot status is ilomCtrlSPARCHostOSBootStatus.')
ilom_ctrl_sparc_host_auto_restart_policy = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 8), ilom_ctrl_sparc_host_auto_restart_policy()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostAutoRestartPolicy.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostAutoRestartPolicy.setDescription('This determines what action the SP should take when it discovers that the host is hung.')
ilom_ctrl_sparc_host_os_boot_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 9), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostOSBootStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostOSBootStatus.setDescription('A string that describes the boot status of host OS.')
ilom_ctrl_sparc_host_boot_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 36000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostBootTimeout.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostBootTimeout.setDescription('This is the boot timer time out value.')
ilom_ctrl_sparc_host_boot_restart = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 11), ilom_ctrl_sparc_host_boot_restart()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostBootRestart.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostBootRestart.setDescription('This determines what action the SP should take when the boot timer expires.')
ilom_ctrl_sparc_host_max_boot_fail = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostMaxBootFail.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostMaxBootFail.setDescription('This is the number of max boot failures allowed.')
ilom_ctrl_sparc_host_boot_fail_recovery = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 13), ilom_ctrl_sparc_host_boot_fail_recovery()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostBootFailRecovery.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostBootFailRecovery.setDescription('This determines what action the SP should take when the max boot failures are reached.')
ilom_ctrl_sparc_host_hypervisor_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 14), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostHypervisorVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostHypervisorVersion.setDescription('Displays the version string for Hypervisor.')
ilom_ctrl_sparc_host_sys_fw_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 15), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostSysFwVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostSysFwVersion.setDescription('Displays the version string for SysFw.')
ilom_ctrl_sparc_host_send_break_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 16), ilom_ctrl_sparc_host_send_break_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostSendBreakAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostSendBreakAction.setDescription('Send Break Action to Host')
ilom_ctrl_sparc_host_io_reconfigure_policy = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 17), ilom_ctrl_sparc_host_io_reconfigure_policy()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostIoReconfigurePolicy.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostIoReconfigurePolicy.setDescription('This determines the host IO reconfiguration policy to apply on next host power-on.')
ilom_ctrl_sparc_host_gm_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 2, 18), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostGMVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCHostGMVersion.setDescription('Displays the version string for Guest Manager.')
ilom_ctrl_sparc_boot_mode_state = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 1), ilom_ctrl_sparc_boot_mode_state()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeState.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeState.setDescription("Configures the boot mode state for the host. Specifying 'normal' means that the host retains current NVRAM variable settings. Specifying 'resetNvram' means that all NVRAM settings will be reset to their default values.")
ilom_ctrl_sparc_boot_mode_script = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeScript.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeScript.setDescription('Specifies the script to run when host boots.')
ilom_ctrl_sparc_boot_mode_expires = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 3), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeExpires.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeExpires.setDescription('Displays the date and time for when the boot mode configuration should expire.')
ilom_ctrl_sparc_boot_mode_ldom_config = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 3, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeLDOMConfig.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCBootModeLDOMConfig.setDescription("This string refers to the config name value that must either be 'default' or match a named LDOM configuration downloaded to the service processor using the LDOM Manager.")
ilom_ctrl_sparc_key_switch_state = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 15, 4, 1), ilom_ctrl_sparc_key_switch_state()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSPARCKeySwitchState.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSPARCKeySwitchState.setDescription('Specifies the current state of the virtual key switch.')
ilom_ctrl_system_identifier = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 16, 1), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSystemIdentifier.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSystemIdentifier.setDescription('This string, which is often the host name of the server associated with ILOM, will be sent out in the varbind for all traps that ILOM generates.')
ilom_ctrl_host_name = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 16, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlHostName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlHostName.setDescription('This string is the hostname for ILOM.')
ilom_ctrl_active_directory_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryEnabled.setDescription('Specifies whether or not the Active Directory client is enabled.')
ilom_ctrl_active_directory_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryIP.setDescription('The IP address of the Active Directory server used as a name service for user accounts.')
ilom_ctrl_active_directory_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryPortNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryPortNumber.setDescription('Specifies the port number for the Active Directory client. Specifying 0 as the port means auto-select while specifying 1-65535 configures the actual port.')
ilom_ctrl_active_directory_default_role = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 4), ilom_ctrl_user_role()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryDefaultRole.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryDefaultRole.setDescription("Specifies the role that a user authenticated via Active Directory should have. Setting this property to 'Administrator' or 'Operator' will cause the Active Directory client to ignore the schema stored on the AD server. Setting this to 'none' clears the value and indicates that the native Active Directory schema should be used. ***NOTE: this object is deprecated and replaced with ilomCtrlActiveDirectoryDefaultRoles.")
ilom_ctrl_active_directory_cert_file_uri = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 5), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertFileURI.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertFileURI.setDescription('This is the URI of a certificate file needed when Strict Cert Mode is enabled. Setting the URI causes the tranfer of the file, making the certificate available immediately for certificate authentication.')
ilom_ctrl_active_directory_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryTimeout.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryTimeout.setDescription('Specifies the number of seconds to wait before timing out if the Active Directory Server is not responding.')
ilom_ctrl_active_directory_strict_cert_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 7), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryStrictCertEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryStrictCertEnabled.setDescription('Specifies whether or not the Strict Cert Mode is enabled for the Active Directory Client. If enabled, the Active Directory certificate must be uploaded to the SP so that certificate validation can be performed when communicating with the Active Directory server.')
ilom_ctrl_active_directory_cert_file_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertFileStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertFileStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilom_ctrl_active_dir_user_domain_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9))
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomainTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomainTable.setDescription('This table is used to configure domain information required for configuring the Active Directory client.')
ilom_ctrl_active_dir_user_domain_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirUserDomainId'))
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomainEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomainEntry.setDescription('An entry for an Active Directory user domain.')
ilom_ctrl_active_dir_user_domain_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomainId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomainId.setDescription('An integer identifier of the Active Directory domain.')
ilom_ctrl_active_dir_user_domain = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 9, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomain.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirUserDomain.setDescription("This string should match exactly with an authentication domain on the Active Directory server. This string should contain a substitution string '<USERNAME>' which will be replaced with the user's login name during authentication. Either the principle or distinguished name format is allowed.")
ilom_ctrl_active_dir_admin_groups_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10))
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupsTable.setDescription('This table is used to configure admin group information required for configuring the Active Directory client.')
ilom_ctrl_active_dir_admin_groups_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAdminGroupId'))
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupsEntry.setDescription('An entry for an Active Directory admin group.')
ilom_ctrl_active_dir_admin_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupId.setDescription('An integer identifier of the Active Directory admin group entry.')
ilom_ctrl_active_dir_admin_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 10, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAdminGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the ActiveDirectory server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Administrator.')
ilom_ctrl_active_dir_operator_groups_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11))
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupsTable.setDescription('This table is used to configure operator group information required for configuring the Active Directory client.')
ilom_ctrl_active_dir_operator_groups_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirOperatorGroupId'))
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupsEntry.setDescription('An entry for an Active Directory operator group.')
ilom_ctrl_active_dir_operator_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupId.setDescription('An integer identifier of the Active Directory operator group entry.')
ilom_ctrl_active_dir_operator_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 11, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirOperatorGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the ActiveDirectory server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Operator.')
ilom_ctrl_active_dir_alternate_server_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12))
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerTable.setDescription('This table is used to view and configure alternate server information for the Active Directory client.')
ilom_ctrl_active_dir_alternate_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerId'))
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerEntry.setDescription('An entry for an Active Directory alternate server.')
ilom_ctrl_active_dir_alternate_server_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerId.setDescription('An integer identifier of the Active Directory alternate server table.')
ilom_ctrl_active_dir_alternate_server_ip = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerIp.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerIp.setDescription('The IP address of the Active Directory alternate server used as a name service for user accounts.')
ilom_ctrl_active_dir_alternate_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerPort.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerPort.setDescription('Specifies the port number for the Active Directory alternate server. Specifying 0 as the port indicates that auto-select will use the well known port number. Specifying 1-65535 is used to explicitly set the port number.')
ilom_ctrl_active_dir_alternate_server_cert_status = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilom_ctrl_active_dir_alternate_server_cert_uri = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 5), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertURI.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertURI.setDescription("This is the URI of a certificate file needed when Strict Cert Mode is enabled. Setting the URI causes the tranfer of the file, making the certificate available immediately for certificate authentication. Additionally, either 'remove' or 'restore' are supported for direct certificate manipulation.")
ilom_ctrl_active_dir_alternate_server_cert_clear = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 6), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertClear.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilom_ctrl_active_dir_alternate_server_cert_version = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertVersion.setDescription('A string indicating the certificate version of the alternate server certificate file.')
ilom_ctrl_active_dir_alternate_server_cert_serial_no = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertSerialNo.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertSerialNo.setDescription('A string showing the serial number of the alternate server certificate file.')
ilom_ctrl_active_dir_alternate_server_cert_issuer = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertIssuer.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertIssuer.setDescription('A string showing the issuer of the alternate server certificate file.')
ilom_ctrl_active_dir_alternate_server_cert_subject = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 10), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertSubject.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertSubject.setDescription('A string showing the subject of the alternate server certificate file.')
ilom_ctrl_active_dir_alternate_server_cert_valid_begin = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 11), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertValidBegin.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertValidBegin.setDescription('A string showing the valid start date of the alternate server certificate file.')
ilom_ctrl_active_dir_alternate_server_cert_valid_end = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 12, 1, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertValidEnd.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirAlternateServerCertValidEnd.setDescription('A string showing the valid end date of the alternate server certificate file.')
ilom_ctrl_active_directory_log_detail = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('none', 1), ('high', 2), ('medium', 3), ('low', 4), ('trace', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryLogDetail.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryLogDetail.setDescription("Controls the amount of messages sent to the event log. The high priority has the least number of messages going to the log, while the lowest priority 'trace' has the most messages logged. When this object is set to 'none', no messages are logged.")
ilom_ctrl_active_directory_default_roles = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 14), ilom_ctrl_user_roles()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryDefaultRoles.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryDefaultRoles.setDescription("Specifies the role that a user authenticated via Active Directory should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the Active Directory client to ignore the schema stored on the AD server. Setting this to 'none' clears the value and indicates that the native Active Directory schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilom_ctrl_active_dir_custom_groups_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15))
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupsTable.setDescription('This table is used to configure custom group information required for configuring the Active Directory client.')
ilom_ctrl_active_dir_custom_groups_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirCustomGroupId'))
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupsEntry.setDescription('An entry for an Active Directory custom group.')
ilom_ctrl_active_dir_custom_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupId.setDescription('An integer identifier of the Active Directory custom group entry.')
ilom_ctrl_active_dir_custom_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupName.setDescription("This string should contain a distinguished name that exactly matches one of the group names on the ActiveDirectory server. Any user belonging to one of these groups in this table will be assigned the ILOM role based on the entry's configuration for roles.")
ilom_ctrl_active_dir_custom_group_roles = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 15, 1, 3), ilom_ctrl_user_roles()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupRoles.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirCustomGroupRoles.setDescription("Specifies the role that a user authenticated via Active Directory should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the Active Directory client to ignore the schema stored on the AD server. Setting this to 'none' clears the value and indicates that the native Active Directory schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilom_ctrl_active_directory_cert_clear = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 16), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertClear.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilom_ctrl_active_directory_cert_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 17), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertVersion.setDescription('A string indicating the certificate version of the certificate file.')
ilom_ctrl_active_directory_cert_serial_no = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 18), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertSerialNo.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertSerialNo.setDescription('A string showing the serial number of the certificate file.')
ilom_ctrl_active_directory_cert_issuer = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 19), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertIssuer.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertIssuer.setDescription('A string showing the issuer of the certificate file.')
ilom_ctrl_active_directory_cert_subject = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 20), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertSubject.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertSubject.setDescription('A string showing the subject of the certificate file.')
ilom_ctrl_active_directory_cert_valid_begin = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 21), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertValidBegin.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertValidBegin.setDescription('A string showing the valid start date of the certificate file.')
ilom_ctrl_active_directory_cert_valid_end = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 22), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertValidEnd.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirectoryCertValidEnd.setDescription('A string showing the valid end date of the certificate file.')
ilom_ctrl_active_dir_dns_locator_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 23), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorEnabled.setDescription('Specifies whether or not the Active Directory DNS Locator functionality is enabled.')
ilom_ctrl_active_dir_dns_locator_query_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24))
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryTable.setDescription('This table is used to configure DNS Locator search queries used to locate the Active Directory server.')
ilom_ctrl_active_dir_dns_locator_query_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirDnsLocatorQueryId'))
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryEntry.setDescription('An entry for an Active Directory DNS Locator search query.')
ilom_ctrl_active_dir_dns_locator_query_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryId.setDescription('An integer identifier of the Active Directory DNS Locator Query entry.')
ilom_ctrl_active_dir_dns_locator_query_service = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 24, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryService.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirDnsLocatorQueryService.setDescription("This string should contain the service name that will be used to perform the DNS query. The name may contain '<DOMAIN>' as a substitution marker, being replaced by the domain information associated for the user at the time of authentication. Also, the optional '<PORT: >' (ie <PORT:636> for standard LDAP/SSL port 636) can be used to override any learned port information if necessary.")
ilom_ctrl_active_dir_exp_search_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 25), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirExpSearchEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirExpSearchEnabled.setDescription('Specifies whether or not the Active Directory expanded search query functionality is enabled.')
ilom_ctrl_active_dir_strict_credential_error_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 5, 26), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlActiveDirStrictCredentialErrorEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlActiveDirStrictCredentialErrorEnabled.setDescription('Specifies whether or not user credential errors for Active Directory cause the user credentials to be completely errored out, or if the credential validation is attempted using any alternate server. When the parameter is true, the first user credential violation takes effect, but when the mode is false, the same user credentionals can be presented to other servers for authentication.')
ilom_ctrl_smtp_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSMTPEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSMTPEnabled.setDescription('Specifies whether or not the SMTP client is enabled.')
ilom_ctrl_smtp_server_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSMTPServerIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSMTPServerIP.setDescription('The IP address of the SMTP server used as a name service for user accounts.')
ilom_ctrl_smtp_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSMTPPortNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSMTPPortNumber.setDescription('Specifies the port number for the SMTP client.')
ilom_ctrl_smtp_custom_sender = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 6, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlSMTPCustomSender.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlSMTPCustomSender.setDescription("An optional format to identify the sender or the 'from' address. Customizing this string allows the user to specify the exact contents (up to 80 chars) of the 'from' field in the email message. Either one of the substitution strings '<IPADDRESS>' or '<HOSTNAME>' can be used as needed. e.g., ilom-sp@sp1302.dev.sun.com, sun-ilom@[<IPADDRESS>], or ilom-alert@<HOSTNAME>.abc.com. By default, this parameter is an empty string. The 'from' field is formatted by either: 1) alert-rule custom-sender, 2) smtp custom-sender, or 3) the standard ILOM originator.")
ilom_ctrl_thd_state = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 1), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlThdState.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdState.setDescription('The state of the THD daemon.')
ilom_ctrl_thd_action = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 2), ilom_ctrl_thd_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlThdAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdAction.setDescription('Control action for THD daemon, either suspend or resume.')
ilom_ctrl_thd_modules_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3))
if mibBuilder.loadTexts:
ilomCtrlThdModulesTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdModulesTable.setDescription('A table listing the currently loaded THD modules.')
ilom_ctrl_thd_modules_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdModuleName'))
if mibBuilder.loadTexts:
ilomCtrlThdModulesEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdModulesEntry.setDescription('An entry for a currently loaded THD module.')
ilom_ctrl_thd_module_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 1), ilom_ctrl_target_index())
if mibBuilder.loadTexts:
ilomCtrlThdModuleName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdModuleName.setDescription('The name of the THD module.')
ilom_ctrl_thd_module_desc = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 2), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlThdModuleDesc.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdModuleDesc.setDescription('The description of the THD module.')
ilom_ctrl_thd_module_state = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlThdModuleState.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdModuleState.setDescription('The state of the THD module.')
ilom_ctrl_thd_module_action = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 3, 1, 4), ilom_ctrl_thd_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlThdModuleAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdModuleAction.setDescription('The control action for the THD module.')
ilom_ctrl_thd_instance_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4))
if mibBuilder.loadTexts:
ilomCtrlThdInstanceTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdInstanceTable.setDescription('A table listing instances of currently loaded THD modules.')
ilom_ctrl_thd_instance_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdModName'), (0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdInstanceName'))
if mibBuilder.loadTexts:
ilomCtrlThdInstanceEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdInstanceEntry.setDescription('An entry for a currently loaded THD module.')
ilom_ctrl_thd_mod_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 1), ilom_ctrl_mod_target_index())
if mibBuilder.loadTexts:
ilomCtrlThdModName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdModName.setDescription('The name of the THD class of the instance.')
ilom_ctrl_thd_instance_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 2), ilom_ctrl_instance_target_index())
if mibBuilder.loadTexts:
ilomCtrlThdInstanceName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdInstanceName.setDescription('The name of the instance.')
ilom_ctrl_thd_instance_state = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 3), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlThdInstanceState.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdInstanceState.setDescription('The state of the instance.')
ilom_ctrl_thd_instance_action = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 17, 4, 1, 4), ilom_ctrl_thd_action()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlThdInstanceAction.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlThdInstanceAction.setDescription('The control action for instance.')
ilom_ctrl_ldap_ssl_global_obj = mib_identifier((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1))
ilom_ctrl_ldap_ssl_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslEnabled.setDescription('Specifies whether or not the LDAP/SSL client is enabled.')
ilom_ctrl_ldap_ssl_ip = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslIP.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslIP.setDescription('The IP address of the LDAP/SSL server used as a directory service for user accounts.')
ilom_ctrl_ldap_ssl_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslPortNumber.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslPortNumber.setDescription('Specifies the port number for the LDAP/SSL client. Specifying 0 as the port means auto-select while specifying 1-65535 configures the actual port value.')
ilom_ctrl_ldap_ssl_default_role = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 4), ilom_ctrl_user_role()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslDefaultRole.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslDefaultRole.setDescription("Specifies the role that a user authenticated via LDAP/SSL should have. Setting this property to 'Administrator' or 'Operator' will cause the LDAP/SSL client to ignore the schema stored on the server. The user will be granted the corresponding access level. Setting this to an empty string, or 'none' clears the value and indicates that the native LDAP/SSL schema should be used.")
ilom_ctrl_ldap_ssl_cert_file_uri = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 5), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileURI.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileURI.setDescription("The tftp URI of the LDAP/SSL server's certificate file that should be uploaded in order to perform certificate validation. Setting the URI causes the tranfer of the specified file, making the certificate available immediately for certificate authentication. The server certificate file is needed when Strict Cert Mode is enabled. Additionally, either 'remove' or 'restore' are supported for direct certificate manipulation.")
ilom_ctrl_ldap_ssl_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslTimeout.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslTimeout.setDescription('Specifies the number of seconds to wait before timing out if the LDAP/SSL Server is not responding.')
ilom_ctrl_ldap_ssl_strict_cert_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 7), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslStrictCertEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslStrictCertEnabled.setDescription("Specifies whether or not the Strict Cert Mode is enabled for the LDAP/SSL Client. If enabled, the LDAP/SSL server's certificate must be uploaded to the SP so that certificate validation can be performed when communicating with the LDAP/SSL server.")
ilom_ctrl_ldap_ssl_cert_file_status = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilom_ctrl_ldap_ssl_log_detail = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('none', 1), ('high', 2), ('medium', 3), ('low', 4), ('trace', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslLogDetail.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslLogDetail.setDescription("Controls the amount of messages sent to the event log. The high priority has the least number of messages going to the log, while the lowest priority 'trace' has the most messages logged. When this object is set to 'none', no messages are logged.")
ilom_ctrl_ldap_ssl_default_roles = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 10), ilom_ctrl_user_roles()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslDefaultRoles.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslDefaultRoles.setDescription("Specifies the role that a user authenticated via LDAP/SSL should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the LDAP/SSL client to ignore the schema stored on the LDAP server. Setting this to 'none' clears the value and indicates that the native LDAP/SSL schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilom_ctrl_ldap_ssl_cert_file_clear = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 11), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileClear.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilom_ctrl_ldap_ssl_cert_file_version = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileVersion.setDescription('A string indicating the certificate version of the certificate file.')
ilom_ctrl_ldap_ssl_cert_file_serial_no = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileSerialNo.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileSerialNo.setDescription('A string showing the serial number of the certificate file.')
ilom_ctrl_ldap_ssl_cert_file_issuer = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 14), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileIssuer.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileIssuer.setDescription('A string showing the issuer of the certificate file.')
ilom_ctrl_ldap_ssl_cert_file_subject = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 15), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileSubject.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileSubject.setDescription('A string showing the subject of the certificate file.')
ilom_ctrl_ldap_ssl_cert_file_valid_begin = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 16), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileValidBegin.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileValidBegin.setDescription('A string showing the valid start date of the certificate file.')
ilom_ctrl_ldap_ssl_cert_file_valid_end = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 17), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileValidEnd.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCertFileValidEnd.setDescription('A string showing the valid end date of the certificate file.')
ilom_ctrl_ldap_ssl_opt_usr_mapping_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 18), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingEnabled.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingEnabled.setDescription("Specifies whether or not the optional UserMapping feature is enabled. When this feature is enabled, a typical Manager style ldap bind is done first using the specified credentials for the bindDn and bindPw. Then, the user's login name is used as part of the search/filter criteria defined in the attribute-info to obtain the user's official Distinguished Name.")
ilom_ctrl_ldap_ssl_opt_usr_mapping_attr_info = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 19), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingAttrInfo.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingAttrInfo.setDescription("The attribute information used to lookup the user login name to the user's Distinguished Name (DN). Typically, it looks very much like a standard LDAP query or filter. The <USERNAME> prefix will be replaced with the login name as part of the query eg: (&(objectclass=person)(uid=<USERNAME>)).")
ilom_ctrl_ldap_ssl_opt_usr_mapping_bind_dn = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 20), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingBindDn.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingBindDn.setDescription('The Distinguished Name used for the manager style ldap bind so that user lookups can be done.')
ilom_ctrl_ldap_ssl_opt_usr_mapping_bind_pw = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 21), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingBindPw.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingBindPw.setDescription('The password string used for the manager style ldap bind.')
ilom_ctrl_ldap_ssl_opt_usr_mapping_search_base = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 1, 22), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingSearchBase.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOptUsrMappingSearchBase.setDescription('The search based used to attempt the user name look up as defined in the attribute information above.')
ilom_ctrl_ldap_ssl_user_domain_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2))
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomainTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomainTable.setDescription('This table is used to configure domain information required for configuring the LDAP/SSL client.')
ilom_ctrl_ldap_ssl_user_domain_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslUserDomainId'))
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomainEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomainEntry.setDescription('An entry for an LDAP/SSL user domain.')
ilom_ctrl_ldap_ssl_user_domain_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomainId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomainId.setDescription('An integer identifier of the LDAP/SSL domain.')
ilom_ctrl_ldap_ssl_user_domain = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 2, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomain.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslUserDomain.setDescription("This string should match exactly with an authentication domain on the LDAP/SSL server. This string should contain a substitution string '<USERNAME>' which will be replaced with the user's login name during authentication. Either the principle or distinguished name format is allowed.")
ilom_ctrl_ldap_ssl_admin_groups_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3))
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupsTable.setDescription('This table is used to configure Admin Group information required for configuring the LDAP/SSL client.')
ilom_ctrl_ldap_ssl_admin_groups_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAdminGroupId'))
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupsEntry.setDescription('An entry for an LDAP/SSL Admin Group.')
ilom_ctrl_ldap_ssl_admin_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupId.setDescription('An integer identifier of the LDAP/SSL AdminGroup entry.')
ilom_ctrl_ldap_ssl_admin_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 3, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAdminGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the LDAP/SSL server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Administrator.')
ilom_ctrl_ldap_ssl_operator_groups_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4))
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupsTable.setDescription('This table is used to configure Operator Group information required for configuring the LDAP/SSL client.')
ilom_ctrl_ldap_ssl_operator_groups_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslOperatorGroupId'))
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupsEntry.setDescription('An entry for an LDAP/SSL Operator Group.')
ilom_ctrl_ldap_ssl_operator_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupId.setDescription('An integer identifier of the LDAP/SSL Operator Group entry.')
ilom_ctrl_ldap_ssl_operator_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 4, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslOperatorGroupName.setDescription('This string should contain a distinguished name that exactly matches one of the group names on the LDAP/SSL server. Any user belonging to one of these groups in this table will be assigned the ILOM role of Operator.')
ilom_ctrl_ldap_ssl_alternate_server_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5))
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerTable.setDescription('This table is used to view and configure alternate server information for the LDAP/SSL client.')
ilom_ctrl_ldap_ssl_alternate_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerId'))
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerEntry.setDescription('An entry for an LDAP/SSL alternate server table.')
ilom_ctrl_ldap_ssl_alternate_server_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerId.setDescription('An integer identifier of the LDAP/SSL alternate server table.')
ilom_ctrl_ldap_ssl_alternate_server_ip = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerIp.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerIp.setDescription('The IP address of the LDAP/SSL alternate server used as directory server for user accounts.')
ilom_ctrl_ldap_ssl_alternate_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerPort.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerPort.setDescription('Specifies the port number for the LDAP/SSL alternate server. Specifying 0 as the port indicates that auto-select will use the well known port number. Specifying 1-65535 is used to explicitly set the port number.')
ilom_ctrl_ldap_ssl_alternate_server_cert_status = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertStatus.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertStatus.setDescription('A string indicating the status of the certificate file. This is useful in determining whether a certificate file is present or not.')
ilom_ctrl_ldap_ssl_alternate_server_cert_uri = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 5), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertURI.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertURI.setDescription("This is the URI of a certificate file needed when Strict Cert Mode is enabled. Setting the URI causes the tranfer of the file, making the certificate available immediately for certificate authentication. Additionally, either 'remove' or 'restore' are supported for direct certificate manipulation.")
ilom_ctrl_ldap_ssl_alternate_server_cert_clear = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 6), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertClear.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertClear.setDescription('A variable that will clear the certificate info associated with the server when it is set to true.')
ilom_ctrl_ldap_ssl_alternate_server_cert_version = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertVersion.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertVersion.setDescription('A string indicating the certificate version of the alternate server certificate file.')
ilom_ctrl_ldap_ssl_alternate_server_cert_serial_no = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertSerialNo.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertSerialNo.setDescription('A string showing the serial number of the alternate server certificate file.')
ilom_ctrl_ldap_ssl_alternate_server_cert_issuer = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertIssuer.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertIssuer.setDescription('A string showing the issuer of the alternate server certificate file.')
ilom_ctrl_ldap_ssl_alternate_server_cert_subject = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 10), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertSubject.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertSubject.setDescription('A string showing the subject of the alternate server certificate file.')
ilom_ctrl_ldap_ssl_alternate_server_cert_valid_begin = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 11), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertValidBegin.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertValidBegin.setDescription('A string showing the valid start date of the alternate server certificate file.')
ilom_ctrl_ldap_ssl_alternate_server_cert_valid_end = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 5, 1, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertValidEnd.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslAlternateServerCertValidEnd.setDescription('A string showing the valid end date of the alternate server certificate file.')
ilom_ctrl_ldap_ssl_custom_groups_table = mib_table((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6))
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupsTable.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupsTable.setDescription('This table is used to configure custom group information required for configuring the LDAP/SSL client.')
ilom_ctrl_ldap_ssl_custom_groups_entry = mib_table_row((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1)).setIndexNames((0, 'SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCustomGroupId'))
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupsEntry.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupsEntry.setDescription('An entry for an LDAP/SSLcustom group.')
ilom_ctrl_ldap_ssl_custom_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)))
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupId.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupId.setDescription('An integer identifier of the LDAP/SSL custom group entry.')
ilom_ctrl_ldap_ssl_custom_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupName.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupName.setDescription("This string should contain a distinguished name that exactly matches one of the group names on the LDAP/SSL server. Any user belonging to one of these groups in this table will be assigned the ILOM role based on the entry's configuration for roles.")
ilom_ctrl_ldap_ssl_custom_group_roles = mib_table_column((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 7, 6, 1, 3), ilom_ctrl_user_roles()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupRoles.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlLdapSslCustomGroupRoles.setDescription("Specifies the role that a user authenticated via LDAP/SSL should have. Setting this property to legacy roles of 'Administrator' or 'Operator', or any of the individual role IDs of 'a', 'u', 'c', 'r', 'o' and 's' will cause the LDAP/SSL client to ignore the schema stored on the LDAP/SSL server. Setting this to 'none' clears the value and indicates that the native LDAP/SSL schema should be used. The role IDs can be joined together 'aucros' where a-admin, u-user, c-console, r-reset, s-service and o-readOnly.")
ilom_ctrl_dns_name_servers = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 1), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDNSNameServers.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDNSNameServers.setDescription('Specifies the nameserver for DNS.')
ilom_ctrl_dns_search_path = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 2), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDNSSearchPath.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDNSSearchPath.setDescription('Specifies the searchpath for DNS.')
ilom_ctrl_dn_sdhcp_auto_dns = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 3), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDNSdhcpAutoDns.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDNSdhcpAutoDns.setDescription('Specifies whether or not DHCP autodns is enabled.')
ilom_ctrl_dns_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(5)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDNSTimeout.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDNSTimeout.setDescription('Specifies the number of seconds to wait before timing out if the server does not respond.')
ilom_ctrl_dns_retries = mib_scalar((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 1, 8, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 4)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ilomCtrlDNSRetries.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlDNSRetries.setDescription('Specifies the number of times a request is attempted again, after a timeout.')
ilom_ctrl_objects_group = object_group((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 2, 2)).setObjects(('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDeviceNTPServerOneIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDeviceNTPServerTwoIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapServerIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapPortNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapBindDn'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapBindPassword'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSearchBase'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapDefaultRoles'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRadiusEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRadiusServerIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRadiusPortNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRadiusSecret'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRadiusDefaultRoles'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRemoteSyslogDest1'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRemoteSyslogDest2'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryPortNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertFileURI'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryTimeout'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryStrictCertEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertFileStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirUserDomain'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAdminGroupName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirOperatorGroupName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirCustomGroupName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirCustomGroupRoles'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerIp'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerPort'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertURI'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertClear'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertSerialNo'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertIssuer'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertSubject'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertValidBegin'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirAlternateServerCertValidEnd'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryLogDetail'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryDefaultRoles'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertClear'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertSerialNo'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertIssuer'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertSubject'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertValidBegin'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryCertValidEnd'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirDnsLocatorEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirDnsLocatorQueryService'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirExpSearchEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirStrictCredentialErrorEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSMTPEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSMTPServerIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSMTPPortNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSMTPCustomSender'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslPortNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslDefaultRole'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileURI'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslTimeout'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslStrictCertEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslLogDetail'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslDefaultRoles'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileClear'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileSerialNo'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileIssuer'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileSubject'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileValidBegin'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCertFileValidEnd'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslOptUsrMappingEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslOptUsrMappingAttrInfo'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslOptUsrMappingBindDn'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslOptUsrMappingBindPw'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslOptUsrMappingSearchBase'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslUserDomain'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAdminGroupName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslOperatorGroupName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCustomGroupName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslCustomGroupRoles'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerIp'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerPort'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertURI'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertClear'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertSerialNo'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertIssuer'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertSubject'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertValidBegin'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapSslAlternateServerCertValidEnd'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlHttpEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlHttpPortNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlHttpSecureRedirect'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlHttpsEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlHttpsPortNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshRsaKeyFingerprint'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshRsaKeyLength'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshDsaKeyFingerprint'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshDsaKeyLength'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshGenerateNewKeyAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshGenerateNewKeyType'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshRestartSshdAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSshEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSingleSignonEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkMacAddress'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkIpDiscovery'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkIpAddress'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkIpGateway'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkIpNetmask'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkPendingIpDiscovery'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkPendingIpAddress'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkPendingIpGateway'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkPendingIpNetmask'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkCommitPending'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkDHCPServerAddr'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkPendingManagementPort'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkManagementPort'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkOutOfBandMacAddress'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkSidebandMacAddress'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNetworkState'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserPassword'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserRoles'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserRowStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserCLIMode'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSessionsUsername'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSessionsConnectionType'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSessionsLoginTime'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareMgmtVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareBuildNumber'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareBuildDate'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareTFTPServerIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareTFTPFileName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwarePreserveConfig'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareMgmtStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareMgmtAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareMgmtFilesystemVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlFirmwareDelayBIOS'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlEventLogType'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlEventLogTimestamp'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlEventLogClass'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlEventLogSeverity'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlEventLogDescription'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlEventLogClear'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertSeverity'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertType'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertDestinationIP'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertDestinationPort'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertDestinationEmail'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertSNMPVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertSNMPCommunityOrUsername'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertEmailEventClassFilter'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertEmailEventTypeFilter'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertEmailCustomSender'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlAlertEmailMessagePrefix'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDateAndTime'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlNTPEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlTimezone'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSerialInternalPortPresent'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSerialInternalPortBaudRate'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSerialExternalPortPresent'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSerialExternalPortBaudRate'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSerialExternalPortFlowControl'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlPowerAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlResetAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRedundancyStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRedundancyAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRedundancyFRUName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlPolicyShortStr'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlPolicyLongStr'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlPolicyEnabled'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlResetToDefaultsAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsTrigger'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsMode'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsPowerOnLevel'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsUserResetLevel'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsErrorResetLevel'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsPowerOnVerbosity'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsUserResetVerbosity'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsErrorResetVerbosity'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsHwChangeLevel'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsHwChangeVerbosity'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostMACAddress'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostOBPVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostPOSTVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostAutoRunOnError'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostPOSTStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostAutoRestartPolicy'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostIoReconfigurePolicy'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostOSBootStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostBootTimeout'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostBootRestart'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostMaxBootFail'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostBootFailRecovery'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostHypervisorVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostSysFwVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostGMVersion'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCHostSendBreakAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCBootModeState'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCBootModeScript'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCBootModeExpires'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCBootModeLDOMConfig'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCKeySwitchState'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSystemIdentifier'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlHostName'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdState'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdModuleDesc'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdModuleState'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdModuleAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdInstanceState'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlThdInstanceAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlBackupAndRestoreTargetURI'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlBackupAndRestorePassphrase'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlBackupAndRestoreAction'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlBackupAndRestoreActionStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDNSNameServers'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDNSSearchPath'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDNSdhcpAutoDns'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDNSTimeout'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlDNSRetries'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ilom_ctrl_objects_group = ilomCtrlObjectsGroup.setStatus('current')
if mibBuilder.loadTexts:
ilomCtrlObjectsGroup.setDescription('The group of current objects.')
ilom_ctrl_deprecated_objects_group = object_group((1, 3, 6, 1, 4, 1, 42, 2, 175, 102, 18, 2, 1)).setObjects(('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLdapDefaultRole'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlRadiusDefaultRole'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserAuthPassword'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserAuthRole'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserAuthRowStatus'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlLocalUserAuthCLIMode'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsLevel'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlSPARCDiagsVerbosity'), ('SUN-ILOM-CONTROL-MIB', 'ilomCtrlActiveDirectoryDefaultRole'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ilom_ctrl_deprecated_objects_group = ilomCtrlDeprecatedObjectsGroup.setStatus('deprecated')
if mibBuilder.loadTexts:
ilomCtrlDeprecatedObjectsGroup.setDescription('The objects that have been deprecated.')
mibBuilder.exportSymbols('SUN-ILOM-CONTROL-MIB', ilomCtrlNetworkOutOfBandMacAddress=ilomCtrlNetworkOutOfBandMacAddress, ilomCtrlActiveDirUserDomainEntry=ilomCtrlActiveDirUserDomainEntry, ilomCtrlAlertDestinationEmail=ilomCtrlAlertDestinationEmail, ilomCtrlLdapSslCustomGroupRoles=ilomCtrlLdapSslCustomGroupRoles, ilomCtrlAlertDestinationIP=ilomCtrlAlertDestinationIP, ilomCtrlActiveDirOperatorGroupsTable=ilomCtrlActiveDirOperatorGroupsTable, ilomCtrlRemoteSyslog=ilomCtrlRemoteSyslog, ilomCtrlActiveDirAlternateServerCertSerialNo=ilomCtrlActiveDirAlternateServerCertSerialNo, ilomCtrlSingleSignonEnabled=ilomCtrlSingleSignonEnabled, sun=sun, ilomCtrlActiveDirectoryCertValidEnd=ilomCtrlActiveDirectoryCertValidEnd, ilomCtrlSPARCHostAutoRunOnError=ilomCtrlSPARCHostAutoRunOnError, ilomCtrlActiveDirectoryCertSubject=ilomCtrlActiveDirectoryCertSubject, ilomCtrlActiveDirectoryDefaultRoles=ilomCtrlActiveDirectoryDefaultRoles, ilomCtrlNetworkPendingIpAddress=ilomCtrlNetworkPendingIpAddress, ilomCtrlActiveDirAlternateServerPort=ilomCtrlActiveDirAlternateServerPort, ilomCtrlSerialExternalPortPresent=ilomCtrlSerialExternalPortPresent, ilomCtrlActiveDirAdminGroupName=ilomCtrlActiveDirAdminGroupName, ilomCtrlActiveDirectoryCertVersion=ilomCtrlActiveDirectoryCertVersion, ilomCtrlThdModuleState=ilomCtrlThdModuleState, ilomCtrlSPARC=ilomCtrlSPARC, ilomCtrlActiveDirectoryCertClear=ilomCtrlActiveDirectoryCertClear, ilomCtrlThdState=ilomCtrlThdState, ilomCtrlActiveDirOperatorGroupName=ilomCtrlActiveDirOperatorGroupName, ilomCtrlAlertSNMPVersion=ilomCtrlAlertSNMPVersion, ilomCtrlSPARCDiagsStatus=ilomCtrlSPARCDiagsStatus, ILOMCtrlSPARCBootModeState=ILOMCtrlSPARCBootModeState, ilomCtrlSPARCBootModeExpires=ilomCtrlSPARCBootModeExpires, ilomCtrlLocalUserRowStatus=ilomCtrlLocalUserRowStatus, ilomCtrlAlertSeverity=ilomCtrlAlertSeverity, ILOMCtrlLocalUserAuthCLIMode=ILOMCtrlLocalUserAuthCLIMode, ilomCtrlPolicyShortStr=ilomCtrlPolicyShortStr, ilomCtrlConfigMgmt=ilomCtrlConfigMgmt, ilomCtrlRadiusPortNumber=ilomCtrlRadiusPortNumber, ilomCtrlSerialExternalPortFlowControl=ilomCtrlSerialExternalPortFlowControl, ilomCtrlFirmwareDelayBIOS=ilomCtrlFirmwareDelayBIOS, ilomCtrlLdapSslAlternateServerCertURI=ilomCtrlLdapSslAlternateServerCertURI, ilomCtrlSPARCDiagsPowerOnVerbosity=ilomCtrlSPARCDiagsPowerOnVerbosity, ilomCtrlSessionsLoginTime=ilomCtrlSessionsLoginTime, ilomCtrlDNS=ilomCtrlDNS, ilomCtrlLdapSslTimeout=ilomCtrlLdapSslTimeout, ilomCtrlCompliances=ilomCtrlCompliances, ilomCtrlLdapSslAlternateServerCertValidEnd=ilomCtrlLdapSslAlternateServerCertValidEnd, ilomCtrlDNSSearchPath=ilomCtrlDNSSearchPath, ILOMCtrlFirmwareUpdateAction=ILOMCtrlFirmwareUpdateAction, ilomCtrlActiveDirectoryStrictCertEnabled=ilomCtrlActiveDirectoryStrictCertEnabled, ilomCtrlSPARCDiagsErrorResetLevel=ilomCtrlSPARCDiagsErrorResetLevel, ilomCtrlFirmwareMgmtStatus=ilomCtrlFirmwareMgmtStatus, ilomCtrlActiveDirOperatorGroupId=ilomCtrlActiveDirOperatorGroupId, ilomCtrlResetTarget=ilomCtrlResetTarget, ilomCtrlBackupAndRestore=ilomCtrlBackupAndRestore, ILOMCtrlSPARCDiagsAction=ILOMCtrlSPARCDiagsAction, ilomCtrlThdInstanceAction=ilomCtrlThdInstanceAction, ilomCtrlNetworkEntry=ilomCtrlNetworkEntry, ilomCtrlActiveDirAlternateServerTable=ilomCtrlActiveDirAlternateServerTable, ilomCtrlSPARCKeySwitchState=ilomCtrlSPARCKeySwitchState, ilomCtrlSPARCDiagsAction=ilomCtrlSPARCDiagsAction, ilomCtrlSMTPPortNumber=ilomCtrlSMTPPortNumber, ilomCtrlPolicyEntry=ilomCtrlPolicyEntry, ilomCtrlSshRestartSshdAction=ilomCtrlSshRestartSshdAction, ILOMCtrlLocalUserPassword=ILOMCtrlLocalUserPassword, ilomCtrlLdapSslCertFileIssuer=ilomCtrlLdapSslCertFileIssuer, ilomCtrlNetworkTable=ilomCtrlNetworkTable, ilomCtrlLdapDefaultRole=ilomCtrlLdapDefaultRole, ilomCtrlLdapSslCustomGroupsEntry=ilomCtrlLdapSslCustomGroupsEntry, ilomCtrlNetworkIpGateway=ilomCtrlNetworkIpGateway, ilomCtrlSPARCBootModeLDOMConfig=ilomCtrlSPARCBootModeLDOMConfig, ilomCtrlNtp=ilomCtrlNtp, ilomCtrlSPARCKeySwitch=ilomCtrlSPARCKeySwitch, ilomCtrlPowerTarget=ilomCtrlPowerTarget, ilomCtrlNetworkTarget=ilomCtrlNetworkTarget, ILOMCtrlSPARCKeySwitchState=ILOMCtrlSPARCKeySwitchState, ilomCtrlLdapSslLogDetail=ilomCtrlLdapSslLogDetail, ilomCtrlActiveDirCustomGroupId=ilomCtrlActiveDirCustomGroupId, ilomCtrlActiveDirectoryCertIssuer=ilomCtrlActiveDirectoryCertIssuer, ilomCtrlDNSRetries=ilomCtrlDNSRetries, ilomCtrlActiveDirAlternateServerCertURI=ilomCtrlActiveDirAlternateServerCertURI, ilomCtrlSPARCHostSysFwVersion=ilomCtrlSPARCHostSysFwVersion, ilomCtrlLdapSslOperatorGroupId=ilomCtrlLdapSslOperatorGroupId, ILOMCtrlResetToDefaultsAction=ILOMCtrlResetToDefaultsAction, ilomCtrlRedundancyFRUName=ilomCtrlRedundancyFRUName, ilomCtrlLdapSslAdminGroupName=ilomCtrlLdapSslAdminGroupName, ilomCtrlLocalUserRoles=ilomCtrlLocalUserRoles, ilomCtrlLdapPortNumber=ilomCtrlLdapPortNumber, ilomCtrlLdapSearchBase=ilomCtrlLdapSearchBase, ilomCtrlServices=ilomCtrlServices, ilomCtrlNetwork=ilomCtrlNetwork, ilomCtrlHttps=ilomCtrlHttps, ilomCtrlActiveDirectoryCertFileStatus=ilomCtrlActiveDirectoryCertFileStatus, ILOMCtrlPowerAction=ILOMCtrlPowerAction, ilomCtrlRadiusServerIP=ilomCtrlRadiusServerIP, ilomCtrlAlertEmailCustomSender=ilomCtrlAlertEmailCustomSender, ilomCtrlLocalUserAuthEntry=ilomCtrlLocalUserAuthEntry, ilomCtrlLdapSslCertFileValidEnd=ilomCtrlLdapSslCertFileValidEnd, ilomCtrlActiveDirAlternateServerCertVersion=ilomCtrlActiveDirAlternateServerCertVersion, ilomCtrlSPARCDiagsErrorResetVerbosity=ilomCtrlSPARCDiagsErrorResetVerbosity, ILOMCtrlInstanceTargetIndex=ILOMCtrlInstanceTargetIndex, ilomCtrlAlertEmailEventClassFilter=ilomCtrlAlertEmailEventClassFilter, ilomCtrlObjectsGroup=ilomCtrlObjectsGroup, ilomCtrlAlerts=ilomCtrlAlerts, ilomCtrlLdapSslStrictCertEnabled=ilomCtrlLdapSslStrictCertEnabled, ILOMCtrlSshKeyGenType=ILOMCtrlSshKeyGenType, products=products, ilomCtrlSMTPServerIP=ilomCtrlSMTPServerIP, ilomCtrlActiveDirectoryEnabled=ilomCtrlActiveDirectoryEnabled, ilomCtrlThdInstanceName=ilomCtrlThdInstanceName, ilomCtrlRedundancy=ilomCtrlRedundancy, ilomCtrlNTPEnabled=ilomCtrlNTPEnabled, ilomCtrlHttpsPortNumber=ilomCtrlHttpsPortNumber, ilomCtrlFirmwareBuildDate=ilomCtrlFirmwareBuildDate, ilomCtrlLdapSslAlternateServerCertSerialNo=ilomCtrlLdapSslAlternateServerCertSerialNo, ilomCtrlLocalUserAuthCLIMode=ilomCtrlLocalUserAuthCLIMode, ilomCtrlLdapSslUserDomainId=ilomCtrlLdapSslUserDomainId, ilomCtrlSPARCDiagsHwChangeLevel=ilomCtrlSPARCDiagsHwChangeLevel, ilomCtrlSPARCHostAutoRestartPolicy=ilomCtrlSPARCHostAutoRestartPolicy, ilomCtrlSshDsaKeyFingerprint=ilomCtrlSshDsaKeyFingerprint, ilomCtrlPowerAction=ilomCtrlPowerAction, ilomCtrlSerialInternalPortBaudRate=ilomCtrlSerialInternalPortBaudRate, ilomCtrlAlertsEntry=ilomCtrlAlertsEntry, ilomCtrlActiveDirectoryCertFileURI=ilomCtrlActiveDirectoryCertFileURI, ilomCtrlSessionsTable=ilomCtrlSessionsTable, ilomCtrlActiveDirectoryCertSerialNo=ilomCtrlActiveDirectoryCertSerialNo, ilomCtrlLdapSslOperatorGroupName=ilomCtrlLdapSslOperatorGroupName, ilomCtrlResetControl=ilomCtrlResetControl, ilomCtrlRadiusEnabled=ilomCtrlRadiusEnabled, ilomCtrlLdapSslOptUsrMappingBindPw=ilomCtrlLdapSslOptUsrMappingBindPw, ilomCtrlActiveDirUserDomain=ilomCtrlActiveDirUserDomain, ilomCtrlActiveDirOperatorGroupsEntry=ilomCtrlActiveDirOperatorGroupsEntry, ilomCtrlLdapSslAdminGroupId=ilomCtrlLdapSslAdminGroupId, ilomCtrlLdapSslAlternateServerPort=ilomCtrlLdapSslAlternateServerPort, ilomCtrlLdapSslAdminGroupsEntry=ilomCtrlLdapSslAdminGroupsEntry, ilomCtrlRadius=ilomCtrlRadius, ilomCtrlPowerEntry=ilomCtrlPowerEntry, ilomCtrlBackupAndRestoreActionStatus=ilomCtrlBackupAndRestoreActionStatus, ilomCtrlSessions=ilomCtrlSessions, ilomCtrlActiveDirDnsLocatorQueryId=ilomCtrlActiveDirDnsLocatorQueryId, ilomCtrlThdModulesEntry=ilomCtrlThdModulesEntry, ilomCtrlSystemIdentifier=ilomCtrlSystemIdentifier, ILOMCtrlBackupAndRestoreAction=ILOMCtrlBackupAndRestoreAction, ilomCtrlPowerTable=ilomCtrlPowerTable, ilomCtrlSPARCDiagsLevel=ilomCtrlSPARCDiagsLevel, ilomCtrlLdapSsl=ilomCtrlLdapSsl, ilomCtrlLdapSslCustomGroupId=ilomCtrlLdapSslCustomGroupId, ilomCtrlActiveDirDnsLocatorQueryService=ilomCtrlActiveDirDnsLocatorQueryService, ilomCtrlThdInstanceState=ilomCtrlThdInstanceState, ilomCtrlSerialInternalPortPresent=ilomCtrlSerialInternalPortPresent, ilomCtrlAlertEmailEventTypeFilter=ilomCtrlAlertEmailEventTypeFilter, ilomCtrlEventLog=ilomCtrlEventLog, ILOMCtrlFirmwareUpdateStatus=ILOMCtrlFirmwareUpdateStatus, ilomCtrlSPARCHostBootRestart=ilomCtrlSPARCHostBootRestart, ilomCtrlLdapSslUserDomainTable=ilomCtrlLdapSslUserDomainTable, ilomCtrlBackupAndRestoreAction=ilomCtrlBackupAndRestoreAction, ilomCtrlFirmwareBuildNumber=ilomCtrlFirmwareBuildNumber, ilomCtrlSPARCHostPOSTVersion=ilomCtrlSPARCHostPOSTVersion, ilomCtrlEventLogDescription=ilomCtrlEventLogDescription, ilomCtrlLocalUserEntry=ilomCtrlLocalUserEntry, ilomCtrlConformances=ilomCtrlConformances, ilomCtrlPowerReset=ilomCtrlPowerReset, ilomCtrlSessionsUsername=ilomCtrlSessionsUsername, ilomCtrlFirmwareMgmtFilesystemVersion=ilomCtrlFirmwareMgmtFilesystemVersion, ILOMCtrlTargetIndex=ILOMCtrlTargetIndex, ilomCtrlDeprecatedObjectsGroup=ilomCtrlDeprecatedObjectsGroup, ilomCtrlActiveDirAdminGroupId=ilomCtrlActiveDirAdminGroupId, ilomCtrlActiveDirectoryCertValidBegin=ilomCtrlActiveDirectoryCertValidBegin, ilomCtrlSingleSignon=ilomCtrlSingleSignon, ilomCtrlNetworkPendingIpGateway=ilomCtrlNetworkPendingIpGateway, ilomCtrlSPARCBootMode=ilomCtrlSPARCBootMode, ilomCtrlThdModuleName=ilomCtrlThdModuleName, ilomCtrlSPARCDiags=ilomCtrlSPARCDiags, ilomCtrlEventLogTable=ilomCtrlEventLogTable, ilomCtrlUsers=ilomCtrlUsers, ilomCtrlRemoteSyslogDest2=ilomCtrlRemoteSyslogDest2, ilomCtrlSPARCHostControl=ilomCtrlSPARCHostControl, ilomCtrlSshRsaKeyLength=ilomCtrlSshRsaKeyLength, ilomCtrlDeviceNTPServerOneIP=ilomCtrlDeviceNTPServerOneIP, ilomCtrlRadiusSecret=ilomCtrlRadiusSecret, ilomCtrlSshRsaKeyFingerprint=ilomCtrlSshRsaKeyFingerprint, ilomCtrlDNSNameServers=ilomCtrlDNSNameServers, ilomCtrlNetworkState=ilomCtrlNetworkState, ilomCtrlThdInstanceTable=ilomCtrlThdInstanceTable, ilomCtrlSPARCHostSendBreakAction=ilomCtrlSPARCHostSendBreakAction, ilomCtrlActiveDirDnsLocatorEnabled=ilomCtrlActiveDirDnsLocatorEnabled, ilomCtrlPolicy=ilomCtrlPolicy, ilomCtrlFirmwareTFTPFileName=ilomCtrlFirmwareTFTPFileName, ilomCtrlSshGenerateNewKeyType=ilomCtrlSshGenerateNewKeyType, ilomCtrlLdapBindPassword=ilomCtrlLdapBindPassword, ilomCtrlRedundancyStatus=ilomCtrlRedundancyStatus, ilomCtrlSPARCHostHypervisorVersion=ilomCtrlSPARCHostHypervisorVersion, ilomCtrlLdapSslAlternateServerCertValidBegin=ilomCtrlLdapSslAlternateServerCertValidBegin, ilomCtrlSsh=ilomCtrlSsh, ilomCtrlSPARCHostMACAddress=ilomCtrlSPARCHostMACAddress, ilomCtrlLdapSslUserDomainEntry=ilomCtrlLdapSslUserDomainEntry, ilomCtrlRadiusDefaultRoles=ilomCtrlRadiusDefaultRoles, ilomCtrlNetworkCommitPending=ilomCtrlNetworkCommitPending, ilomCtrlActiveDirectoryLogDetail=ilomCtrlActiveDirectoryLogDetail, ilomCtrlActiveDirUserDomainTable=ilomCtrlActiveDirUserDomainTable, ilomCtrlSPARCHostBootFailRecovery=ilomCtrlSPARCHostBootFailRecovery, ilomCtrlActiveDirUserDomainId=ilomCtrlActiveDirUserDomainId, ilomCtrlActiveDirStrictCredentialErrorEnabled=ilomCtrlActiveDirStrictCredentialErrorEnabled, ilomCtrlSMTPCustomSender=ilomCtrlSMTPCustomSender, ilomCtrlLocalUserAuthTable=ilomCtrlLocalUserAuthTable, ilomCtrlLdapEnabled=ilomCtrlLdapEnabled, ilomCtrlThdModuleDesc=ilomCtrlThdModuleDesc, ilomCtrlLocalUserPassword=ilomCtrlLocalUserPassword, ilomCtrlAlertID=ilomCtrlAlertID, ilomCtrlLdap=ilomCtrlLdap, ILOMCtrlSPARCDiagsTrigger=ILOMCtrlSPARCDiagsTrigger, ilomCtrlAlertEmailMessagePrefix=ilomCtrlAlertEmailMessagePrefix, ILOMCtrlRedundancyAction=ILOMCtrlRedundancyAction, ilomCtrlLdapSslCertFileVersion=ilomCtrlLdapSslCertFileVersion, ilomCtrlActiveDirAlternateServerId=ilomCtrlActiveDirAlternateServerId, ILOMCtrlEventLogClass=ILOMCtrlEventLogClass, ILOMCtrlSPARCHostSendBreakAction=ILOMCtrlSPARCHostSendBreakAction, ilomCtrlAlertsTable=ilomCtrlAlertsTable, ilomCtrlActiveDirAlternateServerEntry=ilomCtrlActiveDirAlternateServerEntry, ilomCtrlResetAction=ilomCtrlResetAction, ilomCtrlThdModName=ilomCtrlThdModName, ilomCtrlActiveDirectoryDefaultRole=ilomCtrlActiveDirectoryDefaultRole, ilomCtrlLdapSslCertFileURI=ilomCtrlLdapSslCertFileURI, ilomCtrlLdapSslCustomGroupName=ilomCtrlLdapSslCustomGroupName, PYSNMP_MODULE_ID=ilomCtrlMIB, ilomCtrlSPARCHostIoReconfigurePolicy=ilomCtrlSPARCHostIoReconfigurePolicy, ilomCtrlLdapDefaultRoles=ilomCtrlLdapDefaultRoles, ilomCtrlLdapSslEnabled=ilomCtrlLdapSslEnabled, ilomCtrlActiveDirDnsLocatorQueryTable=ilomCtrlActiveDirDnsLocatorQueryTable, ILOMCtrlSPARCHostBootFailRecovery=ILOMCtrlSPARCHostBootFailRecovery, ilomCtrlThdModuleAction=ilomCtrlThdModuleAction, ilomCtrlSPARCHostMaxBootFail=ilomCtrlSPARCHostMaxBootFail, ilomCtrlActiveDirCustomGroupName=ilomCtrlActiveDirCustomGroupName, ilomCtrlSPARCHostPOSTStatus=ilomCtrlSPARCHostPOSTStatus, ilomCtrlClients=ilomCtrlClients, ilom=ilom, ilomCtrlHttpEnabled=ilomCtrlHttpEnabled, ilomCtrlSPARCHostBootTimeout=ilomCtrlSPARCHostBootTimeout, ilomCtrlLdapSslCertFileClear=ilomCtrlLdapSslCertFileClear, ilomCtrlLdapSslAlternateServerCertClear=ilomCtrlLdapSslAlternateServerCertClear, ILOMCtrlThdAction=ILOMCtrlThdAction, ilomCtrlSessionsId=ilomCtrlSessionsId, ilomCtrlLdapSslGlobalObj=ilomCtrlLdapSslGlobalObj, ILOMCtrlModTargetIndex=ILOMCtrlModTargetIndex, ILOMCtrlSPARCHostIoReconfigurePolicy=ILOMCtrlSPARCHostIoReconfigurePolicy, ilomCtrlRedundancyAction=ilomCtrlRedundancyAction, ilomCtrlSPARCDiagsVerbosity=ilomCtrlSPARCDiagsVerbosity, ilomCtrlLdapSslOperatorGroupsEntry=ilomCtrlLdapSslOperatorGroupsEntry, ilomCtrlFirmwarePreserveConfig=ilomCtrlFirmwarePreserveConfig, ilomCtrlAlertSNMPCommunityOrUsername=ilomCtrlAlertSNMPCommunityOrUsername, ilomCtrlActiveDirAlternateServerCertStatus=ilomCtrlActiveDirAlternateServerCertStatus, ilomCtrlFirmwareMgmt=ilomCtrlFirmwareMgmt, ilomCtrlSPARCDiagsHwChangeVerbosity=ilomCtrlSPARCDiagsHwChangeVerbosity, ilomCtrlLdapSslIP=ilomCtrlLdapSslIP, ILOMCtrlAlertSNMPVersion=ILOMCtrlAlertSNMPVersion, ILOMCtrlEventSeverity=ILOMCtrlEventSeverity, ilomCtrlThdModulesTable=ilomCtrlThdModulesTable, ilomCtrlActiveDirectoryPortNumber=ilomCtrlActiveDirectoryPortNumber)
mibBuilder.exportSymbols('SUN-ILOM-CONTROL-MIB', ilomCtrlActiveDirectory=ilomCtrlActiveDirectory, ilomCtrlPolicyTable=ilomCtrlPolicyTable, ilomCtrlLdapSslCertFileSubject=ilomCtrlLdapSslCertFileSubject, ilomCtrlLocalUserUsername=ilomCtrlLocalUserUsername, ilomCtrlEventLogClass=ilomCtrlEventLogClass, ilomCtrlSPARCBootModeState=ilomCtrlSPARCBootModeState, ilomCtrlRemoteSyslogDest1=ilomCtrlRemoteSyslogDest1, ilomCtrlEventLogType=ilomCtrlEventLogType, ilomCtrlLdapBindDn=ilomCtrlLdapBindDn, ilomCtrlActiveDirAlternateServerIp=ilomCtrlActiveDirAlternateServerIp, ILOMCtrlNetworkIpDiscovery=ILOMCtrlNetworkIpDiscovery, ilomCtrlActiveDirectoryIP=ilomCtrlActiveDirectoryIP, ilomCtrlThdAction=ilomCtrlThdAction, ilomCtrlLdapSslAlternateServerIp=ilomCtrlLdapSslAlternateServerIp, ilomCtrlEventLogEntry=ilomCtrlEventLogEntry, ilomCtrlThd=ilomCtrlThd, ilomCtrlLdapSslAlternateServerTable=ilomCtrlLdapSslAlternateServerTable, ilomCtrlTimezone=ilomCtrlTimezone, ilomCtrlPolicyId=ilomCtrlPolicyId, ilomCtrlNetworkIpAddress=ilomCtrlNetworkIpAddress, ilomCtrlNetworkPendingIpDiscovery=ilomCtrlNetworkPendingIpDiscovery, ilomCtrlDateAndTime=ilomCtrlDateAndTime, ilomCtrlLdapSslAlternateServerCertIssuer=ilomCtrlLdapSslAlternateServerCertIssuer, ILOMCtrlSPARCDiagsVerbosityAdv=ILOMCtrlSPARCDiagsVerbosityAdv, ilomCtrlSMTPEnabled=ilomCtrlSMTPEnabled, ilomCtrlActiveDirAlternateServerCertValidEnd=ilomCtrlActiveDirAlternateServerCertValidEnd, ilomCtrlClock=ilomCtrlClock, ilomCtrlSMTP=ilomCtrlSMTP, ilomCtrlLocalUserTable=ilomCtrlLocalUserTable, ilomCtrlDNSdhcpAutoDns=ilomCtrlDNSdhcpAutoDns, ilomCtrlSPARCHostGMVersion=ilomCtrlSPARCHostGMVersion, ilomCtrlLogs=ilomCtrlLogs, ilomCtrlEventLogRecordID=ilomCtrlEventLogRecordID, ilomCtrlSPARCDiagsTrigger=ilomCtrlSPARCDiagsTrigger, ilomCtrlActiveDirAdminGroupsTable=ilomCtrlActiveDirAdminGroupsTable, ilomCtrlFirmwareTFTPServerIP=ilomCtrlFirmwareTFTPServerIP, ILOMCtrlSPARCHostBootRestart=ILOMCtrlSPARCHostBootRestart, ILOMCtrlSessionsConnectionType=ILOMCtrlSessionsConnectionType, ilomCtrlNetworkManagementPort=ilomCtrlNetworkManagementPort, ilomCtrlPolicyEnabled=ilomCtrlPolicyEnabled, ilomCtrlActiveDirCustomGroupsEntry=ilomCtrlActiveDirCustomGroupsEntry, ilomCtrlLdapServerIP=ilomCtrlLdapServerIP, ilomCtrlLdapSslAlternateServerId=ilomCtrlLdapSslAlternateServerId, ilomCtrlHttpSecureRedirect=ilomCtrlHttpSecureRedirect, ilomCtrlLdapSslCertFileStatus=ilomCtrlLdapSslCertFileStatus, ilomCtrlLdapSslDefaultRole=ilomCtrlLdapSslDefaultRole, ilomCtrlLdapSslCertFileValidBegin=ilomCtrlLdapSslCertFileValidBegin, ilomCtrlSPARCHostOSBootStatus=ilomCtrlSPARCHostOSBootStatus, ilomCtrlActiveDirAlternateServerCertValidBegin=ilomCtrlActiveDirAlternateServerCertValidBegin, ilomCtrlFirmwareMgmtAction=ilomCtrlFirmwareMgmtAction, ilomCtrlEventLogTimestamp=ilomCtrlEventLogTimestamp, ilomCtrlLdapSslAdminGroupsTable=ilomCtrlLdapSslAdminGroupsTable, ilomCtrlLdapSslOptUsrMappingAttrInfo=ilomCtrlLdapSslOptUsrMappingAttrInfo, ILOMCtrlAlertType=ILOMCtrlAlertType, ilomCtrlResetToDefaultsAction=ilomCtrlResetToDefaultsAction, ilomCtrlLdapSslOperatorGroupsTable=ilomCtrlLdapSslOperatorGroupsTable, ilomCtrlEventLogClear=ilomCtrlEventLogClear, ilomCtrlNetworkIpNetmask=ilomCtrlNetworkIpNetmask, ilomCtrlBackupAndRestoreTargetURI=ilomCtrlBackupAndRestoreTargetURI, ilomCtrlLdapSslCustomGroupsTable=ilomCtrlLdapSslCustomGroupsTable, ilomCtrlSshEnabled=ilomCtrlSshEnabled, ILOMCtrlSPARCDiagsLevelAdv=ILOMCtrlSPARCDiagsLevelAdv, ILOMCtrlSPARCDiagsLevel=ILOMCtrlSPARCDiagsLevel, ilomCtrlNetworkIpDiscovery=ilomCtrlNetworkIpDiscovery, ilomCtrlLdapSslDefaultRoles=ilomCtrlLdapSslDefaultRoles, ilomCtrlActiveDirAlternateServerCertIssuer=ilomCtrlActiveDirAlternateServerCertIssuer, ilomCtrlLdapSslUserDomain=ilomCtrlLdapSslUserDomain, ilomCtrlLocalUserAuthRowStatus=ilomCtrlLocalUserAuthRowStatus, ilomCtrlLdapSslOptUsrMappingBindDn=ilomCtrlLdapSslOptUsrMappingBindDn, ilomCtrlSshDsaKeyLength=ilomCtrlSshDsaKeyLength, ilomCtrlGroups=ilomCtrlGroups, ilomCtrlNetworkSidebandMacAddress=ilomCtrlNetworkSidebandMacAddress, ilomCtrlLdapSslPortNumber=ilomCtrlLdapSslPortNumber, ilomCtrlPowerControl=ilomCtrlPowerControl, ilomCtrlAlertDestinationPort=ilomCtrlAlertDestinationPort, ILOMCtrlSPARCDiagsVerbosity=ILOMCtrlSPARCDiagsVerbosity, ilomCtrlResetTable=ilomCtrlResetTable, ILOMCtrlUserRole=ILOMCtrlUserRole, ilomCtrlResetEntry=ilomCtrlResetEntry, ilomCtrlIdentification=ilomCtrlIdentification, ilomCtrlHostName=ilomCtrlHostName, ilomCtrlHttpPortNumber=ilomCtrlHttpPortNumber, ILOMCtrlRedundancyStatus=ILOMCtrlRedundancyStatus, ilomCtrlLdapSslAlternateServerCertVersion=ilomCtrlLdapSslAlternateServerCertVersion, ilomCtrlLdapSslOptUsrMappingSearchBase=ilomCtrlLdapSslOptUsrMappingSearchBase, ilomCtrlNetworkMacAddress=ilomCtrlNetworkMacAddress, ilomCtrlActiveDirExpSearchEnabled=ilomCtrlActiveDirExpSearchEnabled, ILOMCtrlUserRoles=ILOMCtrlUserRoles, ilomCtrlHttp=ilomCtrlHttp, ilomCtrlAlertType=ilomCtrlAlertType, ilomCtrlPolicyLongStr=ilomCtrlPolicyLongStr, ilomCtrlSPARCHostOBPVersion=ilomCtrlSPARCHostOBPVersion, ilomCtrlLocalUserCLIMode=ilomCtrlLocalUserCLIMode, ilomCtrlActiveDirCustomGroupsTable=ilomCtrlActiveDirCustomGroupsTable, ILOMCtrlFlowControl=ILOMCtrlFlowControl, ilomCtrlActiveDirAlternateServerCertClear=ilomCtrlActiveDirAlternateServerCertClear, ILOMCtrlEventLogType=ILOMCtrlEventLogType, ilomCtrlSerial=ilomCtrlSerial, ilomCtrlLdapSslAlternateServerCertSubject=ilomCtrlLdapSslAlternateServerCertSubject, ilomCtrlEventLogSeverity=ilomCtrlEventLogSeverity, ilomCtrlLocalUserAuthUsername=ilomCtrlLocalUserAuthUsername, ilomCtrlSessionsEntry=ilomCtrlSessionsEntry, ilomCtrlNetworkPendingManagementPort=ilomCtrlNetworkPendingManagementPort, ilomCtrlSessionsConnectionType=ilomCtrlSessionsConnectionType, ilomCtrlActiveDirDnsLocatorQueryEntry=ilomCtrlActiveDirDnsLocatorQueryEntry, ilomCtrlSPARCDiagsUserResetLevel=ilomCtrlSPARCDiagsUserResetLevel, ilomCtrlSshGenerateNewKeyAction=ilomCtrlSshGenerateNewKeyAction, ilomCtrlLdapSslAlternateServerEntry=ilomCtrlLdapSslAlternateServerEntry, ILOMCtrlSPARCHostAutoRestartPolicy=ILOMCtrlSPARCHostAutoRestartPolicy, ILOMCtrlBaudRate=ILOMCtrlBaudRate, ilomCtrlSPARCDiagsPowerOnLevel=ilomCtrlSPARCDiagsPowerOnLevel, ilomCtrlHttpsEnabled=ilomCtrlHttpsEnabled, ilomCtrlDeviceNTPServerTwoIP=ilomCtrlDeviceNTPServerTwoIP, ILOMCtrlResetAction=ILOMCtrlResetAction, ilomCtrlLocalUserAuthPassword=ilomCtrlLocalUserAuthPassword, ilomCtrlFirmwareMgmtVersion=ilomCtrlFirmwareMgmtVersion, ilomCtrlLdapSslCertFileSerialNo=ilomCtrlLdapSslCertFileSerialNo, ilomCtrlActiveDirCustomGroupRoles=ilomCtrlActiveDirCustomGroupRoles, ILOMCtrlLocalUserUsername=ILOMCtrlLocalUserUsername, ilomCtrlLdapSslOptUsrMappingEnabled=ilomCtrlLdapSslOptUsrMappingEnabled, ilomCtrlSPARCDiagsMode=ilomCtrlSPARCDiagsMode, ilomCtrlLocalUserAuthRole=ilomCtrlLocalUserAuthRole, ilomCtrlBackupAndRestorePassphrase=ilomCtrlBackupAndRestorePassphrase, ilomCtrlDNSTimeout=ilomCtrlDNSTimeout, ilomCtrlNetworkDHCPServerAddr=ilomCtrlNetworkDHCPServerAddr, ilomCtrlMIB=ilomCtrlMIB, ILOMCtrlSPARCDiagsMode=ILOMCtrlSPARCDiagsMode, ilomCtrlNetworkPendingIpNetmask=ilomCtrlNetworkPendingIpNetmask, ilomCtrlActiveDirectoryTimeout=ilomCtrlActiveDirectoryTimeout, ilomCtrlActiveDirAlternateServerCertSubject=ilomCtrlActiveDirAlternateServerCertSubject, ilomCtrlSPARCBootModeScript=ilomCtrlSPARCBootModeScript, ilomCtrlThdInstanceEntry=ilomCtrlThdInstanceEntry, ilomCtrlSPARCDiagsUserResetVerbosity=ilomCtrlSPARCDiagsUserResetVerbosity, ilomCtrlLdapSslAlternateServerCertStatus=ilomCtrlLdapSslAlternateServerCertStatus, ilomCtrlActiveDirAdminGroupsEntry=ilomCtrlActiveDirAdminGroupsEntry, ilomCtrlSerialExternalPortBaudRate=ilomCtrlSerialExternalPortBaudRate, ilomCtrlRadiusDefaultRole=ilomCtrlRadiusDefaultRole) |
def sum_squares(x, y):
return add(square(x), square(y))
def print_square(x):
print(square(x))
def percent_difference(x, y):
difference = abs(x-y)
return 100 * difference / x
| def sum_squares(x, y):
return add(square(x), square(y))
def print_square(x):
print(square(x))
def percent_difference(x, y):
difference = abs(x - y)
return 100 * difference / x |
class Subject:
def register_observer(self, observer):
raise NotImplementedError
def remove_observer(self, observer):
raise NotImplementedError
def notify_observers(self):
raise NotImplementedError
class WeatherData(Subject):
def __init__(self):
self.humidity = None
self.pressure = None
self.temperature = None
self.observers = []
def register_observer(self, observer):
self.observers.append(observer)
def remove_observer(self, observer):
self.observers.remove(observer)
def notify_observers(self):
for observer in self.observers:
observer.update(self.temperature, self.humidity, self.pressure)
def get_temperature(self):
pass
def get_humidity(self):
pass
def get_pressure(self):
pass
def measurements_changed(self):
self.notify_observers()
def set_measurements(self, temperature, humidity, pressure):
self.temperature = temperature
self.humidity = humidity
self.pressure = pressure
self.measurements_changed()
class Observer:
def update(self, temp, humidity, pressure):
raise NotImplementedError
class DisplayElement:
def display(self):
raise NotImplementedError
class CurrentConditionsDisplay(Observer, DisplayElement):
def __init__(self, weather_data):
self.weather_data = weather_data
self.weather_data.register_observer(self)
self.temperature = None
self.humidity = None
def update(self, temp, humidity, pressure):
self.temperature = temp
self.humidity = humidity
self.display()
def display(self):
print(f"Current conditions: {self.temperature}F degrees and {self.humidity}% humidity")
class StatisticsDisplay(Observer, DisplayElement):
def __init__(self, weather_data):
self.weather_data = weather_data
self.weather_data.register_observer(self)
self.max_temp = 0
self.min_temp = 200
self.temp_sum = 0
self.num_readings = 0
def update(self, temp, humidity, pressure):
self.temp_sum += temp
self.num_readings += 1
if temp > self.max_temp:
self.max_temp = temp
if temp < self.min_temp:
self.min_temp = temp
self.display()
def display(self):
print(f"Avg/Max/Min temperature = {(self.temp_sum / self.num_readings)}/{self.max_temp}/{self.min_temp}")
class ForecastDisplay(Observer, DisplayElement):
def __init__(self, weather_data):
self.weather_data = weather_data
self.weather_data.register_observer(self)
self.last_pressure = 0
self.current_pressure = 0
def update(self, temp, humidity, pressure):
self.last_pressure = self.current_pressure
self.current_pressure = pressure
self.display()
def display(self):
print("Forecast: ")
if self.current_pressure > self.last_pressure:
print("Improving weather on the way!")
elif self.current_pressure == self.last_pressure:
print("More of the same")
elif self.current_pressure < self.last_pressure:
print("Watch out for cooler, rainy weather")
class ThirdPartyDisplay(Observer, DisplayElement):
def update(self, temp, humidity, pressure):
pass
def display(self):
pass
wd = WeatherData()
ccd = CurrentConditionsDisplay(wd)
sd = StatisticsDisplay(wd)
fd = ForecastDisplay(wd)
wd.set_measurements(80, 65, 30.4)
wd.set_measurements(82, 70, 29.2)
wd.set_measurements(78, 90, 29.2) | class Subject:
def register_observer(self, observer):
raise NotImplementedError
def remove_observer(self, observer):
raise NotImplementedError
def notify_observers(self):
raise NotImplementedError
class Weatherdata(Subject):
def __init__(self):
self.humidity = None
self.pressure = None
self.temperature = None
self.observers = []
def register_observer(self, observer):
self.observers.append(observer)
def remove_observer(self, observer):
self.observers.remove(observer)
def notify_observers(self):
for observer in self.observers:
observer.update(self.temperature, self.humidity, self.pressure)
def get_temperature(self):
pass
def get_humidity(self):
pass
def get_pressure(self):
pass
def measurements_changed(self):
self.notify_observers()
def set_measurements(self, temperature, humidity, pressure):
self.temperature = temperature
self.humidity = humidity
self.pressure = pressure
self.measurements_changed()
class Observer:
def update(self, temp, humidity, pressure):
raise NotImplementedError
class Displayelement:
def display(self):
raise NotImplementedError
class Currentconditionsdisplay(Observer, DisplayElement):
def __init__(self, weather_data):
self.weather_data = weather_data
self.weather_data.register_observer(self)
self.temperature = None
self.humidity = None
def update(self, temp, humidity, pressure):
self.temperature = temp
self.humidity = humidity
self.display()
def display(self):
print(f'Current conditions: {self.temperature}F degrees and {self.humidity}% humidity')
class Statisticsdisplay(Observer, DisplayElement):
def __init__(self, weather_data):
self.weather_data = weather_data
self.weather_data.register_observer(self)
self.max_temp = 0
self.min_temp = 200
self.temp_sum = 0
self.num_readings = 0
def update(self, temp, humidity, pressure):
self.temp_sum += temp
self.num_readings += 1
if temp > self.max_temp:
self.max_temp = temp
if temp < self.min_temp:
self.min_temp = temp
self.display()
def display(self):
print(f'Avg/Max/Min temperature = {self.temp_sum / self.num_readings}/{self.max_temp}/{self.min_temp}')
class Forecastdisplay(Observer, DisplayElement):
def __init__(self, weather_data):
self.weather_data = weather_data
self.weather_data.register_observer(self)
self.last_pressure = 0
self.current_pressure = 0
def update(self, temp, humidity, pressure):
self.last_pressure = self.current_pressure
self.current_pressure = pressure
self.display()
def display(self):
print('Forecast: ')
if self.current_pressure > self.last_pressure:
print('Improving weather on the way!')
elif self.current_pressure == self.last_pressure:
print('More of the same')
elif self.current_pressure < self.last_pressure:
print('Watch out for cooler, rainy weather')
class Thirdpartydisplay(Observer, DisplayElement):
def update(self, temp, humidity, pressure):
pass
def display(self):
pass
wd = weather_data()
ccd = current_conditions_display(wd)
sd = statistics_display(wd)
fd = forecast_display(wd)
wd.set_measurements(80, 65, 30.4)
wd.set_measurements(82, 70, 29.2)
wd.set_measurements(78, 90, 29.2) |
# ----------
# Feature extraction
# ----------
class ExtendedFeatures:
def __init__(self, dataset):
self.feature_dic = {}
self.feature_names = []
self.nr_feats = 0
self.feature_list = []
self.add_features = False
self.dataset = dataset
# Speed up
self.node_feature_cache = {}
self.initial_state_feature_cache = {}
self.edge_feature_cache = {}
self.final_edge_feature_cache = {}
def build_features(self):
self.add_features = True
for seq in self.dataset.train.seq_list:
seq_node_features, seq_edge_features = self.get_seq_features(seq)
self.feature_list.append([seq_node_features, seq_edge_features])
self.nr_feats = len(self.feature_names)
self.add_features = False
def get_seq_features(self, seq):
seq_node_features = []
seq_edge_features = []
# Take care of first position
idx = []
idx = self.add_node_features(seq, 0, seq.y[0], idx)
idx = self.add_init_state_features(seq, 0, seq.y[0], idx)
seq_node_features.append(idx)
seq_edge_features.append([])
for i, tag in enumerate(seq.y[1:]):
idx = []
edge_idx = []
j = i + 1
# print i,j
prev_tag = seq.y[j-1]
edge_idx = self.add_edge_features(seq, j, tag, prev_tag, edge_idx)
idx = self.add_node_features(seq, j, tag, idx)
seq_node_features.append(idx)
seq_edge_features.append(edge_idx)
return seq_node_features, seq_edge_features
# Add word tag pair
def add_node_features(self, seq, pos, y, idx):
x = seq.x[pos]
y_name = self.dataset.int_to_pos[y]
word = self.dataset.int_to_word[x]
feat = "id:%s::%s" % (word, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
if unicode.istitle(word):
feat = "uppercased::%s" % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
if unicode.isdigit(word):
feat = "number::%s" % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
if unicode.find(word, "-") != -1:
feat = "hyphen::%s" % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
# Suffixes
max_suffix = 3
for i in xrange(max_suffix):
if len(word) > i+1:
suffix = word[-(i+1):]
feat = "suffix:%s::%s" % (suffix, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
# Prefixes
max_prefix = 3
for i in xrange(max_prefix):
if len(word) > i+1:
prefix = word[:i+1]
feat = "prefix:%s::%s" % (prefix, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
# if(pos > 0):
# prev_word = seq.x[pos-1]
# if(self.dataset.word_counts[prev_word] > 5):
# prev_word_name = self.dataset.int_to_word[prev_word]
# feat = "prev_word:%s:%s"%(prev_word_name,y_name)
# nr_feat = self.add_feature(feat)
# if(nr_feat != -1):
# idx.append(nr_feat)
# if(pos < len(seq.x) -1):
# next_word = seq.x[pos+1]
# if(self.dataset.word_counts[next_word] > 5):
# next_word_name = self.dataset.int_to_word[next_word]
# feat = "next_word:%s:%s"%(next_word_name,y_name)
# nr_feat = self.add_feature(feat)
# if(nr_feat != -1):
# idx.append(nr_feat)
if self.dataset.word_counts[x] <= 5:
feat = "rare::%s" % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
return idx
# f(t,y_t,X)
# Add the word identity and if position is
# the first also adds the tag position
def get_node_features(self, seq, pos, y):
all_feat = []
x = seq.x[pos]
if x not in self.node_feature_cache:
self.node_feature_cache[x] = {}
if y not in self.node_feature_cache[x]:
node_idx = []
node_idx = self.add_node_features(seq, pos, y, node_idx)
# node_idx = filter (lambda a: a != -1, node_idx)
self.node_feature_cache[x][y] = node_idx
idx = self.node_feature_cache[x][y]
all_feat = idx[:]
# print idx
if pos == 0:
if y not in self.initial_state_feature_cache:
init_idx = []
init_idx = self.add_init_state_features(seq, pos, y, init_idx)
self.initial_state_feature_cache[y] = init_idx
all_feat.extend(self.initial_state_feature_cache[y])
# print "before init"
# print idx
# print "after init"
return all_feat
def add_init_state_features(self, seq, pos, y, init_idx):
y_name = self.dataset.int_to_pos[y]
feat = "init_tag:%s" % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
init_idx.append(nr_feat)
return init_idx
def add_edge_features(self, seq, pos, y, y_prev, edge_idx):
# print "Adding edge feature for pos:%i y:%i y_prev%i seq_len:%i"%(pos,y,y_prev,len(seq.x))
y_name = self.dataset.int_to_pos[y]
y_prev_name = self.dataset.int_to_pos[y_prev]
if pos == len(seq.x)-1:
feat = "last_prev_tag:%s::%s" % (y_prev_name, y_name)
else:
feat = "prev_tag:%s::%s" % (y_prev_name, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
edge_idx.append(nr_feat)
return edge_idx
# f(t,y_t,y_(t-1),X)
# Speed up of code
def get_edge_features(self, seq, pos, y, y_prev):
# print "Getting edge feature for pos:%i y:%i y_prev%i seq_len:%i"%(pos,y,y_prev,len(seq.x))
# print "edge cache"
# print self.edge_feature_cache
# print "Final edge cache"
# print self.final_edge_feature_cache
if pos == len(seq.x)-1:
if y not in self.final_edge_feature_cache:
self.final_edge_feature_cache[y] = {}
if y_prev not in self.final_edge_feature_cache[y]:
edge_idx = []
edge = self.add_edge_features(seq, pos, y, y_prev, edge_idx)
self.final_edge_feature_cache[y][y_prev] = edge_idx
return self.final_edge_feature_cache[y][y_prev]
else:
if y not in self.edge_feature_cache:
self.edge_feature_cache[y] = {}
if y_prev not in self.edge_feature_cache[y]:
edge_idx = []
edge = self.add_edge_features(seq, pos, y, y_prev, edge_idx)
self.edge_feature_cache[y][y_prev] = edge_idx
return self.edge_feature_cache[y][y_prev]
def add_feature(self, feat):
# if(self.add_features == False):
# print feat
if feat in self.feature_dic:
return self.feature_dic[feat]
if not self.add_features:
return -1
nr_feat = len(self.feature_dic.keys())
# print "Adding feature %s %i"%(feat,nr_feat)
self.feature_dic[feat] = nr_feat
self.feature_names.append(feat)
return nr_feat
def get_sequence_feat_str(self, seq):
seq_nr = seq.nr
node_f_list = self.feature_list[seq_nr][0]
edge_f_list = self.feature_list[seq_nr][1]
word = seq.x[0]
word_n = self.dataset.int_to_word[word]
tag = seq.y[0]
tag_n = self.dataset.int_to_pos[tag]
txt = ""
for i, tag in enumerate(seq.y):
word = seq.x[i]
word_n = self.dataset.int_to_word[word]
tag_n = self.dataset.int_to_pos[tag]
txt += "%i %s/%s NF: " % (i, word_n, tag_n)
for nf in node_f_list[i]:
txt += "%s " % self.feature_names[nf]
if edge_f_list[i] != []:
txt += "EF: "
for nf in edge_f_list[i]:
txt += "%s " % self.feature_names[nf]
txt += "\n"
return txt
def print_sequence_features(self, seq):
txt = ""
for i, tag in enumerate(seq.y):
word = seq.x[i]
word_n = self.dataset.int_to_word[word]
tag_n = self.dataset.int_to_pos[tag]
txt += "%i %s/%s NF: " % (i, word_n, tag_n)
prev_tag = seq.y[i-1]
if i > 0:
edge_f_list = self.get_edge_features(seq, i, tag, prev_tag)
else:
edge_f_list = []
node_f_list = self.get_node_features(seq, i, tag)
for nf in node_f_list:
txt += "%s " % self.feature_names[nf]
if edge_f_list != []:
txt += "EF: "
for nf in edge_f_list:
txt += "%s " % self.feature_names[nf]
txt += "\n"
return txt
| class Extendedfeatures:
def __init__(self, dataset):
self.feature_dic = {}
self.feature_names = []
self.nr_feats = 0
self.feature_list = []
self.add_features = False
self.dataset = dataset
self.node_feature_cache = {}
self.initial_state_feature_cache = {}
self.edge_feature_cache = {}
self.final_edge_feature_cache = {}
def build_features(self):
self.add_features = True
for seq in self.dataset.train.seq_list:
(seq_node_features, seq_edge_features) = self.get_seq_features(seq)
self.feature_list.append([seq_node_features, seq_edge_features])
self.nr_feats = len(self.feature_names)
self.add_features = False
def get_seq_features(self, seq):
seq_node_features = []
seq_edge_features = []
idx = []
idx = self.add_node_features(seq, 0, seq.y[0], idx)
idx = self.add_init_state_features(seq, 0, seq.y[0], idx)
seq_node_features.append(idx)
seq_edge_features.append([])
for (i, tag) in enumerate(seq.y[1:]):
idx = []
edge_idx = []
j = i + 1
prev_tag = seq.y[j - 1]
edge_idx = self.add_edge_features(seq, j, tag, prev_tag, edge_idx)
idx = self.add_node_features(seq, j, tag, idx)
seq_node_features.append(idx)
seq_edge_features.append(edge_idx)
return (seq_node_features, seq_edge_features)
def add_node_features(self, seq, pos, y, idx):
x = seq.x[pos]
y_name = self.dataset.int_to_pos[y]
word = self.dataset.int_to_word[x]
feat = 'id:%s::%s' % (word, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
if unicode.istitle(word):
feat = 'uppercased::%s' % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
if unicode.isdigit(word):
feat = 'number::%s' % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
if unicode.find(word, '-') != -1:
feat = 'hyphen::%s' % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
max_suffix = 3
for i in xrange(max_suffix):
if len(word) > i + 1:
suffix = word[-(i + 1):]
feat = 'suffix:%s::%s' % (suffix, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
max_prefix = 3
for i in xrange(max_prefix):
if len(word) > i + 1:
prefix = word[:i + 1]
feat = 'prefix:%s::%s' % (prefix, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
if self.dataset.word_counts[x] <= 5:
feat = 'rare::%s' % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
idx.append(nr_feat)
return idx
def get_node_features(self, seq, pos, y):
all_feat = []
x = seq.x[pos]
if x not in self.node_feature_cache:
self.node_feature_cache[x] = {}
if y not in self.node_feature_cache[x]:
node_idx = []
node_idx = self.add_node_features(seq, pos, y, node_idx)
self.node_feature_cache[x][y] = node_idx
idx = self.node_feature_cache[x][y]
all_feat = idx[:]
if pos == 0:
if y not in self.initial_state_feature_cache:
init_idx = []
init_idx = self.add_init_state_features(seq, pos, y, init_idx)
self.initial_state_feature_cache[y] = init_idx
all_feat.extend(self.initial_state_feature_cache[y])
return all_feat
def add_init_state_features(self, seq, pos, y, init_idx):
y_name = self.dataset.int_to_pos[y]
feat = 'init_tag:%s' % y_name
nr_feat = self.add_feature(feat)
if nr_feat != -1:
init_idx.append(nr_feat)
return init_idx
def add_edge_features(self, seq, pos, y, y_prev, edge_idx):
y_name = self.dataset.int_to_pos[y]
y_prev_name = self.dataset.int_to_pos[y_prev]
if pos == len(seq.x) - 1:
feat = 'last_prev_tag:%s::%s' % (y_prev_name, y_name)
else:
feat = 'prev_tag:%s::%s' % (y_prev_name, y_name)
nr_feat = self.add_feature(feat)
if nr_feat != -1:
edge_idx.append(nr_feat)
return edge_idx
def get_edge_features(self, seq, pos, y, y_prev):
if pos == len(seq.x) - 1:
if y not in self.final_edge_feature_cache:
self.final_edge_feature_cache[y] = {}
if y_prev not in self.final_edge_feature_cache[y]:
edge_idx = []
edge = self.add_edge_features(seq, pos, y, y_prev, edge_idx)
self.final_edge_feature_cache[y][y_prev] = edge_idx
return self.final_edge_feature_cache[y][y_prev]
else:
if y not in self.edge_feature_cache:
self.edge_feature_cache[y] = {}
if y_prev not in self.edge_feature_cache[y]:
edge_idx = []
edge = self.add_edge_features(seq, pos, y, y_prev, edge_idx)
self.edge_feature_cache[y][y_prev] = edge_idx
return self.edge_feature_cache[y][y_prev]
def add_feature(self, feat):
if feat in self.feature_dic:
return self.feature_dic[feat]
if not self.add_features:
return -1
nr_feat = len(self.feature_dic.keys())
self.feature_dic[feat] = nr_feat
self.feature_names.append(feat)
return nr_feat
def get_sequence_feat_str(self, seq):
seq_nr = seq.nr
node_f_list = self.feature_list[seq_nr][0]
edge_f_list = self.feature_list[seq_nr][1]
word = seq.x[0]
word_n = self.dataset.int_to_word[word]
tag = seq.y[0]
tag_n = self.dataset.int_to_pos[tag]
txt = ''
for (i, tag) in enumerate(seq.y):
word = seq.x[i]
word_n = self.dataset.int_to_word[word]
tag_n = self.dataset.int_to_pos[tag]
txt += '%i %s/%s NF: ' % (i, word_n, tag_n)
for nf in node_f_list[i]:
txt += '%s ' % self.feature_names[nf]
if edge_f_list[i] != []:
txt += 'EF: '
for nf in edge_f_list[i]:
txt += '%s ' % self.feature_names[nf]
txt += '\n'
return txt
def print_sequence_features(self, seq):
txt = ''
for (i, tag) in enumerate(seq.y):
word = seq.x[i]
word_n = self.dataset.int_to_word[word]
tag_n = self.dataset.int_to_pos[tag]
txt += '%i %s/%s NF: ' % (i, word_n, tag_n)
prev_tag = seq.y[i - 1]
if i > 0:
edge_f_list = self.get_edge_features(seq, i, tag, prev_tag)
else:
edge_f_list = []
node_f_list = self.get_node_features(seq, i, tag)
for nf in node_f_list:
txt += '%s ' % self.feature_names[nf]
if edge_f_list != []:
txt += 'EF: '
for nf in edge_f_list:
txt += '%s ' % self.feature_names[nf]
txt += '\n'
return txt |
#!/usr/bin/env python3
VELOCITY_RANGE = range(1,127)
VELOCITY_PPP = 16
VELOCITY_PP = 32
VELOCITY_P = 48
VELOCITY_MP = 64
VELOCITY_MF = 80
VELOCITY_F = 96
VELOCITY_FF = 112
VELOCITY_FFF = 127
| velocity_range = range(1, 127)
velocity_ppp = 16
velocity_pp = 32
velocity_p = 48
velocity_mp = 64
velocity_mf = 80
velocity_f = 96
velocity_ff = 112
velocity_fff = 127 |
def test():
assert (
"from spacy.tokens import Doc" in __solution__
), "Are you importing the Doc class correctly?"
assert doc.text == "spaCy is cool!", "Are you sure you created the Doc correctly?"
assert "print(doc.text)" in __solution__, "Are you printing the Doc's text?"
__msg__.good("Well done!")
| def test():
assert 'from spacy.tokens import Doc' in __solution__, 'Are you importing the Doc class correctly?'
assert doc.text == 'spaCy is cool!', 'Are you sure you created the Doc correctly?'
assert 'print(doc.text)' in __solution__, "Are you printing the Doc's text?"
__msg__.good('Well done!') |
PORT = 8443
# name -> secret (32 hex chars)
USERS = {
"tg": "0123456789abcdef0123456789abcdef",
"tg2": "ad36e2fa0de7aca0d81c7c152fb06c80",
"tg3": "29075bb048ce065adf59cd67afa496e6",
"tg4": "0d7eac72cac961d9645f6515cd8c1afd",
"tg5": "8afbf4a2b7260e6b4ee8ee9b4c09c732",
}
MODES = {
# Classic mode, easy to detect
"classic": False,
# Makes the proxy harder to detect
# Can be incompatible with very old clients
"secure": True,
# Makes the proxy even more hard to detect
# Can be incompatible with old clients
"tls": True
}
# The domain for TLS mode, bad clients are proxied there
# Use random existing domain, proxy checks it on start
TLS_DOMAIN = "www.google.com"
# Tag for advertising, obtainable from @MTProxybot
# AD_TAG = "3c09c680b76ee91a4c25ad51f742267d"
| port = 8443
users = {'tg': '0123456789abcdef0123456789abcdef', 'tg2': 'ad36e2fa0de7aca0d81c7c152fb06c80', 'tg3': '29075bb048ce065adf59cd67afa496e6', 'tg4': '0d7eac72cac961d9645f6515cd8c1afd', 'tg5': '8afbf4a2b7260e6b4ee8ee9b4c09c732'}
modes = {'classic': False, 'secure': True, 'tls': True}
tls_domain = 'www.google.com' |
class vehicle:
def general_usage(self):
print('general use: transportation')
class Car(vehicle):
def __init__(self):
print("I am car")
self.wheels = 4
self.has_roof = True
def specific_usage(self):
self.general_usage()
print("Specific use: commute to work, vacation with family")
class MotorCycle(vehicle):
def __init__(self):
print("I am a motorcycle")
self.wheels = 2
self.has_roof = False
def specific_usage(self):
self.general_usage()
print("specific use: road trip, racing")
c = Car()
c.specific_usage()
m = MotorCycle()
m.specific_usage()
print(isinstance(c, MotorCycle))
print(issubclass(Car, MotorCycle))
| class Vehicle:
def general_usage(self):
print('general use: transportation')
class Car(vehicle):
def __init__(self):
print('I am car')
self.wheels = 4
self.has_roof = True
def specific_usage(self):
self.general_usage()
print('Specific use: commute to work, vacation with family')
class Motorcycle(vehicle):
def __init__(self):
print('I am a motorcycle')
self.wheels = 2
self.has_roof = False
def specific_usage(self):
self.general_usage()
print('specific use: road trip, racing')
c = car()
c.specific_usage()
m = motor_cycle()
m.specific_usage()
print(isinstance(c, MotorCycle))
print(issubclass(Car, MotorCycle)) |
LEGACY_TYPICAL_INPUT = {
"hrDates": [
"2019-12-16 08:24:36",
"2019-12-16 09:32:17",
"2019-12-16 14:53:35",
"2019-12-16 16:13:35",
"2019-12-16 19:23:28",
"2019-12-16 23:56:25",
],
"hrValues": ["74", "83", "89", "157", "95", "80"],
}
LEGACY_INCOMPLETE_INPUT = {
"hrDates": [
"2019-12-16 08:24:36",
"2019-12-16 14:53:35",
"2019-12-16 16:13:35",
"2019-12-16 19:23:28",
"2019-12-16 23:56:25",
],
"hrValues": ["74", "83", "89", "157"],
}
HR_TYPICAL_INPUT = {
"type": "Heart Rate",
"dates": [
"2019-12-16 08:24:36",
"2019-12-16 09:32:17",
"2019-12-16 14:53:35",
"2019-12-16 16:13:35",
"2019-12-16 19:23:28",
"2019-12-16 23:56:25",
],
"values": ["74", "83", "89", "157", "95", "80"],
}
RESTING_HR_INPUT = {
"type": "Resting Heart Rate",
"dates": ["2021-04-10 09:21:56", "2021-04-11 13:45:10", "2021-04-12 08:04:01"],
"values": ["60", "59", "62"],
}
HRV_INPUT = {
"type": "Heart Rate Variability",
"dates": ["2021-04-05 08:05:20", "2021-04-08 13:45:10", "2021-04-10 08:04:01"],
"values": ["56.8018104501229", "55.24012710371946", "95.81946194801212"],
}
FLIGHTS_INPUT = {
"type": "Flights Climbed",
"dates": ["2021-04-05 09:21:00", "2021-04-05 09:21:00", "2021-04-05 11:20:38"],
"values": ["1", "1", "2"],
}
STEPS_INPUT = {
"type": "Steps",
"dates": ["2021-04-10 09:20:10", "2021-04-10 13:14:00", "2021-04-10 23:10:59"],
"values": ["34", "50", "10"],
}
CYCLING_INPUT = {
"type": "Cycling Distance",
"dates": ["2021-04-13 23:29:00"],
"values": ["15.4"],
}
HR_ONE_ITEM_INPUT = {
"type": "Heart Rate",
"dates": "2019-12-16 08:24:36",
"values": "74",
}
GENERIC_INPUT = {
"type": "Memes Sent",
"dates": ["2021-04-13 23:29:00"],
"values": ["90"],
}
| legacy_typical_input = {'hrDates': ['2019-12-16 08:24:36', '2019-12-16 09:32:17', '2019-12-16 14:53:35', '2019-12-16 16:13:35', '2019-12-16 19:23:28', '2019-12-16 23:56:25'], 'hrValues': ['74', '83', '89', '157', '95', '80']}
legacy_incomplete_input = {'hrDates': ['2019-12-16 08:24:36', '2019-12-16 14:53:35', '2019-12-16 16:13:35', '2019-12-16 19:23:28', '2019-12-16 23:56:25'], 'hrValues': ['74', '83', '89', '157']}
hr_typical_input = {'type': 'Heart Rate', 'dates': ['2019-12-16 08:24:36', '2019-12-16 09:32:17', '2019-12-16 14:53:35', '2019-12-16 16:13:35', '2019-12-16 19:23:28', '2019-12-16 23:56:25'], 'values': ['74', '83', '89', '157', '95', '80']}
resting_hr_input = {'type': 'Resting Heart Rate', 'dates': ['2021-04-10 09:21:56', '2021-04-11 13:45:10', '2021-04-12 08:04:01'], 'values': ['60', '59', '62']}
hrv_input = {'type': 'Heart Rate Variability', 'dates': ['2021-04-05 08:05:20', '2021-04-08 13:45:10', '2021-04-10 08:04:01'], 'values': ['56.8018104501229', '55.24012710371946', '95.81946194801212']}
flights_input = {'type': 'Flights Climbed', 'dates': ['2021-04-05 09:21:00', '2021-04-05 09:21:00', '2021-04-05 11:20:38'], 'values': ['1', '1', '2']}
steps_input = {'type': 'Steps', 'dates': ['2021-04-10 09:20:10', '2021-04-10 13:14:00', '2021-04-10 23:10:59'], 'values': ['34', '50', '10']}
cycling_input = {'type': 'Cycling Distance', 'dates': ['2021-04-13 23:29:00'], 'values': ['15.4']}
hr_one_item_input = {'type': 'Heart Rate', 'dates': '2019-12-16 08:24:36', 'values': '74'}
generic_input = {'type': 'Memes Sent', 'dates': ['2021-04-13 23:29:00'], 'values': ['90']} |
num1 = 10
num2 = 20
string = "Hello World"
isTrue = True
print(num1 + num2)
print(isTrue)
print(string)
| num1 = 10
num2 = 20
string = 'Hello World'
is_true = True
print(num1 + num2)
print(isTrue)
print(string) |
def find_min_max(nums):
mini = maxi = nums[0]
for num in nums[1:]:
if num < mini:
mini = num
continue
elif num > maxi:
maxi = num
return mini, maxi
# Tests
assert find_min_max([4, 3, 1, 2, 5]) == (1, 5)
| def find_min_max(nums):
mini = maxi = nums[0]
for num in nums[1:]:
if num < mini:
mini = num
continue
elif num > maxi:
maxi = num
return (mini, maxi)
assert find_min_max([4, 3, 1, 2, 5]) == (1, 5) |
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
class ClassSink:
async def sink(self, argument):
pass
class ClassSource:
async def source(self):
pass
def test(class_sink: ClassSink, class_source: ClassSource):
class_sink.sink(class_source.source())
| class Classsink:
async def sink(self, argument):
pass
class Classsource:
async def source(self):
pass
def test(class_sink: ClassSink, class_source: ClassSource):
class_sink.sink(class_source.source()) |
class Solution:
def getRange(self, arr, target):
left = self.bin_search(arr, 0, len(arr)-1, target, find_min=True)
right = self.bin_search(arr, 0, len(arr)-1, target, find_min=False)
return [left, right]
def bin_search(self, arr, low, high, target, find_min):
while low <= high:
mid = (high + low) / 2
if arr[mid] == target:
if find_min and self.is_equal_previous(arr, mid):
high = mid - 1
elif not find_min and self.is_equal_next(arr, mid):
low = mid + 1
else:
return mid
else:
if arr[mid] < target:
low = mid + 1
else:
high = mid - 1
return -1
def is_equal_previous(self, arr, index):
return (index-1 >= 0 and arr[index-1] == arr[index])
def is_equal_next(self, arr, index):
return (index+1 < len(arr) and arr[index+1] == arr[index])
| class Solution:
def get_range(self, arr, target):
left = self.bin_search(arr, 0, len(arr) - 1, target, find_min=True)
right = self.bin_search(arr, 0, len(arr) - 1, target, find_min=False)
return [left, right]
def bin_search(self, arr, low, high, target, find_min):
while low <= high:
mid = (high + low) / 2
if arr[mid] == target:
if find_min and self.is_equal_previous(arr, mid):
high = mid - 1
elif not find_min and self.is_equal_next(arr, mid):
low = mid + 1
else:
return mid
elif arr[mid] < target:
low = mid + 1
else:
high = mid - 1
return -1
def is_equal_previous(self, arr, index):
return index - 1 >= 0 and arr[index - 1] == arr[index]
def is_equal_next(self, arr, index):
return index + 1 < len(arr) and arr[index + 1] == arr[index] |
class A:
def __init__(self):
print('A class call ')
class B(A):
def __init__(self):
print('B class call')
A.__init__(self)
class C(A):
def __init__(self):
print('C class call')
A.__init__(self)
class D(B,C):
def __init__(self):
print('D class call')
B.__init__(self)
C.__init__(self)
d=D() | class A:
def __init__(self):
print('A class call ')
class B(A):
def __init__(self):
print('B class call')
A.__init__(self)
class C(A):
def __init__(self):
print('C class call')
A.__init__(self)
class D(B, C):
def __init__(self):
print('D class call')
B.__init__(self)
C.__init__(self)
d = d() |
def functionA():
print("This is a testing script")
if __name__ == '__main__':
functionA()
#functionB() | def function_a():
print('This is a testing script')
if __name__ == '__main__':
function_a() |
'''
02 - Stacked bar chart
A stacked bar chart contains bars, where the height of each bar represents values.
In addition, stacked on top of the first variable may be another variable.
The additional height of this bar represents the value of this variable. And you can
add more bars on top of that.
In this exercise, you will have access to a DataFrame called medals that contains an index
that holds the names of different countries, and three columns: "Gold", "Silver" and "Bronze".
You will also have a Figure, fig, and Axes, ax, that you can add data to.
You will create a stacked bar chart that shows the number of gold, silver, and bronze medals
won by each country, and you will add labels and create a legend that indicates which bars
represent which medals.
Instructions:
- Call the ax.bar method to add the "Gold" medals. Call it with the label set to "Gold".
- Call the ax.bar method to stack "Silver" bars on top of that, using the bottom key-word argument
so the bottom of the bars will be on top of the gold medal bars, and label to add the label "Silver".
- Use ax.bar to add "Bronze" bars on top of that, using the bottom key-word and label it as "Bronze".
'''
# Add bars for "Gold" with the label "Gold"
ax.bar(medals.index, medals['Gold'], label='Gold')
# Stack bars for "Silver" on top with label "Silver"
ax.bar(medals.index, medals['Silver'], bottom=medals['Gold'], label='Silver')
# Stack bars for "Bronze" on top of that with label "Bronze"
ax.bar(medals.index, medals['Bronze'], bottom=medals['Gold'] + medals['Silver'], label='Bronze')
# Display the legend
ax.legend()
plt.show() | """
02 - Stacked bar chart
A stacked bar chart contains bars, where the height of each bar represents values.
In addition, stacked on top of the first variable may be another variable.
The additional height of this bar represents the value of this variable. And you can
add more bars on top of that.
In this exercise, you will have access to a DataFrame called medals that contains an index
that holds the names of different countries, and three columns: "Gold", "Silver" and "Bronze".
You will also have a Figure, fig, and Axes, ax, that you can add data to.
You will create a stacked bar chart that shows the number of gold, silver, and bronze medals
won by each country, and you will add labels and create a legend that indicates which bars
represent which medals.
Instructions:
- Call the ax.bar method to add the "Gold" medals. Call it with the label set to "Gold".
- Call the ax.bar method to stack "Silver" bars on top of that, using the bottom key-word argument
so the bottom of the bars will be on top of the gold medal bars, and label to add the label "Silver".
- Use ax.bar to add "Bronze" bars on top of that, using the bottom key-word and label it as "Bronze".
"""
ax.bar(medals.index, medals['Gold'], label='Gold')
ax.bar(medals.index, medals['Silver'], bottom=medals['Gold'], label='Silver')
ax.bar(medals.index, medals['Bronze'], bottom=medals['Gold'] + medals['Silver'], label='Bronze')
ax.legend()
plt.show() |
# This program also demonstrates a simple for
# loop that uses a list of numbers.
print('I will display the odd numbers 1 through 9.')
for num in [1, 3, 5, 7, 9]:
print(num)
| print('I will display the odd numbers 1 through 9.')
for num in [1, 3, 5, 7, 9]:
print(num) |
# Q S M L
# Error Class
# michaelpeterswa 2020
class QSMLError(Exception):
def __init__(self, message, line):
self.message = message
self.line = line
def __str__(self):
msg = self.message
line = self.line
return "%s at line %i" % (msg, line)
| class Qsmlerror(Exception):
def __init__(self, message, line):
self.message = message
self.line = line
def __str__(self):
msg = self.message
line = self.line
return '%s at line %i' % (msg, line) |
class Solution:
def search(self, nums: list[int], target: int) -> int:
L, H = 0, len(nums)
while L < H:
M = (L+H) // 2
if (target < nums[0]) and (nums[0] < nums[M]): # -inf
L = M+1
elif (target >= nums[0]) and (nums[0] > nums[M]): # +inf
H = M
elif nums[M] < target:
L = M+1
elif nums[M] > target:
H = M
else:
return M
return -1
nums = [4, 0, 2]
target = 0
s = Solution()
print(s.search(nums, target))
# Very Important Idea
# If nums[mid] and target are "on the same side" of nums[0],
# we just take nums[mid]. Otherwise we use -infinity or +infinity as needed.
# Input: nums = [4,5,6,7,0,1,2], target = 0
# Output: 4
# L = 0 and H = 7
# M = (0 + 7) // 2 = 3
| class Solution:
def search(self, nums: list[int], target: int) -> int:
(l, h) = (0, len(nums))
while L < H:
m = (L + H) // 2
if target < nums[0] and nums[0] < nums[M]:
l = M + 1
elif target >= nums[0] and nums[0] > nums[M]:
h = M
elif nums[M] < target:
l = M + 1
elif nums[M] > target:
h = M
else:
return M
return -1
nums = [4, 0, 2]
target = 0
s = solution()
print(s.search(nums, target)) |
class OperationNotSupported(Exception):
def __init__(self, msg):
super().__init__(msg)
class CompilationError(Exception):
def __init__(self, msg):
super().__init__(msg)
| class Operationnotsupported(Exception):
def __init__(self, msg):
super().__init__(msg)
class Compilationerror(Exception):
def __init__(self, msg):
super().__init__(msg) |
valor = int(input())
impar = 0
for c in range(0, valor+1):
if c % 2 != 0:
print(c)
| valor = int(input())
impar = 0
for c in range(0, valor + 1):
if c % 2 != 0:
print(c) |
D = { 'UUU' : 'F', 'CUU' : 'L', 'AUU' : 'I', 'GUU' : 'V',
'UUC' : 'F', 'CUC' : 'L', 'AUC' : 'I', 'GUC' : 'V',
'UUA' : 'L', 'CUA' : 'L', 'AUA' : 'I', 'GUA' : 'V',
'UUG' : 'L', 'CUG' : 'L', 'AUG' : 'M', 'GUG' : 'V',
'UCU' : 'S', 'CCU' : 'P', 'ACU' : 'T', 'GCU' : 'A',
'UCC' : 'S', 'CCC' : 'P', 'ACC' : 'T', 'GCC' : 'A',
'UCA' : 'S', 'CCA' : 'P', 'ACA' : 'T', 'GCA' : 'A',
'UCG' : 'S', 'CCG' : 'P', 'ACG' : 'T', 'GCG' : 'A',
'UAU' : 'Y', 'CAU' : 'H', 'AAU' : 'N', 'GAU' : 'D',
'UAC' : 'Y', 'CAC' : 'H', 'AAC' : 'N', 'GAC' : 'D',
'UAA' : 'Stop', 'CAA' : 'Q', 'AAA' : 'K', 'GAA' : 'E',
'UAG' : 'Stop', 'CAG' : 'Q', 'AAG' : 'K', 'GAG' : 'E',
'UGU' : 'C', 'CGU' : 'R', 'AGU' : 'S', 'GGU' : 'G',
'UGC' : 'C', 'CGC' : 'R', 'AGC' : 'S', 'GGC' : 'G',
'UGA' : 'Stop', 'CGA' : 'R', 'AGA' : 'R', 'GGA' : 'G',
'UGG' : 'W', 'CGG' : 'R', 'AGG' : 'R', 'GGG' : 'G' }
#f=open('t.txt','r')
#l = f.readlines()
l='MA'
f = 1
for i in range(1,len(l)):
letter = l[i]
c = 0
for j in D.values():
if(j==letter):
c = c+1
f = f*c
print((f*3)%1000000)
| d = {'UUU': 'F', 'CUU': 'L', 'AUU': 'I', 'GUU': 'V', 'UUC': 'F', 'CUC': 'L', 'AUC': 'I', 'GUC': 'V', 'UUA': 'L', 'CUA': 'L', 'AUA': 'I', 'GUA': 'V', 'UUG': 'L', 'CUG': 'L', 'AUG': 'M', 'GUG': 'V', 'UCU': 'S', 'CCU': 'P', 'ACU': 'T', 'GCU': 'A', 'UCC': 'S', 'CCC': 'P', 'ACC': 'T', 'GCC': 'A', 'UCA': 'S', 'CCA': 'P', 'ACA': 'T', 'GCA': 'A', 'UCG': 'S', 'CCG': 'P', 'ACG': 'T', 'GCG': 'A', 'UAU': 'Y', 'CAU': 'H', 'AAU': 'N', 'GAU': 'D', 'UAC': 'Y', 'CAC': 'H', 'AAC': 'N', 'GAC': 'D', 'UAA': 'Stop', 'CAA': 'Q', 'AAA': 'K', 'GAA': 'E', 'UAG': 'Stop', 'CAG': 'Q', 'AAG': 'K', 'GAG': 'E', 'UGU': 'C', 'CGU': 'R', 'AGU': 'S', 'GGU': 'G', 'UGC': 'C', 'CGC': 'R', 'AGC': 'S', 'GGC': 'G', 'UGA': 'Stop', 'CGA': 'R', 'AGA': 'R', 'GGA': 'G', 'UGG': 'W', 'CGG': 'R', 'AGG': 'R', 'GGG': 'G'}
l = 'MA'
f = 1
for i in range(1, len(l)):
letter = l[i]
c = 0
for j in D.values():
if j == letter:
c = c + 1
f = f * c
print(f * 3 % 1000000) |
# See also examples/example_track/track_meta.py for a longer, commented example
track = dict(
author_username='alexisbcook',
course_name='Data Visualization',
course_url='https://www.kaggle.com/learn/data-visualization',
course_forum_url='https://www.kaggle.com/learn-forum/161291'
)
lessons = [{'topic': topic_name} for topic_name in
['Hello, Seaborn',
'Line Charts',
'Bar Charts and Heatmaps',
'Scatter Plots',
'Distributions',
'Choosing Plot Types and Custom Styles',
'Final Project',
'Creating Your Own Notebooks']
]
notebooks = [
dict(
filename='tut1.ipynb',
lesson_idx=0,
type='tutorial',
),
dict(
filename='ex1.ipynb',
lesson_idx=0,
type='exercise',
scriptid=3303713
),
dict(
filename='tut2.ipynb',
lesson_idx=1,
type='tutorial',
),
dict(
filename='ex2.ipynb',
lesson_idx=1,
type='exercise',
scriptid=3303716
),
dict(
filename='tut3.ipynb',
lesson_idx=2,
type='tutorial',
),
dict(
filename='ex3.ipynb',
lesson_idx=2,
type='exercise',
scriptid=2951537
),
dict(
filename='tut4.ipynb',
lesson_idx=3,
type='tutorial',
),
dict(
filename='ex4.ipynb',
lesson_idx=3,
type='exercise',
scriptid=2951535
),
dict(
filename='tut5.ipynb',
lesson_idx=4,
type='tutorial',
),
dict(
filename='ex5.ipynb',
lesson_idx=4,
type='exercise',
scriptid=2951534
),
dict(
filename='tut6.ipynb',
lesson_idx=5,
type='tutorial',
),
dict(
filename='ex6.ipynb',
lesson_idx=5,
type='exercise',
scriptid=2959763
),
dict(
filename='tut7.ipynb',
lesson_idx=6,
type='tutorial',
),
dict(
filename='ex7.ipynb',
lesson_idx=6,
type='exercise',
scriptid=2951523
),
dict(
filename='tut8.ipynb',
lesson_idx=7,
type='tutorial',
),
]
for nb in notebooks:
nb['dataset_sources'] = ["alexisbcook/data-for-datavis"]
if "ex7" in nb['filename']:
nb['dataset_sources'] = []
| track = dict(author_username='alexisbcook', course_name='Data Visualization', course_url='https://www.kaggle.com/learn/data-visualization', course_forum_url='https://www.kaggle.com/learn-forum/161291')
lessons = [{'topic': topic_name} for topic_name in ['Hello, Seaborn', 'Line Charts', 'Bar Charts and Heatmaps', 'Scatter Plots', 'Distributions', 'Choosing Plot Types and Custom Styles', 'Final Project', 'Creating Your Own Notebooks']]
notebooks = [dict(filename='tut1.ipynb', lesson_idx=0, type='tutorial'), dict(filename='ex1.ipynb', lesson_idx=0, type='exercise', scriptid=3303713), dict(filename='tut2.ipynb', lesson_idx=1, type='tutorial'), dict(filename='ex2.ipynb', lesson_idx=1, type='exercise', scriptid=3303716), dict(filename='tut3.ipynb', lesson_idx=2, type='tutorial'), dict(filename='ex3.ipynb', lesson_idx=2, type='exercise', scriptid=2951537), dict(filename='tut4.ipynb', lesson_idx=3, type='tutorial'), dict(filename='ex4.ipynb', lesson_idx=3, type='exercise', scriptid=2951535), dict(filename='tut5.ipynb', lesson_idx=4, type='tutorial'), dict(filename='ex5.ipynb', lesson_idx=4, type='exercise', scriptid=2951534), dict(filename='tut6.ipynb', lesson_idx=5, type='tutorial'), dict(filename='ex6.ipynb', lesson_idx=5, type='exercise', scriptid=2959763), dict(filename='tut7.ipynb', lesson_idx=6, type='tutorial'), dict(filename='ex7.ipynb', lesson_idx=6, type='exercise', scriptid=2951523), dict(filename='tut8.ipynb', lesson_idx=7, type='tutorial')]
for nb in notebooks:
nb['dataset_sources'] = ['alexisbcook/data-for-datavis']
if 'ex7' in nb['filename']:
nb['dataset_sources'] = [] |
m50 = maior = m = 0
qtd = int(input('Quantas pessoas deseja cadastrar? '))
for c in range(0, qtd):
x = int(input(f'Idade {c+1}: '))
if x >= 50:
m50 += 1
m = m + x
if x >= maior:
maior = x
print(f'Qtd de pessoas +50: {m50}')
print(f'Media de idades: {m/qtd:.2f}')
print(f'Mais velha: {maior}')
| m50 = maior = m = 0
qtd = int(input('Quantas pessoas deseja cadastrar? '))
for c in range(0, qtd):
x = int(input(f'Idade {c + 1}: '))
if x >= 50:
m50 += 1
m = m + x
if x >= maior:
maior = x
print(f'Qtd de pessoas +50: {m50}')
print(f'Media de idades: {m / qtd:.2f}')
print(f'Mais velha: {maior}') |
#
# PySNMP MIB module APPACCELERATION-SMI (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/APPACCELERATION-SMI
# Produced by pysmi-0.3.4 at Wed May 1 11:23:30 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ConstraintsUnion")
citrix, ModuleIdentity, ObjectIdentity = mibBuilder.importSymbols("CITRIX-COMMON-MIB", "citrix", "ModuleIdentity", "ObjectIdentity")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Gauge32, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, MibIdentifier, Unsigned32, NotificationType, IpAddress, ModuleIdentity, ObjectIdentity, iso, Counter32, Integer32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "MibIdentifier", "Unsigned32", "NotificationType", "IpAddress", "ModuleIdentity", "ObjectIdentity", "iso", "Counter32", "Integer32", "TimeTicks")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
appAcceleration = ModuleIdentity((1, 3, 6, 1, 4, 1, 3845, 30))
if mibBuilder.loadTexts: appAcceleration.setLastUpdated('200905110000Z')
if mibBuilder.loadTexts: appAcceleration.setOrganization('www.citrix.com')
if mibBuilder.loadTexts: appAcceleration.setContactInfo(' Citrix Systems, Inc. Postal: 851 West Cypress Creek Road Fort Lauderdale, Florida 33309 United States')
if mibBuilder.loadTexts: appAcceleration.setDescription('The Structure of Management Information for the Citrix Systems Application Acceleration.')
appAccelerationProducts = ObjectIdentity((1, 3, 6, 1, 4, 1, 3845, 30, 1))
if mibBuilder.loadTexts: appAccelerationProducts.setStatus('current')
if mibBuilder.loadTexts: appAccelerationProducts.setDescription('appAccelerationProducts is the root OBJECT IDENTIFIER from which sysObjectID values are assigned. Actual values are defined in APPACCELERATION-PRODUCTS-MIB.')
appAccelerationAgentCapability = ObjectIdentity((1, 3, 6, 1, 4, 1, 3845, 30, 2))
if mibBuilder.loadTexts: appAccelerationAgentCapability.setStatus('current')
if mibBuilder.loadTexts: appAccelerationAgentCapability.setDescription('appAccelerationAgentCapability provides a root object identifier from which AGENT-CAPABILITIES values may be assigned.')
appAccelerationModules = ObjectIdentity((1, 3, 6, 1, 4, 1, 3845, 30, 3))
if mibBuilder.loadTexts: appAccelerationModules.setStatus('current')
if mibBuilder.loadTexts: appAccelerationModules.setDescription('appAccelerationModules provides a root object identifier from which MODULE-ENTITY values may be assigned.')
appAccelerationMgmt = ObjectIdentity((1, 3, 6, 1, 4, 1, 3845, 30, 4))
if mibBuilder.loadTexts: appAccelerationMgmt.setStatus('current')
if mibBuilder.loadTexts: appAccelerationMgmt.setDescription('appAccelerationMgmt is the main subtree for management mibs.')
appAccelerationNotifications = ObjectIdentity((1, 3, 6, 1, 4, 1, 3845, 30, 5))
if mibBuilder.loadTexts: appAccelerationNotifications.setStatus('current')
if mibBuilder.loadTexts: appAccelerationNotifications.setDescription('appAccelerationNotifications is the main subtree for agent notifications.')
mibBuilder.exportSymbols("APPACCELERATION-SMI", appAccelerationNotifications=appAccelerationNotifications, PYSNMP_MODULE_ID=appAcceleration, appAccelerationMgmt=appAccelerationMgmt, appAccelerationProducts=appAccelerationProducts, appAccelerationModules=appAccelerationModules, appAcceleration=appAcceleration, appAccelerationAgentCapability=appAccelerationAgentCapability)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, single_value_constraint, value_size_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ConstraintsUnion')
(citrix, module_identity, object_identity) = mibBuilder.importSymbols('CITRIX-COMMON-MIB', 'citrix', 'ModuleIdentity', 'ObjectIdentity')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(gauge32, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, mib_identifier, unsigned32, notification_type, ip_address, module_identity, object_identity, iso, counter32, integer32, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'MibIdentifier', 'Unsigned32', 'NotificationType', 'IpAddress', 'ModuleIdentity', 'ObjectIdentity', 'iso', 'Counter32', 'Integer32', 'TimeTicks')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
app_acceleration = module_identity((1, 3, 6, 1, 4, 1, 3845, 30))
if mibBuilder.loadTexts:
appAcceleration.setLastUpdated('200905110000Z')
if mibBuilder.loadTexts:
appAcceleration.setOrganization('www.citrix.com')
if mibBuilder.loadTexts:
appAcceleration.setContactInfo(' Citrix Systems, Inc. Postal: 851 West Cypress Creek Road Fort Lauderdale, Florida 33309 United States')
if mibBuilder.loadTexts:
appAcceleration.setDescription('The Structure of Management Information for the Citrix Systems Application Acceleration.')
app_acceleration_products = object_identity((1, 3, 6, 1, 4, 1, 3845, 30, 1))
if mibBuilder.loadTexts:
appAccelerationProducts.setStatus('current')
if mibBuilder.loadTexts:
appAccelerationProducts.setDescription('appAccelerationProducts is the root OBJECT IDENTIFIER from which sysObjectID values are assigned. Actual values are defined in APPACCELERATION-PRODUCTS-MIB.')
app_acceleration_agent_capability = object_identity((1, 3, 6, 1, 4, 1, 3845, 30, 2))
if mibBuilder.loadTexts:
appAccelerationAgentCapability.setStatus('current')
if mibBuilder.loadTexts:
appAccelerationAgentCapability.setDescription('appAccelerationAgentCapability provides a root object identifier from which AGENT-CAPABILITIES values may be assigned.')
app_acceleration_modules = object_identity((1, 3, 6, 1, 4, 1, 3845, 30, 3))
if mibBuilder.loadTexts:
appAccelerationModules.setStatus('current')
if mibBuilder.loadTexts:
appAccelerationModules.setDescription('appAccelerationModules provides a root object identifier from which MODULE-ENTITY values may be assigned.')
app_acceleration_mgmt = object_identity((1, 3, 6, 1, 4, 1, 3845, 30, 4))
if mibBuilder.loadTexts:
appAccelerationMgmt.setStatus('current')
if mibBuilder.loadTexts:
appAccelerationMgmt.setDescription('appAccelerationMgmt is the main subtree for management mibs.')
app_acceleration_notifications = object_identity((1, 3, 6, 1, 4, 1, 3845, 30, 5))
if mibBuilder.loadTexts:
appAccelerationNotifications.setStatus('current')
if mibBuilder.loadTexts:
appAccelerationNotifications.setDescription('appAccelerationNotifications is the main subtree for agent notifications.')
mibBuilder.exportSymbols('APPACCELERATION-SMI', appAccelerationNotifications=appAccelerationNotifications, PYSNMP_MODULE_ID=appAcceleration, appAccelerationMgmt=appAccelerationMgmt, appAccelerationProducts=appAccelerationProducts, appAccelerationModules=appAccelerationModules, appAcceleration=appAcceleration, appAccelerationAgentCapability=appAccelerationAgentCapability) |
# https://atcoder.jp/contests/arc016/tasks/arc016_2
N = int(input())
count = 0
fumen = []
for _ in range(N):
fumen.append([s for s in input()])
for c in range(9):
uncount_flag = False
for r in range(N):
if fumen[r][c] == 'x':
count += 1
uncount_flag = False
continue
if fumen[r][c] == 'o' and not uncount_flag:
count += 1
uncount_flag = True
continue
if fumen[r][c] == 'o' and uncount_flag:
continue
uncount_flag = False
print(count)
| n = int(input())
count = 0
fumen = []
for _ in range(N):
fumen.append([s for s in input()])
for c in range(9):
uncount_flag = False
for r in range(N):
if fumen[r][c] == 'x':
count += 1
uncount_flag = False
continue
if fumen[r][c] == 'o' and (not uncount_flag):
count += 1
uncount_flag = True
continue
if fumen[r][c] == 'o' and uncount_flag:
continue
uncount_flag = False
print(count) |
def print_matrix(m):
for i in range(len(m)):
print(m[i])
def m():
matrix = list()
n = int(input())
for i in range(n):
row = input().split()
row = list(map(int, row))
matrix.append(row)
get_diagonal(matrix)
def get_diagonal(m):
result = list()
for row in range(len(m)):
for j in range(len(m[row])):
if row == j:
result.append(m[row][j])
for i in range(len(result)):
print(result[i], end = ' ')
m()
| def print_matrix(m):
for i in range(len(m)):
print(m[i])
def m():
matrix = list()
n = int(input())
for i in range(n):
row = input().split()
row = list(map(int, row))
matrix.append(row)
get_diagonal(matrix)
def get_diagonal(m):
result = list()
for row in range(len(m)):
for j in range(len(m[row])):
if row == j:
result.append(m[row][j])
for i in range(len(result)):
print(result[i], end=' ')
m() |
# help.py
# Metadata
NAME = 'help'
ENABLE = True
PATTERN = '^!help\s*(?P<module_name>.*)$'
USAGE = '''Usage: !help [<module_name> | all]
Either list all the modules or provide the usage message for a particular
module.
'''
# Command
async def help(bot, message, module_name=None):
responses = []
if not module_name or module_name == 'all':
responses = sorted([m.NAME for m in bot.modules])
else:
for module in bot.modules:
if module.NAME == module_name:
responses = module.USAGE.splitlines()
# Suggest responses if none match
if not responses:
responses = sorted([m.NAME for m in bot.modules if module_name in m.NAME])
return [message.copy(body=r, notice=True) for r in responses]
# Register
def register(bot):
return (
('command', PATTERN, help),
)
# vim: set sts=4 sw=4 ts=8 expandtab ft=python:
| name = 'help'
enable = True
pattern = '^!help\\s*(?P<module_name>.*)$'
usage = 'Usage: !help [<module_name> | all]\nEither list all the modules or provide the usage message for a particular\nmodule.\n'
async def help(bot, message, module_name=None):
responses = []
if not module_name or module_name == 'all':
responses = sorted([m.NAME for m in bot.modules])
else:
for module in bot.modules:
if module.NAME == module_name:
responses = module.USAGE.splitlines()
if not responses:
responses = sorted([m.NAME for m in bot.modules if module_name in m.NAME])
return [message.copy(body=r, notice=True) for r in responses]
def register(bot):
return (('command', PATTERN, help),) |
k ,m= 0,0
while True:
try:
line = str(input())
except:
break
if line[0] == '+':
m +=1
elif line[0] == '-':
m -= 1
else:
k += m*len(line[line.index(':')+1::])
print(k)
| (k, m) = (0, 0)
while True:
try:
line = str(input())
except:
break
if line[0] == '+':
m += 1
elif line[0] == '-':
m -= 1
else:
k += m * len(line[line.index(':') + 1:])
print(k) |
dataset_type = 'SIXrayDataset'
data_root = 'datasets/sixray/'
img_norm_cfg = dict(
mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
albu_transforms = [
#dict(type='Equalize',mode='cv',by_channels=False)
#dict(type='Blur')
#dict(type='JpegCompression', quality_lower=10, quality_upper=11)
]
train_pipeline = [
dict(type='LoadImageFromFile'),
dict(type='LoadAnnotations', with_bbox=True),
#dict(type='custom_MixUp', mixUp_prob=0.5),
dict(type='custom_CutMix', cutMix_prob=0.5, class_targets={1:2, 2:1}),
#dict(type='custom_bboxMixUp', mixUp_prob=0.5),
dict(type='Resize', img_scale=(1333, 800), keep_ratio=True),
dict(type='RandomFlip', flip_ratio=0.0),
#dict(type='RandomFlip', flip_ratio=0.5),
#dict(type='Albu', transforms=albu_transforms),
#dict(type='custom_RandomCrop',crop_type='relative_range', crop_size=(0.75, 0.75)),
#dict(type='Rotate',level=10),
dict(type='Normalize', **img_norm_cfg),
dict(type='Pad', size_divisor=32),
dict(type='DefaultFormatBundle'),
dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels']),
]
test_pipeline = [
dict(type='LoadImageFromFile'),
dict(
type='MultiScaleFlipAug',
img_scale=(1333, 800),
flip=False,
transforms=[
dict(type='Resize', keep_ratio=True),
dict(type='RandomFlip'),
dict(type='Normalize', **img_norm_cfg),
dict(type='Pad', size_divisor=32),
dict(type='ImageToTensor', keys=['img']),
dict(type='Collect', keys=['img']),
])
]
data = dict(
samples_per_gpu=2,
workers_per_gpu=2,
train=dict(
type=dataset_type,
ann_file=data_root + 'annotations/instances_train2017.json',
img_prefix=data_root + 'train2017/',
pipeline=train_pipeline),
val=dict(
type=dataset_type,
ann_file=data_root + 'annotations/instances_val2017.json',
img_prefix=data_root + 'val2017/',
pipeline=test_pipeline),
test=dict(
type=dataset_type,
ann_file=data_root + 'annotations/instances_test2017.json',
img_prefix=data_root + 'test2017/',
pipeline=test_pipeline))
evaluation = dict(interval=1, metric='bbox')
| dataset_type = 'SIXrayDataset'
data_root = 'datasets/sixray/'
img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
albu_transforms = []
train_pipeline = [dict(type='LoadImageFromFile'), dict(type='LoadAnnotations', with_bbox=True), dict(type='custom_CutMix', cutMix_prob=0.5, class_targets={1: 2, 2: 1}), dict(type='Resize', img_scale=(1333, 800), keep_ratio=True), dict(type='RandomFlip', flip_ratio=0.0), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size_divisor=32), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels'])]
test_pipeline = [dict(type='LoadImageFromFile'), dict(type='MultiScaleFlipAug', img_scale=(1333, 800), flip=False, transforms=[dict(type='Resize', keep_ratio=True), dict(type='RandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size_divisor=32), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img'])])]
data = dict(samples_per_gpu=2, workers_per_gpu=2, train=dict(type=dataset_type, ann_file=data_root + 'annotations/instances_train2017.json', img_prefix=data_root + 'train2017/', pipeline=train_pipeline), val=dict(type=dataset_type, ann_file=data_root + 'annotations/instances_val2017.json', img_prefix=data_root + 'val2017/', pipeline=test_pipeline), test=dict(type=dataset_type, ann_file=data_root + 'annotations/instances_test2017.json', img_prefix=data_root + 'test2017/', pipeline=test_pipeline))
evaluation = dict(interval=1, metric='bbox') |
def solution(yourLeft, yourRight, friendsLeft, friendsRight):
'''
EXPLANATION
-------------------------------------------------------------------
Since all values are in question in this problem, I sort both
arrays, and then compare the resultant arrays.
-------------------------------------------------------------------
'''
a = sorted([yourLeft, yourRight])
b = sorted([friendsLeft, friendsRight])
return a == b
def oneline(yourLeft, yourRight, friendsLeft, friendsRight):
'''
EXPLANATION
-------------------------------------------------------------------
chris_l65 from the United States utilized the fact that sets are
displayed as sorted to turn the problem into a one line solution.
Their solution and mine vary under the hood of Python, but the end
result in this context is the same.
-------------------------------------------------------------------
'''
return {yourLeft, yourRight} == {friendsLeft, friendsRight}
| def solution(yourLeft, yourRight, friendsLeft, friendsRight):
"""
EXPLANATION
-------------------------------------------------------------------
Since all values are in question in this problem, I sort both
arrays, and then compare the resultant arrays.
-------------------------------------------------------------------
"""
a = sorted([yourLeft, yourRight])
b = sorted([friendsLeft, friendsRight])
return a == b
def oneline(yourLeft, yourRight, friendsLeft, friendsRight):
"""
EXPLANATION
-------------------------------------------------------------------
chris_l65 from the United States utilized the fact that sets are
displayed as sorted to turn the problem into a one line solution.
Their solution and mine vary under the hood of Python, but the end
result in this context is the same.
-------------------------------------------------------------------
"""
return {yourLeft, yourRight} == {friendsLeft, friendsRight} |
# Filename:continue.py
while True:
s = input("Just input something:")
if s != "quit":
continue
break
| while True:
s = input('Just input something:')
if s != 'quit':
continue
break |
# Python - 3.6.0
Test.assert_equals(fib(1), 0, 'fib(1) failed')
Test.assert_equals(fib(2), 1, 'fib(2) failed')
Test.assert_equals(fib(3), 1, 'fib(3) failed')
Test.assert_equals(fib(4), 2, 'fib(4) failed')
Test.assert_equals(fib(5), 3, 'fib(5) failed')
| Test.assert_equals(fib(1), 0, 'fib(1) failed')
Test.assert_equals(fib(2), 1, 'fib(2) failed')
Test.assert_equals(fib(3), 1, 'fib(3) failed')
Test.assert_equals(fib(4), 2, 'fib(4) failed')
Test.assert_equals(fib(5), 3, 'fib(5) failed') |
class Solution:
def maxCoins(self, piles: List[int]) -> int:
piles.sort()
n = len(piles)
i, j = 0, n - 1
ans = 0
while i < j:
c = piles[j - 1]
j -= 2
i += 1
ans += c
return ans
| class Solution:
def max_coins(self, piles: List[int]) -> int:
piles.sort()
n = len(piles)
(i, j) = (0, n - 1)
ans = 0
while i < j:
c = piles[j - 1]
j -= 2
i += 1
ans += c
return ans |
# Motor control
DRIVE = 0
STEER = 1
# Body
WAIST = 2
HEAD_SWIVEL = 3
HEAD_TILT = 4
# Right arm
RIGHT_SHOULDER = 5
RIGHT_FLAP = 6
RIGHT_ELBOW = 7
RIGHT_WRIST = 8
RIGHT_TWIST = 9
RIGHT_GRIP = 10
# Left arm
LEFT_SHOULDER = 12
LEFT_FLAP = 13
LEFT_ELBOW = 14
LEFT_WRIST = 15
LEFT_TWIST = 16
LEFT_GRIP = 17
| drive = 0
steer = 1
waist = 2
head_swivel = 3
head_tilt = 4
right_shoulder = 5
right_flap = 6
right_elbow = 7
right_wrist = 8
right_twist = 9
right_grip = 10
left_shoulder = 12
left_flap = 13
left_elbow = 14
left_wrist = 15
left_twist = 16
left_grip = 17 |
__author__ = 'katharine'
__version_info__ = (1, 1, 1)
__version__ = '.'.join(map(str, __version_info__))
| __author__ = 'katharine'
__version_info__ = (1, 1, 1)
__version__ = '.'.join(map(str, __version_info__)) |
# This program will convert given temperatures to different measuring units
print("\nWelcome to the Temperature Conversion App")
temp_f = float(input("What is the temperature in Fahrenheit: "))
# Temperature Conversions
temp_c = (5/9) * (temp_f - 32)
temp_k = temp_c + 273.15
# Round Temperatures to 2 decimal places
temp_f = round(temp_f, 2)
temp_c = round(temp_c, 2)
temp_k = round(temp_k, 2)
# Display summary in a table
print("\nDegrees Fahrenheit:\t" + str(temp_f))
print("Degrees Celsius:\t" + str(temp_c))
print("Degrees Kelvin:\t\t" + str(temp_k))
| print('\nWelcome to the Temperature Conversion App')
temp_f = float(input('What is the temperature in Fahrenheit: '))
temp_c = 5 / 9 * (temp_f - 32)
temp_k = temp_c + 273.15
temp_f = round(temp_f, 2)
temp_c = round(temp_c, 2)
temp_k = round(temp_k, 2)
print('\nDegrees Fahrenheit:\t' + str(temp_f))
print('Degrees Celsius:\t' + str(temp_c))
print('Degrees Kelvin:\t\t' + str(temp_k)) |
# Those are the field names of the cargo tables of leaguepedia
# Tournament
tournaments_fields = {
"Name",
"DateStart",
"Date",
"Region",
"League",
"Rulebook",
"TournamentLevel",
"IsQualifier",
"IsPlayoffs",
"IsOfficial",
"OverviewPage",
}
# Game
game_fields = {
"GameId",
"MatchId",
"Tournament",
"Team1",
"Team2",
"Winner",
"Gamelength_Number",
"DateTime_UTC",
"Team1Score",
"Team2Score",
"Team1Bans",
"Team2Bans",
"Team1Picks",
"Team2Picks",
"Team1Players",
"Team2Players",
"Team1Dragons",
"Team2Dragons",
"Team1Barons",
"Team2Barons",
"Team1Towers",
"Team2Towers",
"Team1RiftHeralds",
"Team2RiftHeralds",
"Team1Inhibitors",
"Team2Inhibitors",
"Patch",
"MatchHistory",
"VOD",
"Gamename",
"N_GameInMatch",
"OverviewPage",
}
# Game Player
game_players_fields = {
"ScoreboardPlayers.Name=gameName",
"ScoreboardPlayers.Role_Number=gameRoleNumber",
"ScoreboardPlayers.Champion",
"ScoreboardPlayers.Side",
"Players.Name=irlName",
"Players.Country",
"Players.Birthdate",
"Players.ID=currentGameName",
# "Players.Image",
# "Players.Team=currentTeam",
# "Players.Role=currentRole",
# "Players.SoloqueueIds",
}
# Ordered in the draft order for pro play as of June 2020
picks_bans_fields = [
"Team1Ban1",
"Team2Ban1",
"Team1Ban2",
"Team2Ban2",
"Team1Ban3",
"Team2Ban3",
"Team1Pick1",
"Team2Pick1",
"Team2Pick2",
"Team1Pick2",
"Team1Pick3",
"Team2Pick3",
"Team2Ban4",
"Team1Ban4",
"Team2Ban5",
"Team1Ban5",
"Team2Pick4",
"Team1Pick4",
"Team1Pick5",
"Team2Pick5",
]
| tournaments_fields = {'Name', 'DateStart', 'Date', 'Region', 'League', 'Rulebook', 'TournamentLevel', 'IsQualifier', 'IsPlayoffs', 'IsOfficial', 'OverviewPage'}
game_fields = {'GameId', 'MatchId', 'Tournament', 'Team1', 'Team2', 'Winner', 'Gamelength_Number', 'DateTime_UTC', 'Team1Score', 'Team2Score', 'Team1Bans', 'Team2Bans', 'Team1Picks', 'Team2Picks', 'Team1Players', 'Team2Players', 'Team1Dragons', 'Team2Dragons', 'Team1Barons', 'Team2Barons', 'Team1Towers', 'Team2Towers', 'Team1RiftHeralds', 'Team2RiftHeralds', 'Team1Inhibitors', 'Team2Inhibitors', 'Patch', 'MatchHistory', 'VOD', 'Gamename', 'N_GameInMatch', 'OverviewPage'}
game_players_fields = {'ScoreboardPlayers.Name=gameName', 'ScoreboardPlayers.Role_Number=gameRoleNumber', 'ScoreboardPlayers.Champion', 'ScoreboardPlayers.Side', 'Players.Name=irlName', 'Players.Country', 'Players.Birthdate', 'Players.ID=currentGameName'}
picks_bans_fields = ['Team1Ban1', 'Team2Ban1', 'Team1Ban2', 'Team2Ban2', 'Team1Ban3', 'Team2Ban3', 'Team1Pick1', 'Team2Pick1', 'Team2Pick2', 'Team1Pick2', 'Team1Pick3', 'Team2Pick3', 'Team2Ban4', 'Team1Ban4', 'Team2Ban5', 'Team1Ban5', 'Team2Pick4', 'Team1Pick4', 'Team1Pick5', 'Team2Pick5'] |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def countPairs(self, root: TreeNode, distance: int) -> int:
# Compute all values of pairs
# 1000
# compute all nodes
# tree to graph
graph = collections.defaultdict(list)
leafs = set()
def dfs(node):
if node is not None:
if node.left is None and node.right is None:
leafs.add(node)
if node.left is not None:
graph[node].append(node.left)
graph[node.left].append(node)
dfs(node.left)
if node.right is not None:
graph[node].append(node.right)
graph[node.right].append(node)
dfs(node.right)
dfs(root)
# print([node.val for node in leafs])
self.cnt = 0
def bfs(node):
seen = {node}
frontier = [node]
k = distance
while frontier:
next_level = []
for u in frontier:
for v in graph[u]:
if v not in seen:
seen.add(v)
next_level.append(v)
self.cnt += v in leafs
frontier = next_level
if k == 1:
break
k -= 1
for node in leafs:
bfs(node)
return self.cnt // 2
| class Solution:
def count_pairs(self, root: TreeNode, distance: int) -> int:
graph = collections.defaultdict(list)
leafs = set()
def dfs(node):
if node is not None:
if node.left is None and node.right is None:
leafs.add(node)
if node.left is not None:
graph[node].append(node.left)
graph[node.left].append(node)
dfs(node.left)
if node.right is not None:
graph[node].append(node.right)
graph[node.right].append(node)
dfs(node.right)
dfs(root)
self.cnt = 0
def bfs(node):
seen = {node}
frontier = [node]
k = distance
while frontier:
next_level = []
for u in frontier:
for v in graph[u]:
if v not in seen:
seen.add(v)
next_level.append(v)
self.cnt += v in leafs
frontier = next_level
if k == 1:
break
k -= 1
for node in leafs:
bfs(node)
return self.cnt // 2 |
class Game(dict):
def __init__(self, **kw):
dict.__init__(self, kw)
self.__dict__.update(kw)
# Assigned via game.xml
self.home_team= None
self.away_team = None
self.stadium = None
# Assigned via ????
self.innings = []
# Assigned Via game_events.xml
self.at_bats = []
| class Game(dict):
def __init__(self, **kw):
dict.__init__(self, kw)
self.__dict__.update(kw)
self.home_team = None
self.away_team = None
self.stadium = None
self.innings = []
self.at_bats = [] |
######################################################
# schema
schemaclipboard = None
SCHEMA_WRITE_PREFERENCE_DEFAULTS = [
{"key":"addchild","display":"Add child","default":True},
{"key":"remove","display":"Remove","default":True},
{"key":"childsopened","display":"Childs opened","default":False},
{"key":"editenabled","display":"Edit enabled","default":True},
{"key":"editkey","display":"Edit key","default":True},
{"key":"editvalue","display":"Edit value","default":True},
{"key":"radio","display":"Radio","default":False},
{"key":"slider","display":"Slider","default":False},
{"key":"check","display":"Check","default":False},
{"key":"showhelpashtml","display":"Show help as HTML","default":True}
]
class SchemaWritePreference:
def __init__(self):
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
self[item["key"]] = item["default"]
self.parent = None
self.changecallback = None
self.disabledlist = []
def setparent(self, parent):
self.parent = parent
return self
def setchangecallback(self, changecallback):
self.changecallback = changecallback
return self
def changed(self):
if not ( self.changecallback is None ):
self.changecallback()
def setdisabledlist(self, disabledlist):
self.disabledlist = disabledlist
return self
def form(self):
formdiv = Div().ac("noselect")
mdl = self.disabledlist
if not ( self.parent is None ):
if self.parent.parent is None:
mdl = mdl + ["editkey"]
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
if not ( item["key"] in mdl ):
formdiv.a(LabeledLinkedCheckBox(item["display"], self, item["key"], {
"patchclasses":["container/a/schemawritepreferenceformsubdiv"],
"changecallback": self.changed
}))
return formdiv
def toobj(self):
obj = {}
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
obj[item["key"]] = self[item["key"]]
return obj
DEFAULT_HELP = "No help available for this item."
DEFAULT_ENABLED = True
class SchemaItem(e):
def parentsettask(self):
pass
def setparent(self, parent):
self.parent = parent
self.parentsettask()
def getitem(self):
return self
def label(self):
return ""
def baseobj(self):
obj = {
"kind": self.kind,
"enabled": self.enabled,
"help": self.help,
"writepreference": self.writepreference.toobj()
}
return obj
def toobj(self):
return self.baseobj()
def topureobj(self):
pureobj = {}
return pureobj
def enablechangedtask():
pass
def enablecallback(self):
self.enabled = self.enablecheckbox.getchecked()
if not ( self.childparent is None ):
if self.childparent.writepreference.radio:
self.childparent.setradio(self)
self.childparent.enablechangedtask()
self.enablechangedtask()
def setenabled(self, enabled):
self.enabled = enabled
self.enablecheckbox.setchecked(self.enabled)
def helpboxclicked(self):
if self.helpopen:
self.helphook.x()
self.helpopen = False
else:
self.helpdiv = Div().ac("schemahelpdiv")
self.helpcontentdiv = Div().aac(["schemahelpcontentdiv","noselect"]).html(self.help)
self.helpeditdiv = Div().ac("schemahelpeditdiv")
self.helpedittextarea = LinkedTextarea(self, "help", {"patchclasses":["textarea/a/schemahelpedittextarea"],"text":self.help})
self.helpeditdiv.a(self.helpedittextarea)
if self.writepreference.showhelpashtml:
self.helpdiv.a(self.helpcontentdiv)
else:
self.helpdiv.a(self.helpeditdiv)
self.helphook.a(self.helpdiv)
self.helpopen = True
def copyboxclicked(self):
schemaclipboard.copy(self)
def settingsboxclicked(self):
if self.settingsopen:
self.settingshook.x()
self.settingsopen = False
else:
self.settingsdiv = Div().ac("schemasettingsdiv").a(self.writepreference.form())
self.settingshook.a(self.settingsdiv)
self.settingsopen = True
def removeboxclicked(self):
self.childparent.remove(self)
pass
def writepreferencechangedtask(self):
pass
def writepreferencechanged(self):
self.helpboxclicked()
self.helpboxclicked()
self.enablecheckbox.able(self.writepreference.editenabled)
self.setchildparent(self.childparent)
self.writepreferencechangedtask()
if not ( self.parent is None ):
self.parent.writepreferencechangedtask()
def setchildparent(self, childparent):
self.childparent = childparent
if ( not ( self.childparent is None ) ) and self.writepreference.remove:
self.schemacontainer.x().aa([self.enablebox, self.element, self.helpbox, self.copybox, self.settingsbox, self.removebox])
else:
self.schemacontainer.x().aa([self.enablebox, self.element, self.helpbox, self.copybox, self.settingsbox])
def elementdragstart(self, ev):
self.dragstartvect = getClientVect(ev)
def elementdrag(self, ev):
pass
def move(self, dir):
if self.childparent is None:
return
i = self.childparent.getitemindex(self)
newi = i + dir
self.childparent.movechildi(i, newi)
def elementdragend(self, ev):
self.dragendvect = getClientVect(ev)
diff = self.dragendvect.m(self.dragstartvect)
dir = int(diff.y / getglobalcssvarpxint("--schemabase"))
self.move(dir)
def __init__(self, args):
super().__init__("div")
self.parent = None
self.childparent = None
self.args = args
self.kind = "item"
self.enabled = args.get("enabled", DEFAULT_ENABLED)
self.help = args.get("help", DEFAULT_HELP)
self.writepreference = args.get("writepreference", SchemaWritePreference())
self.writepreference.setparent(self)
self.writepreference.setchangecallback(self.writepreferencechanged)
self.element = Div().ac("schemaitem")
self.schemacontainer = Div().ac("schemacontainer")
self.enablebox = Div().ac("schemaenablebox")
self.enablecheckbox = CheckBox(self.enabled).ac("schemaenablecheckbox").ae("change", self.enablecallback)
self.enablecheckbox.able(self.writepreference.editenabled)
self.enablebox.a(self.enablecheckbox)
self.helpbox = Div().aac(["schemahelpbox","noselect"]).ae("mousedown", self.helpboxclicked).html("?")
self.copybox = Div().aac(["schemacopybox","noselect"]).ae("mousedown", self.copyboxclicked).html("C")
self.settingsbox = Div().aac(["schemasettingsbox","noselect"]).ae("mousedown", self.settingsboxclicked).html("S")
self.removebox = Div().aac(["schemaremovebox","noselect"]).ae("mousedown", self.removeboxclicked).html("X")
self.afterelementhook = Div()
self.settingsopen = args.get("settingsopen", False)
self.helpopen = args.get("helpopen", False)
self.settingshook = Div()
self.helphook = Div()
self.schemacontainer.aa([self.enablebox, self.element, self.helpbox, self.copybox, self.settingsbox])
self.itemcontainer = Div()
self.itemcontainer.aa([self.schemacontainer, self.helphook, self.settingshook, self.afterelementhook])
self.a(self.itemcontainer)
self.dragelement = self.copybox
self.dragelement.sa("draggable", True)
self.dragelement.ae("dragstart", self.elementdragstart)
self.dragelement.ae("drag", self.elementdrag)
self.dragelement.ae("dragend", self.elementdragend)
self.dragelement.ae("dragover", lambda ev: ev.preventDefault())
class NamedSchemaItem(e):
def getitem(self):
return self.item
def label(self):
return self.key
def toobj(self):
return {
"kind": "nameditem",
"key": self.key,
"item": self.item.toobj()
}
def writepreferencechangedtask(self):
self.linkedtextinput.able(self.item.writepreference.editkey)
def keychanged(self):
if not ( self.keychangedcallback is None ):
self.keychangedcallback()
def setkeychangedcallback(self, keychangedcallback):
self.keychangedcallback = keychangedcallback
return self
def setkey(self, key):
self.key = key
self.linkedtextinput.setText(self.key)
return self
def __init__(self, args):
super().__init__("div")
self.kind = "nameditem"
#self.key = args.get("key", uid())
self.key = args.get("key", "")
self.item = args.get("item", SchemaItem(args))
self.keychangedcallback = None
self.item.setparent(self)
self.namedcontainer = Div().ac("namedschemaitem")
self.namediv = Div().ac("schemaitemname")
self.linkedtextinput = LinkedTextInput(self, "key", {
"textclass": "namedschemaitemrawtextinput",
"keyupcallback": self.keychanged
})
self.linkedtextinput.setText(self.key)
self.linkedtextinput.able(self.item.writepreference.editkey)
self.namediv.a(self.linkedtextinput)
self.namedcontainer.aa([self.namediv, self.item])
self.a(self.namedcontainer)
def copy(self, item):
self.item = schemafromobj(item.toobj())
self.item.parent = None
self.key = None
if not ( item.parent is None ):
self.key = item.parent.key
class SchemaScalar(SchemaItem):
def label(self):
return self.value
def toobj(self):
obj = self.baseobj()
obj["value"] = self.value
obj["minvalue"] = self.minvalue
obj["maxvalue"] = self.maxvalue
return obj
def topureobj(self):
obj = self.value
return obj
def writepreferencechangedtask(self):
self.build()
def enablechangedtask(self):
if self.writepreference.check:
if self.enabled:
self.value = "true"
else:
self.value = "false"
self.linkedtextinput.setText(self.value)
def build(self):
if self.writepreference.slider:
self.enablecheckbox.rc("schemacheckenablecheckbox")
self.linkedslider = LinkedSlider(self, "value", {
"containerclass": "schemalinkedslidercontainerclass",
"valuetextclass": "schemalinkedslidervaluetextclass",
"mintextclass": "schemalinkedslidermintextclass",
"sliderclass": "schemalinkedslidersliderclass",
"maxtextclass": "schemalinkedslidermaxtextclass"
})
self.element.x().aa([self.linkedslider])
else:
self.enablebox.arc(self.writepreference.check, "schemacheckenablecheckbox")
self.linkedtextinput = LinkedTextInput(self, "value", {"textclass":"schemascalarrawtextinput"})
self.linkedtextinput.able(self.writepreference.editvalue)
self.element.x().aa([self.linkedtextinput])
def __init__(self, args):
super().__init__(args)
self.kind = "scalar"
#self.value = args.get("value", randscalarvalue(2, 8))
self.value = args.get("value", "")
self.minvalue = args.get("minvalue", 1)
self.maxvalue = args.get("maxvalue", 100)
self.element.ac("schemascalar")
self.writepreference.setdisabledlist(["addchild","childsopened","radio"])
self.build()
class SchemaCollection(SchemaItem):
def removechildi(self, i):
newchilds = []
rchild = None
for j in range(0, len(self.childs)):
if ( j == i ):
rchild = self.childs[j]
else:
newchilds.append(self.childs[j])
self.childs = newchilds
self.openchilds()
self.openchilds()
return rchild
def insertchildi(self, i, child):
newchilds = []
for j in range(0, len(self.childs) + 1):
if ( j == i ):
newchilds.append(child)
if ( j < len(self.childs) ):
newchilds.append(self.childs[j])
self.childs = newchilds
self.openchilds()
self.openchilds()
def movechildi(self, i, newi):
if len(self.childs) <= 0:
return
if newi < 0:
newi = 0
if newi >= len(self.childs):
newi = len(self.childs) - 1
rchild = self.removechildi(i)
if not ( rchild is None ):
self.insertchildi(newi, rchild)
def getitemindex(self, item):
for i in range(0, len(self.childs)):
if self.childs[i].getitem() == item:
return i
return None
def parentsettask(self):
self.opendiv.arc(not self.parent is None, "schemadictchildleftmargin")
def enablechangedtask(self):
self.openchilds()
self.openchilds()
def buildchilds(self):
labellist = []
self.childshook.x()
for child in self.childs:
self.childshook.a(child)
if child.getitem().enabled:
labellist.append(child.label())
label = " , ".join(labellist)
self.openbutton.x().a(Div().ac("schemacollectionopenbuttonlabel").html(label))
def topureobj(self):
pureobj = {}
if self.writepreference.radio:
if self.kind == "dict":
pureobj = ["", {}]
for nameditem in self.childs:
key = nameditem.key
item = nameditem.item
if item.enabled or item.writepreference.check:
pureobj = [key, item.topureobj()]
break
elif self.kind == "list":
for item in self.childs:
if item.enabled or item.writepreference.check:
pureobj = item.topureobj()
break
else:
if self.kind == "dict":
for nameditem in self.childs:
key = nameditem.key
item = nameditem.item
if item.enabled or item.writepreference.check:
pureobj[key] = item.topureobj()
elif self.kind == "list":
pureobj = []
for item in self.childs:
if item.enabled or item.writepreference.check:
pureobj.append(item.topureobj())
return pureobj
def setradio(self, item):
for child in self.childs:
childitem = child.getitem()
childeq = ( childitem == item )
childitem.enabled = childeq
childitem.enablecheckbox.setchecked(childeq)
def remove(self, item):
newlist = []
for child in self.childs:
childeq = False
if child.kind == "nameditem":
childeq = ( child.item == item )
else:
childeq = ( child == item )
if not childeq:
newlist.append(child)
self.childs = newlist
self.openchilds()
self.openchilds()
def getschemakinds(self):
schemakinds = {
"create" : "Create new",
"scalar" : "Scalar",
"list" : "List",
"dict" : "Dict"
}
for nameditem in self.childs:
key = nameditem.key
if not ( key == None ):
if len(key) > 0:
schemakinds["#" + key] = key
return schemakinds
def updatecreatecombo(self):
if not ( self.createcombo is None ):
self.createcombo.setoptions(self.getschemakinds())
def getchildbykey(self, key):
if not ( self.kind == "dict" ):
return None
for nameditem in self.childs:
if nameditem.key == key:
return nameditem.item
return None
def createcallback(self, key):
self.updatecreatecombo()
sch = SchemaScalar({})
if key == "list":
sch = SchemaList({})
elif key == "dict":
sch = SchemaDict({})
if key[0] == "#":
truekey = key[1:]
titem = self.getchildbykey(truekey)
if titem == None:
print("error, no item with key", truekey)
else:
sch = schemafromobj(titem.toobj())
sch.setchildparent(self)
appendelement = sch
if self.kind == "dict":
appendelement = NamedSchemaItem({
"item": sch
}).setkeychangedcallback(self.updatecreatecombo)
self.childs.append(appendelement)
self.buildchilds()
self.updatecreatecombo()
def pastebuttonclicked(self):
try:
sch = schemafromobj(schemaclipboard.item.toobj())
except:
window.alert("No item on clipboard to paste!")
return self
sch.setchildparent(self)
appendelement = sch
if self.kind == "dict":
appendelement = NamedSchemaItem({
"item": sch
}).setkeychangedcallback(self.updatecreatecombo)
if not ( schemaclipboard.key is None ):
appendelement.setkey(schemaclipboard.key)
self.childs.append(appendelement)
self.buildchilds()
self.updatecreatecombo()
def openchilds(self):
if self.opened:
self.opened = False
self.createhook.x()
self.childshook.x()
self.openbutton.rc("schemacollectionopenbuttondone")
else:
self.opened = True
self.creatediv = Div().ac("schemaitem").ac("schemacreate")
self.createcombo = ComboBox({
"changecallback": self.createcallback,
"selectclass": "schemacreatecomboselect"
})
self.updatecreatecombo()
self.pastebutton = Button("Paste", self.pastebuttonclicked).ac("schemapastebutton")
self.creatediv.aa([self.createcombo, self.pastebutton])
if self.writepreference.addchild:
self.createhook.a(self.creatediv)
self.openbutton.ac("schemacollectionopenbuttondone")
self.buildchilds()
def writepreferencechangedtask(self):
self.openchilds()
self.openchilds()
def __init__(self, args):
super().__init__(args)
self.kind = "collection"
self.opened = False
self.childs = args.get("childs", [])
self.editmode = args.get("editmode", False)
self.childseditable = args.get("childseditable", True)
self.element.ac("schemacollection")
self.openbutton = Div().aac(["schemacollectionopenbutton","noselect"]).ae("mousedown", self.openchilds)
self.element.aa([self.openbutton])
self.createcombo = None
self.createhook = Div()
self.childshook = Div()
self.opendiv = Div().ac("schemacollectionopendiv")
self.opendiv.aa([self.createhook, self.childshook])
self.afterelementhook.a(self.opendiv)
self.openchilds()
if not self.writepreference.childsopened:
self.openchilds()
class SchemaList(SchemaCollection):
def getfirstselectedindex(self):
i = 0
for item in self.childs:
if item.enabled:
return i
i+=1
return None
def toobj(self):
listobj = []
for item in self.childs:
listobj.append(item.toobj())
obj = self.baseobj()
obj["items"] = listobj
return obj
def __init__(self, args):
super().__init__(args)
self.kind = "list"
self.element.ac("schemalist")
self.writepreference.setdisabledlist(["editvalue", "slider", "check"])
class SchemaDict(SchemaCollection):
def setchildatkey(self, key, item):
item.setchildparent(self)
nameditem = NamedSchemaItem({
"key": key,
"item": item
})
i = self.getitemindexbykey(key)
if i is None:
self.childs.append(nameditem)
else:
self.childs[i] = nameditem
self.openchilds()
self.openchilds()
def getfirstselectedindex(self):
i = 0
for item in self.childs:
if item.item.enabled:
return i
i+=1
return None
def getitemindexbykey(self, key):
i = 0
for item in self.childs:
if item.key == key:
return i
i+=1
return None
def toobj(self):
dictobj = []
for item in self.childs:
sch = {
"key": item.key,
"item": item.item.toobj()
}
dictobj.append(sch)
obj = self.baseobj()
obj["items"] = dictobj
return obj
def __init__(self, args):
super().__init__(args)
self.kind = "dict"
self.element.ac("schemadict")
self.writepreference.setdisabledlist(["editvalue", "slider", "check"])
def schemawritepreferencefromobj(obj):
swp = SchemaWritePreference()
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
swp[item["key"]] = getfromobj(obj, item["key"], item["default"])
return swp
def schemafromobj(obj):
kind = getfromobj(obj, "kind", "dict")
enabled = getfromobj(obj, "enabled", DEFAULT_ENABLED)
help = getfromobj(obj, "help", DEFAULT_HELP)
writepreference = schemawritepreferencefromobj(getfromobj(obj, "writepreference", {}))
returnobj = {}
if kind == "scalar":
returnobj = SchemaScalar({
"value": obj["value"],
"minvalue": obj["minvalue"],
"maxvalue": obj["maxvalue"],
"writepreference": writepreference
})
elif kind == "list":
items = obj["items"]
childs = []
for item in items:
sch = schemafromobj(item)
childs.append(sch)
returnobj = SchemaList({
"childs": childs,
"writepreference": writepreference
})
for child in returnobj.childs:
child.setchildparent(returnobj)
elif kind == "dict":
items = obj["items"]
childs = []
for itemobj in items:
key = itemobj["key"]
item = itemobj["item"]
sch = schemafromobj(item)
namedsch = NamedSchemaItem({
"key": key,
"item": sch,
"writepreference": writepreference
})
childs.append(namedsch)
returnobj = SchemaDict({
"childs": childs,
"writepreference": writepreference
})
for child in returnobj.childs:
child.item.setchildparent(returnobj)
child.setkeychangedcallback(returnobj.updatecreatecombo)
returnobj.setenabled(enabled)
returnobj.help = help
return returnobj
def getpathlistfromschema(sch, pathlist):
if len(pathlist)<=0:
return sch
key = pathlist[0]
pathlist = pathlist[1:]
if key == "#":
if sch.kind == "scalar":
return None
elif sch.kind == "list":
i = sch.getfirstselectedindex()
if i == None:
return None
return getpathlistfromschema(sch.childs[i], pathlist)
elif sch.kind == "dict":
i = sch.getfirstselectedindex()
if i == None:
return None
return getpathlistfromschema(sch.childs[i].item, pathlist)
else:
if sch.kind == "scalar":
return None
elif sch.kind == "list":
return None
elif sch.kind == "dict":
for child in sch.childs:
if child.key == key:
return getpathlistfromschema(child.item, pathlist)
return None
def getpathfromschema(sch, path):
pathlist = path.split("/")
return getpathlistfromschema(sch, pathlist)
def getscalarfromschema(sch, path):
found = getpathfromschema(sch, path)
if not ( found is None ):
if found.kind == "scalar":
return found.value
found = getpathfromschema(sch, path + "/#")
if not ( found is None ):
if found.kind == "scalar":
return found.value
return None
def schemafromucioptionsobj(obj):
ucioptions = SchemaDict({})
for opt in obj:
key = opt["key"]
kind = opt["kind"]
default = opt["default"]
min = opt["min"]
max = opt["max"]
options = opt["options"]
item = SchemaScalar({
"value": default
})
if kind == "spin":
item.minvalue = min
item.maxvalue = max
item.writepreference.slider = True
item.build()
elif kind == "check":
item.value = "false"
if default:
item.value = "true"
item.writepreference.check = True
item.setenabled(default)
item.build()
elif kind == "combo":
item = SchemaList({})
item.writepreference.radio = True
for comboopt in options:
comboitem = SchemaScalar({
"value": comboopt
})
comboitem.setenabled(comboopt == default)
comboitem.setchildparent(item)
item.childs.append(comboitem)
item.openchilds()
item.openchilds()
item.setchildparent(ucioptions)
nameditem = NamedSchemaItem({
"key": key,
"item": item
})
ucioptions.childs.append(nameditem)
return ucioptions
schemaclipboard = NamedSchemaItem({})
######################################################
| schemaclipboard = None
schema_write_preference_defaults = [{'key': 'addchild', 'display': 'Add child', 'default': True}, {'key': 'remove', 'display': 'Remove', 'default': True}, {'key': 'childsopened', 'display': 'Childs opened', 'default': False}, {'key': 'editenabled', 'display': 'Edit enabled', 'default': True}, {'key': 'editkey', 'display': 'Edit key', 'default': True}, {'key': 'editvalue', 'display': 'Edit value', 'default': True}, {'key': 'radio', 'display': 'Radio', 'default': False}, {'key': 'slider', 'display': 'Slider', 'default': False}, {'key': 'check', 'display': 'Check', 'default': False}, {'key': 'showhelpashtml', 'display': 'Show help as HTML', 'default': True}]
class Schemawritepreference:
def __init__(self):
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
self[item['key']] = item['default']
self.parent = None
self.changecallback = None
self.disabledlist = []
def setparent(self, parent):
self.parent = parent
return self
def setchangecallback(self, changecallback):
self.changecallback = changecallback
return self
def changed(self):
if not self.changecallback is None:
self.changecallback()
def setdisabledlist(self, disabledlist):
self.disabledlist = disabledlist
return self
def form(self):
formdiv = div().ac('noselect')
mdl = self.disabledlist
if not self.parent is None:
if self.parent.parent is None:
mdl = mdl + ['editkey']
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
if not item['key'] in mdl:
formdiv.a(labeled_linked_check_box(item['display'], self, item['key'], {'patchclasses': ['container/a/schemawritepreferenceformsubdiv'], 'changecallback': self.changed}))
return formdiv
def toobj(self):
obj = {}
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
obj[item['key']] = self[item['key']]
return obj
default_help = 'No help available for this item.'
default_enabled = True
class Schemaitem(e):
def parentsettask(self):
pass
def setparent(self, parent):
self.parent = parent
self.parentsettask()
def getitem(self):
return self
def label(self):
return ''
def baseobj(self):
obj = {'kind': self.kind, 'enabled': self.enabled, 'help': self.help, 'writepreference': self.writepreference.toobj()}
return obj
def toobj(self):
return self.baseobj()
def topureobj(self):
pureobj = {}
return pureobj
def enablechangedtask():
pass
def enablecallback(self):
self.enabled = self.enablecheckbox.getchecked()
if not self.childparent is None:
if self.childparent.writepreference.radio:
self.childparent.setradio(self)
self.childparent.enablechangedtask()
self.enablechangedtask()
def setenabled(self, enabled):
self.enabled = enabled
self.enablecheckbox.setchecked(self.enabled)
def helpboxclicked(self):
if self.helpopen:
self.helphook.x()
self.helpopen = False
else:
self.helpdiv = div().ac('schemahelpdiv')
self.helpcontentdiv = div().aac(['schemahelpcontentdiv', 'noselect']).html(self.help)
self.helpeditdiv = div().ac('schemahelpeditdiv')
self.helpedittextarea = linked_textarea(self, 'help', {'patchclasses': ['textarea/a/schemahelpedittextarea'], 'text': self.help})
self.helpeditdiv.a(self.helpedittextarea)
if self.writepreference.showhelpashtml:
self.helpdiv.a(self.helpcontentdiv)
else:
self.helpdiv.a(self.helpeditdiv)
self.helphook.a(self.helpdiv)
self.helpopen = True
def copyboxclicked(self):
schemaclipboard.copy(self)
def settingsboxclicked(self):
if self.settingsopen:
self.settingshook.x()
self.settingsopen = False
else:
self.settingsdiv = div().ac('schemasettingsdiv').a(self.writepreference.form())
self.settingshook.a(self.settingsdiv)
self.settingsopen = True
def removeboxclicked(self):
self.childparent.remove(self)
pass
def writepreferencechangedtask(self):
pass
def writepreferencechanged(self):
self.helpboxclicked()
self.helpboxclicked()
self.enablecheckbox.able(self.writepreference.editenabled)
self.setchildparent(self.childparent)
self.writepreferencechangedtask()
if not self.parent is None:
self.parent.writepreferencechangedtask()
def setchildparent(self, childparent):
self.childparent = childparent
if not self.childparent is None and self.writepreference.remove:
self.schemacontainer.x().aa([self.enablebox, self.element, self.helpbox, self.copybox, self.settingsbox, self.removebox])
else:
self.schemacontainer.x().aa([self.enablebox, self.element, self.helpbox, self.copybox, self.settingsbox])
def elementdragstart(self, ev):
self.dragstartvect = get_client_vect(ev)
def elementdrag(self, ev):
pass
def move(self, dir):
if self.childparent is None:
return
i = self.childparent.getitemindex(self)
newi = i + dir
self.childparent.movechildi(i, newi)
def elementdragend(self, ev):
self.dragendvect = get_client_vect(ev)
diff = self.dragendvect.m(self.dragstartvect)
dir = int(diff.y / getglobalcssvarpxint('--schemabase'))
self.move(dir)
def __init__(self, args):
super().__init__('div')
self.parent = None
self.childparent = None
self.args = args
self.kind = 'item'
self.enabled = args.get('enabled', DEFAULT_ENABLED)
self.help = args.get('help', DEFAULT_HELP)
self.writepreference = args.get('writepreference', schema_write_preference())
self.writepreference.setparent(self)
self.writepreference.setchangecallback(self.writepreferencechanged)
self.element = div().ac('schemaitem')
self.schemacontainer = div().ac('schemacontainer')
self.enablebox = div().ac('schemaenablebox')
self.enablecheckbox = check_box(self.enabled).ac('schemaenablecheckbox').ae('change', self.enablecallback)
self.enablecheckbox.able(self.writepreference.editenabled)
self.enablebox.a(self.enablecheckbox)
self.helpbox = div().aac(['schemahelpbox', 'noselect']).ae('mousedown', self.helpboxclicked).html('?')
self.copybox = div().aac(['schemacopybox', 'noselect']).ae('mousedown', self.copyboxclicked).html('C')
self.settingsbox = div().aac(['schemasettingsbox', 'noselect']).ae('mousedown', self.settingsboxclicked).html('S')
self.removebox = div().aac(['schemaremovebox', 'noselect']).ae('mousedown', self.removeboxclicked).html('X')
self.afterelementhook = div()
self.settingsopen = args.get('settingsopen', False)
self.helpopen = args.get('helpopen', False)
self.settingshook = div()
self.helphook = div()
self.schemacontainer.aa([self.enablebox, self.element, self.helpbox, self.copybox, self.settingsbox])
self.itemcontainer = div()
self.itemcontainer.aa([self.schemacontainer, self.helphook, self.settingshook, self.afterelementhook])
self.a(self.itemcontainer)
self.dragelement = self.copybox
self.dragelement.sa('draggable', True)
self.dragelement.ae('dragstart', self.elementdragstart)
self.dragelement.ae('drag', self.elementdrag)
self.dragelement.ae('dragend', self.elementdragend)
self.dragelement.ae('dragover', lambda ev: ev.preventDefault())
class Namedschemaitem(e):
def getitem(self):
return self.item
def label(self):
return self.key
def toobj(self):
return {'kind': 'nameditem', 'key': self.key, 'item': self.item.toobj()}
def writepreferencechangedtask(self):
self.linkedtextinput.able(self.item.writepreference.editkey)
def keychanged(self):
if not self.keychangedcallback is None:
self.keychangedcallback()
def setkeychangedcallback(self, keychangedcallback):
self.keychangedcallback = keychangedcallback
return self
def setkey(self, key):
self.key = key
self.linkedtextinput.setText(self.key)
return self
def __init__(self, args):
super().__init__('div')
self.kind = 'nameditem'
self.key = args.get('key', '')
self.item = args.get('item', schema_item(args))
self.keychangedcallback = None
self.item.setparent(self)
self.namedcontainer = div().ac('namedschemaitem')
self.namediv = div().ac('schemaitemname')
self.linkedtextinput = linked_text_input(self, 'key', {'textclass': 'namedschemaitemrawtextinput', 'keyupcallback': self.keychanged})
self.linkedtextinput.setText(self.key)
self.linkedtextinput.able(self.item.writepreference.editkey)
self.namediv.a(self.linkedtextinput)
self.namedcontainer.aa([self.namediv, self.item])
self.a(self.namedcontainer)
def copy(self, item):
self.item = schemafromobj(item.toobj())
self.item.parent = None
self.key = None
if not item.parent is None:
self.key = item.parent.key
class Schemascalar(SchemaItem):
def label(self):
return self.value
def toobj(self):
obj = self.baseobj()
obj['value'] = self.value
obj['minvalue'] = self.minvalue
obj['maxvalue'] = self.maxvalue
return obj
def topureobj(self):
obj = self.value
return obj
def writepreferencechangedtask(self):
self.build()
def enablechangedtask(self):
if self.writepreference.check:
if self.enabled:
self.value = 'true'
else:
self.value = 'false'
self.linkedtextinput.setText(self.value)
def build(self):
if self.writepreference.slider:
self.enablecheckbox.rc('schemacheckenablecheckbox')
self.linkedslider = linked_slider(self, 'value', {'containerclass': 'schemalinkedslidercontainerclass', 'valuetextclass': 'schemalinkedslidervaluetextclass', 'mintextclass': 'schemalinkedslidermintextclass', 'sliderclass': 'schemalinkedslidersliderclass', 'maxtextclass': 'schemalinkedslidermaxtextclass'})
self.element.x().aa([self.linkedslider])
else:
self.enablebox.arc(self.writepreference.check, 'schemacheckenablecheckbox')
self.linkedtextinput = linked_text_input(self, 'value', {'textclass': 'schemascalarrawtextinput'})
self.linkedtextinput.able(self.writepreference.editvalue)
self.element.x().aa([self.linkedtextinput])
def __init__(self, args):
super().__init__(args)
self.kind = 'scalar'
self.value = args.get('value', '')
self.minvalue = args.get('minvalue', 1)
self.maxvalue = args.get('maxvalue', 100)
self.element.ac('schemascalar')
self.writepreference.setdisabledlist(['addchild', 'childsopened', 'radio'])
self.build()
class Schemacollection(SchemaItem):
def removechildi(self, i):
newchilds = []
rchild = None
for j in range(0, len(self.childs)):
if j == i:
rchild = self.childs[j]
else:
newchilds.append(self.childs[j])
self.childs = newchilds
self.openchilds()
self.openchilds()
return rchild
def insertchildi(self, i, child):
newchilds = []
for j in range(0, len(self.childs) + 1):
if j == i:
newchilds.append(child)
if j < len(self.childs):
newchilds.append(self.childs[j])
self.childs = newchilds
self.openchilds()
self.openchilds()
def movechildi(self, i, newi):
if len(self.childs) <= 0:
return
if newi < 0:
newi = 0
if newi >= len(self.childs):
newi = len(self.childs) - 1
rchild = self.removechildi(i)
if not rchild is None:
self.insertchildi(newi, rchild)
def getitemindex(self, item):
for i in range(0, len(self.childs)):
if self.childs[i].getitem() == item:
return i
return None
def parentsettask(self):
self.opendiv.arc(not self.parent is None, 'schemadictchildleftmargin')
def enablechangedtask(self):
self.openchilds()
self.openchilds()
def buildchilds(self):
labellist = []
self.childshook.x()
for child in self.childs:
self.childshook.a(child)
if child.getitem().enabled:
labellist.append(child.label())
label = ' , '.join(labellist)
self.openbutton.x().a(div().ac('schemacollectionopenbuttonlabel').html(label))
def topureobj(self):
pureobj = {}
if self.writepreference.radio:
if self.kind == 'dict':
pureobj = ['', {}]
for nameditem in self.childs:
key = nameditem.key
item = nameditem.item
if item.enabled or item.writepreference.check:
pureobj = [key, item.topureobj()]
break
elif self.kind == 'list':
for item in self.childs:
if item.enabled or item.writepreference.check:
pureobj = item.topureobj()
break
elif self.kind == 'dict':
for nameditem in self.childs:
key = nameditem.key
item = nameditem.item
if item.enabled or item.writepreference.check:
pureobj[key] = item.topureobj()
elif self.kind == 'list':
pureobj = []
for item in self.childs:
if item.enabled or item.writepreference.check:
pureobj.append(item.topureobj())
return pureobj
def setradio(self, item):
for child in self.childs:
childitem = child.getitem()
childeq = childitem == item
childitem.enabled = childeq
childitem.enablecheckbox.setchecked(childeq)
def remove(self, item):
newlist = []
for child in self.childs:
childeq = False
if child.kind == 'nameditem':
childeq = child.item == item
else:
childeq = child == item
if not childeq:
newlist.append(child)
self.childs = newlist
self.openchilds()
self.openchilds()
def getschemakinds(self):
schemakinds = {'create': 'Create new', 'scalar': 'Scalar', 'list': 'List', 'dict': 'Dict'}
for nameditem in self.childs:
key = nameditem.key
if not key == None:
if len(key) > 0:
schemakinds['#' + key] = key
return schemakinds
def updatecreatecombo(self):
if not self.createcombo is None:
self.createcombo.setoptions(self.getschemakinds())
def getchildbykey(self, key):
if not self.kind == 'dict':
return None
for nameditem in self.childs:
if nameditem.key == key:
return nameditem.item
return None
def createcallback(self, key):
self.updatecreatecombo()
sch = schema_scalar({})
if key == 'list':
sch = schema_list({})
elif key == 'dict':
sch = schema_dict({})
if key[0] == '#':
truekey = key[1:]
titem = self.getchildbykey(truekey)
if titem == None:
print('error, no item with key', truekey)
else:
sch = schemafromobj(titem.toobj())
sch.setchildparent(self)
appendelement = sch
if self.kind == 'dict':
appendelement = named_schema_item({'item': sch}).setkeychangedcallback(self.updatecreatecombo)
self.childs.append(appendelement)
self.buildchilds()
self.updatecreatecombo()
def pastebuttonclicked(self):
try:
sch = schemafromobj(schemaclipboard.item.toobj())
except:
window.alert('No item on clipboard to paste!')
return self
sch.setchildparent(self)
appendelement = sch
if self.kind == 'dict':
appendelement = named_schema_item({'item': sch}).setkeychangedcallback(self.updatecreatecombo)
if not schemaclipboard.key is None:
appendelement.setkey(schemaclipboard.key)
self.childs.append(appendelement)
self.buildchilds()
self.updatecreatecombo()
def openchilds(self):
if self.opened:
self.opened = False
self.createhook.x()
self.childshook.x()
self.openbutton.rc('schemacollectionopenbuttondone')
else:
self.opened = True
self.creatediv = div().ac('schemaitem').ac('schemacreate')
self.createcombo = combo_box({'changecallback': self.createcallback, 'selectclass': 'schemacreatecomboselect'})
self.updatecreatecombo()
self.pastebutton = button('Paste', self.pastebuttonclicked).ac('schemapastebutton')
self.creatediv.aa([self.createcombo, self.pastebutton])
if self.writepreference.addchild:
self.createhook.a(self.creatediv)
self.openbutton.ac('schemacollectionopenbuttondone')
self.buildchilds()
def writepreferencechangedtask(self):
self.openchilds()
self.openchilds()
def __init__(self, args):
super().__init__(args)
self.kind = 'collection'
self.opened = False
self.childs = args.get('childs', [])
self.editmode = args.get('editmode', False)
self.childseditable = args.get('childseditable', True)
self.element.ac('schemacollection')
self.openbutton = div().aac(['schemacollectionopenbutton', 'noselect']).ae('mousedown', self.openchilds)
self.element.aa([self.openbutton])
self.createcombo = None
self.createhook = div()
self.childshook = div()
self.opendiv = div().ac('schemacollectionopendiv')
self.opendiv.aa([self.createhook, self.childshook])
self.afterelementhook.a(self.opendiv)
self.openchilds()
if not self.writepreference.childsopened:
self.openchilds()
class Schemalist(SchemaCollection):
def getfirstselectedindex(self):
i = 0
for item in self.childs:
if item.enabled:
return i
i += 1
return None
def toobj(self):
listobj = []
for item in self.childs:
listobj.append(item.toobj())
obj = self.baseobj()
obj['items'] = listobj
return obj
def __init__(self, args):
super().__init__(args)
self.kind = 'list'
self.element.ac('schemalist')
self.writepreference.setdisabledlist(['editvalue', 'slider', 'check'])
class Schemadict(SchemaCollection):
def setchildatkey(self, key, item):
item.setchildparent(self)
nameditem = named_schema_item({'key': key, 'item': item})
i = self.getitemindexbykey(key)
if i is None:
self.childs.append(nameditem)
else:
self.childs[i] = nameditem
self.openchilds()
self.openchilds()
def getfirstselectedindex(self):
i = 0
for item in self.childs:
if item.item.enabled:
return i
i += 1
return None
def getitemindexbykey(self, key):
i = 0
for item in self.childs:
if item.key == key:
return i
i += 1
return None
def toobj(self):
dictobj = []
for item in self.childs:
sch = {'key': item.key, 'item': item.item.toobj()}
dictobj.append(sch)
obj = self.baseobj()
obj['items'] = dictobj
return obj
def __init__(self, args):
super().__init__(args)
self.kind = 'dict'
self.element.ac('schemadict')
self.writepreference.setdisabledlist(['editvalue', 'slider', 'check'])
def schemawritepreferencefromobj(obj):
swp = schema_write_preference()
for item in SCHEMA_WRITE_PREFERENCE_DEFAULTS:
swp[item['key']] = getfromobj(obj, item['key'], item['default'])
return swp
def schemafromobj(obj):
kind = getfromobj(obj, 'kind', 'dict')
enabled = getfromobj(obj, 'enabled', DEFAULT_ENABLED)
help = getfromobj(obj, 'help', DEFAULT_HELP)
writepreference = schemawritepreferencefromobj(getfromobj(obj, 'writepreference', {}))
returnobj = {}
if kind == 'scalar':
returnobj = schema_scalar({'value': obj['value'], 'minvalue': obj['minvalue'], 'maxvalue': obj['maxvalue'], 'writepreference': writepreference})
elif kind == 'list':
items = obj['items']
childs = []
for item in items:
sch = schemafromobj(item)
childs.append(sch)
returnobj = schema_list({'childs': childs, 'writepreference': writepreference})
for child in returnobj.childs:
child.setchildparent(returnobj)
elif kind == 'dict':
items = obj['items']
childs = []
for itemobj in items:
key = itemobj['key']
item = itemobj['item']
sch = schemafromobj(item)
namedsch = named_schema_item({'key': key, 'item': sch, 'writepreference': writepreference})
childs.append(namedsch)
returnobj = schema_dict({'childs': childs, 'writepreference': writepreference})
for child in returnobj.childs:
child.item.setchildparent(returnobj)
child.setkeychangedcallback(returnobj.updatecreatecombo)
returnobj.setenabled(enabled)
returnobj.help = help
return returnobj
def getpathlistfromschema(sch, pathlist):
if len(pathlist) <= 0:
return sch
key = pathlist[0]
pathlist = pathlist[1:]
if key == '#':
if sch.kind == 'scalar':
return None
elif sch.kind == 'list':
i = sch.getfirstselectedindex()
if i == None:
return None
return getpathlistfromschema(sch.childs[i], pathlist)
elif sch.kind == 'dict':
i = sch.getfirstselectedindex()
if i == None:
return None
return getpathlistfromschema(sch.childs[i].item, pathlist)
elif sch.kind == 'scalar':
return None
elif sch.kind == 'list':
return None
elif sch.kind == 'dict':
for child in sch.childs:
if child.key == key:
return getpathlistfromschema(child.item, pathlist)
return None
def getpathfromschema(sch, path):
pathlist = path.split('/')
return getpathlistfromschema(sch, pathlist)
def getscalarfromschema(sch, path):
found = getpathfromschema(sch, path)
if not found is None:
if found.kind == 'scalar':
return found.value
found = getpathfromschema(sch, path + '/#')
if not found is None:
if found.kind == 'scalar':
return found.value
return None
def schemafromucioptionsobj(obj):
ucioptions = schema_dict({})
for opt in obj:
key = opt['key']
kind = opt['kind']
default = opt['default']
min = opt['min']
max = opt['max']
options = opt['options']
item = schema_scalar({'value': default})
if kind == 'spin':
item.minvalue = min
item.maxvalue = max
item.writepreference.slider = True
item.build()
elif kind == 'check':
item.value = 'false'
if default:
item.value = 'true'
item.writepreference.check = True
item.setenabled(default)
item.build()
elif kind == 'combo':
item = schema_list({})
item.writepreference.radio = True
for comboopt in options:
comboitem = schema_scalar({'value': comboopt})
comboitem.setenabled(comboopt == default)
comboitem.setchildparent(item)
item.childs.append(comboitem)
item.openchilds()
item.openchilds()
item.setchildparent(ucioptions)
nameditem = named_schema_item({'key': key, 'item': item})
ucioptions.childs.append(nameditem)
return ucioptions
schemaclipboard = named_schema_item({}) |
# encoding: utf-8
class DummyResponse(object):
status_code = 250
class DummyBackend(object):
def __init__(self, **kw):
pass
def sendmail(self, **kw):
return DummyResponse()
| class Dummyresponse(object):
status_code = 250
class Dummybackend(object):
def __init__(self, **kw):
pass
def sendmail(self, **kw):
return dummy_response() |
class NetworkInfoEntry(object):
def __init__(self):
self.bytes = 0
self.packets = 0
self.error = 0
self.drop = 0
class NetworkLogEntry(object):
def __init__(self):
self.name = ""
self.rx = NetworkInfoEntry()
self.tx = NetworkInfoEntry()
class DomainLogEntry(object):
def __init__(self):
self.name = ""
self.cpu_seconds = 0
self.memory = 0
self.memory_percent = 0.0
self.max_memory = 0
self.max_memory_percent = 0.0
self.virtual_cpus = 0
self.networks = []
def __str__(self):
result = self.name
for network in self.networks:
result += ", " + network.name + " (RX:" + str(network.rx.bytes/1024/1024/1024) +"gb, TX:" + str(network.tx.bytes/1024/1024/1024) + "gb)"
return result
| class Networkinfoentry(object):
def __init__(self):
self.bytes = 0
self.packets = 0
self.error = 0
self.drop = 0
class Networklogentry(object):
def __init__(self):
self.name = ''
self.rx = network_info_entry()
self.tx = network_info_entry()
class Domainlogentry(object):
def __init__(self):
self.name = ''
self.cpu_seconds = 0
self.memory = 0
self.memory_percent = 0.0
self.max_memory = 0
self.max_memory_percent = 0.0
self.virtual_cpus = 0
self.networks = []
def __str__(self):
result = self.name
for network in self.networks:
result += ', ' + network.name + ' (RX:' + str(network.rx.bytes / 1024 / 1024 / 1024) + 'gb, TX:' + str(network.tx.bytes / 1024 / 1024 / 1024) + 'gb)'
return result |
class Ball:
def __init__(self, x0, y0, r0):
self.x = x0
self.y = y0
self.r = r0
return
def distance(self, x0, y0):
return ((self.x-x0)**2. + (self.y-y0)**2.)**(0.5)
def distance_from_origin(self):
return self.distance(0,0)
def __str__(self):
out_str = "Radius = {}\n".format(self.r)
out_str += "Position = ({},{})".format(self.x, self.y)
return out_str
if __name__ == "__main__":
ball = Ball(3, 4, 3)
dist = ball.distance_from_origin()
print(ball)
| class Ball:
def __init__(self, x0, y0, r0):
self.x = x0
self.y = y0
self.r = r0
return
def distance(self, x0, y0):
return ((self.x - x0) ** 2.0 + (self.y - y0) ** 2.0) ** 0.5
def distance_from_origin(self):
return self.distance(0, 0)
def __str__(self):
out_str = 'Radius = {}\n'.format(self.r)
out_str += 'Position = ({},{})'.format(self.x, self.y)
return out_str
if __name__ == '__main__':
ball = ball(3, 4, 3)
dist = ball.distance_from_origin()
print(ball) |
#
# PySNMP MIB module CABH-CDP-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CABH-CDP-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:26:22 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint")
clabProjCableHome, = mibBuilder.importSymbols("CLAB-DEF-MIB", "clabProjCableHome")
InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddress", "InetAddressType")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup")
NotificationType, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, Counter64, MibIdentifier, Bits, ObjectIdentity, Integer32, Counter32, Unsigned32, IpAddress, ModuleIdentity, iso = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "Counter64", "MibIdentifier", "Bits", "ObjectIdentity", "Integer32", "Counter32", "Unsigned32", "IpAddress", "ModuleIdentity", "iso")
DisplayString, PhysAddress, TruthValue, TextualConvention, RowStatus, DateAndTime, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "PhysAddress", "TruthValue", "TextualConvention", "RowStatus", "DateAndTime", "TimeStamp")
cabhCdpMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4))
if mibBuilder.loadTexts: cabhCdpMib.setLastUpdated('200412160000Z')
if mibBuilder.loadTexts: cabhCdpMib.setOrganization('CableLabs Broadband Access Department')
cabhCdpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1))
cabhCdpBase = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1))
cabhCdpAddr = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2))
cabhCdpServer = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3))
cabhCdpSetToFactory = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpSetToFactory.setStatus('current')
cabhCdpLanTransCurCount = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpLanTransCurCount.setStatus('current')
cabhCdpLanTransThreshold = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65533))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpLanTransThreshold.setStatus('current')
cabhCdpLanTransAction = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("normal", 1), ("noAssignment", 2))).clone('normal')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpLanTransAction.setStatus('current')
cabhCdpWanDataIpAddrCount = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 63))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpWanDataIpAddrCount.setStatus('current')
cabhCdpLastSetToFactory = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 6), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpLastSetToFactory.setStatus('current')
cabhCdpTimeOffsetSelection = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("useDhcpOption2", 1), ("useSnmpSetOffset", 2))).clone('useDhcpOption2')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpTimeOffsetSelection.setStatus('current')
cabhCdpSnmpSetTimeOffset = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-43200, 46800))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpSnmpSetTimeOffset.setStatus('current')
cabhCdpDaylightSavingTimeEnable = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpDaylightSavingTimeEnable.setStatus('current')
cabhCdpLanAddrTable = MibTable((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1), )
if mibBuilder.loadTexts: cabhCdpLanAddrTable.setStatus('current')
cabhCdpLanAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1), ).setIndexNames((0, "CABH-CDP-MIB", "cabhCdpLanAddrIpType"), (0, "CABH-CDP-MIB", "cabhCdpLanAddrIp"))
if mibBuilder.loadTexts: cabhCdpLanAddrEntry.setStatus('current')
cabhCdpLanAddrIpType = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 1), InetAddressType())
if mibBuilder.loadTexts: cabhCdpLanAddrIpType.setStatus('current')
cabhCdpLanAddrIp = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 2), InetAddress())
if mibBuilder.loadTexts: cabhCdpLanAddrIp.setStatus('current')
cabhCdpLanAddrClientID = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 3), PhysAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cabhCdpLanAddrClientID.setStatus('current')
cabhCdpLanAddrLeaseCreateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 4), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpLanAddrLeaseCreateTime.setStatus('current')
cabhCdpLanAddrLeaseExpireTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 5), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpLanAddrLeaseExpireTime.setStatus('current')
cabhCdpLanAddrMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("mgmtReservationInactive", 1), ("mgmtReservationActive", 2), ("dynamicInactive", 3), ("dynamicActive", 4), ("psReservationInactive", 5), ("psReservationActive", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpLanAddrMethod.setStatus('current')
cabhCdpLanAddrHostName = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 7), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpLanAddrHostName.setStatus('current')
cabhCdpLanAddrRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 8), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cabhCdpLanAddrRowStatus.setStatus('current')
cabhCdpWanDataAddrTable = MibTable((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2), )
if mibBuilder.loadTexts: cabhCdpWanDataAddrTable.setStatus('current')
cabhCdpWanDataAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1), ).setIndexNames((0, "CABH-CDP-MIB", "cabhCdpWanDataAddrIndex"))
if mibBuilder.loadTexts: cabhCdpWanDataAddrEntry.setStatus('current')
cabhCdpWanDataAddrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)))
if mibBuilder.loadTexts: cabhCdpWanDataAddrIndex.setStatus('current')
cabhCdpWanDataAddrClientId = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 80))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cabhCdpWanDataAddrClientId.setStatus('current')
cabhCdpWanDataAddrIpType = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 3), InetAddressType().clone('ipv4')).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpWanDataAddrIpType.setStatus('current')
cabhCdpWanDataAddrIp = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 4), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpWanDataAddrIp.setStatus('current')
cabhCdpWanDataAddrRenewalTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpWanDataAddrRenewalTime.setStatus('deprecated')
cabhCdpWanDataAddrRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 6), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: cabhCdpWanDataAddrRowStatus.setStatus('current')
cabhCdpWanDataAddrLeaseCreateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 7), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpWanDataAddrLeaseCreateTime.setStatus('current')
cabhCdpWanDataAddrLeaseExpireTime = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 8), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpWanDataAddrLeaseExpireTime.setStatus('current')
cabhCdpWanDnsServerTable = MibTable((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3), )
if mibBuilder.loadTexts: cabhCdpWanDnsServerTable.setStatus('current')
cabhCdpWanDnsServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1), ).setIndexNames((0, "CABH-CDP-MIB", "cabhCdpWanDnsServerOrder"))
if mibBuilder.loadTexts: cabhCdpWanDnsServerEntry.setStatus('current')
cabhCdpWanDnsServerOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("primary", 1), ("secondary", 2), ("tertiary", 3))))
if mibBuilder.loadTexts: cabhCdpWanDnsServerOrder.setStatus('current')
cabhCdpWanDnsServerIpType = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1, 2), InetAddressType().clone('ipv4')).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpWanDnsServerIpType.setStatus('current')
cabhCdpWanDnsServerIp = MibTableColumn((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1, 3), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpWanDnsServerIp.setStatus('current')
cabhCdpLanPoolStartType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 1), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpLanPoolStartType.setStatus('current')
cabhCdpLanPoolStart = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 2), InetAddress().clone(hexValue="c0a8000a")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpLanPoolStart.setStatus('current')
cabhCdpLanPoolEndType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 3), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpLanPoolEndType.setStatus('current')
cabhCdpLanPoolEnd = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 4), InetAddress().clone(hexValue="c0a800fe")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpLanPoolEnd.setStatus('current')
cabhCdpServerNetworkNumberType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 5), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerNetworkNumberType.setStatus('current')
cabhCdpServerNetworkNumber = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 6), InetAddress().clone(hexValue="c0a80000")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerNetworkNumber.setStatus('current')
cabhCdpServerSubnetMaskType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 7), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerSubnetMaskType.setStatus('current')
cabhCdpServerSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 8), InetAddress().clone(hexValue="ffffff00")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerSubnetMask.setStatus('current')
cabhCdpServerTimeOffset = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-86400, 86400))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerTimeOffset.setStatus('current')
cabhCdpServerRouterType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 10), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerRouterType.setStatus('current')
cabhCdpServerRouter = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 11), InetAddress().clone(hexValue="c0a80001")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerRouter.setStatus('current')
cabhCdpServerDnsAddressType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 12), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerDnsAddressType.setStatus('current')
cabhCdpServerDnsAddress = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 13), InetAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerDnsAddress.setStatus('current')
cabhCdpServerSyslogAddressType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 14), InetAddressType().clone('ipv4')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerSyslogAddressType.setStatus('current')
cabhCdpServerSyslogAddress = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 15), InetAddress().clone(hexValue="00000000")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerSyslogAddress.setStatus('current')
cabhCdpServerDomainName = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 16), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerDomainName.setStatus('current')
cabhCdpServerTTL = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)).clone(64)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerTTL.setStatus('current')
cabhCdpServerInterfaceMTU = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(68, 4096), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerInterfaceMTU.setStatus('current')
cabhCdpServerVendorSpecific = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 19), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255)).clone(hexValue="")).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerVendorSpecific.setStatus('current')
cabhCdpServerLeaseTime = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 20), Unsigned32().clone(3600)).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerLeaseTime.setStatus('current')
cabhCdpServerDhcpAddressType = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 21), InetAddressType().clone('ipv4')).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpServerDhcpAddressType.setStatus('current')
cabhCdpServerDhcpAddress = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 22), InetAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpServerDhcpAddress.setStatus('current')
cabhCdpServerControl = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("restoreConfig", 1), ("commitConfig", 2))).clone('restoreConfig')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerControl.setStatus('current')
cabhCdpServerCommitStatus = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("commitSucceeded", 1), ("commitNeeded", 2), ("commitFailed", 3))).clone('commitSucceeded')).setMaxAccess("readonly")
if mibBuilder.loadTexts: cabhCdpServerCommitStatus.setStatus('current')
cabhCdpServerUseCableDataNwDnsAddr = MibScalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 25), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cabhCdpServerUseCableDataNwDnsAddr.setStatus('current')
cabhCdpNotification = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 2))
cabhCdpNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 2, 0))
cabhCdpConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3))
cabhCdpCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 1))
cabhCdpGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 2))
cabhCdpBasicCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 1, 3)).setObjects(("CABH-CDP-MIB", "cabhCdpGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cabhCdpBasicCompliance = cabhCdpBasicCompliance.setStatus('current')
cabhCdpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 2, 1)).setObjects(("CABH-CDP-MIB", "cabhCdpSetToFactory"), ("CABH-CDP-MIB", "cabhCdpLanTransCurCount"), ("CABH-CDP-MIB", "cabhCdpLanTransThreshold"), ("CABH-CDP-MIB", "cabhCdpLanTransAction"), ("CABH-CDP-MIB", "cabhCdpWanDataIpAddrCount"), ("CABH-CDP-MIB", "cabhCdpLastSetToFactory"), ("CABH-CDP-MIB", "cabhCdpTimeOffsetSelection"), ("CABH-CDP-MIB", "cabhCdpSnmpSetTimeOffset"), ("CABH-CDP-MIB", "cabhCdpDaylightSavingTimeEnable"), ("CABH-CDP-MIB", "cabhCdpLanAddrClientID"), ("CABH-CDP-MIB", "cabhCdpLanAddrLeaseCreateTime"), ("CABH-CDP-MIB", "cabhCdpLanAddrLeaseExpireTime"), ("CABH-CDP-MIB", "cabhCdpLanAddrMethod"), ("CABH-CDP-MIB", "cabhCdpLanAddrHostName"), ("CABH-CDP-MIB", "cabhCdpLanAddrRowStatus"), ("CABH-CDP-MIB", "cabhCdpWanDataAddrClientId"), ("CABH-CDP-MIB", "cabhCdpWanDataAddrIpType"), ("CABH-CDP-MIB", "cabhCdpWanDataAddrIp"), ("CABH-CDP-MIB", "cabhCdpWanDataAddrRowStatus"), ("CABH-CDP-MIB", "cabhCdpWanDataAddrLeaseCreateTime"), ("CABH-CDP-MIB", "cabhCdpWanDataAddrLeaseExpireTime"), ("CABH-CDP-MIB", "cabhCdpWanDnsServerIpType"), ("CABH-CDP-MIB", "cabhCdpWanDnsServerIp"), ("CABH-CDP-MIB", "cabhCdpLanPoolStartType"), ("CABH-CDP-MIB", "cabhCdpLanPoolStart"), ("CABH-CDP-MIB", "cabhCdpLanPoolEndType"), ("CABH-CDP-MIB", "cabhCdpLanPoolEnd"), ("CABH-CDP-MIB", "cabhCdpServerNetworkNumberType"), ("CABH-CDP-MIB", "cabhCdpServerNetworkNumber"), ("CABH-CDP-MIB", "cabhCdpServerSubnetMaskType"), ("CABH-CDP-MIB", "cabhCdpServerSubnetMask"), ("CABH-CDP-MIB", "cabhCdpServerTimeOffset"), ("CABH-CDP-MIB", "cabhCdpServerRouterType"), ("CABH-CDP-MIB", "cabhCdpServerRouter"), ("CABH-CDP-MIB", "cabhCdpServerDnsAddressType"), ("CABH-CDP-MIB", "cabhCdpServerDnsAddress"), ("CABH-CDP-MIB", "cabhCdpServerSyslogAddressType"), ("CABH-CDP-MIB", "cabhCdpServerSyslogAddress"), ("CABH-CDP-MIB", "cabhCdpServerDomainName"), ("CABH-CDP-MIB", "cabhCdpServerTTL"), ("CABH-CDP-MIB", "cabhCdpServerInterfaceMTU"), ("CABH-CDP-MIB", "cabhCdpServerVendorSpecific"), ("CABH-CDP-MIB", "cabhCdpServerLeaseTime"), ("CABH-CDP-MIB", "cabhCdpServerDhcpAddressType"), ("CABH-CDP-MIB", "cabhCdpServerDhcpAddress"), ("CABH-CDP-MIB", "cabhCdpServerControl"), ("CABH-CDP-MIB", "cabhCdpServerCommitStatus"), ("CABH-CDP-MIB", "cabhCdpServerUseCableDataNwDnsAddr"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cabhCdpGroup = cabhCdpGroup.setStatus('current')
mibBuilder.exportSymbols("CABH-CDP-MIB", cabhCdpSetToFactory=cabhCdpSetToFactory, cabhCdpLanPoolStartType=cabhCdpLanPoolStartType, cabhCdpWanDataAddrLeaseExpireTime=cabhCdpWanDataAddrLeaseExpireTime, cabhCdpWanDataAddrRowStatus=cabhCdpWanDataAddrRowStatus, cabhCdpLanAddrIp=cabhCdpLanAddrIp, cabhCdpWanDnsServerTable=cabhCdpWanDnsServerTable, cabhCdpServerSyslogAddress=cabhCdpServerSyslogAddress, cabhCdpServerLeaseTime=cabhCdpServerLeaseTime, cabhCdpGroups=cabhCdpGroups, cabhCdpServerDhcpAddress=cabhCdpServerDhcpAddress, PYSNMP_MODULE_ID=cabhCdpMib, cabhCdpServerUseCableDataNwDnsAddr=cabhCdpServerUseCableDataNwDnsAddr, cabhCdpLanAddrLeaseCreateTime=cabhCdpLanAddrLeaseCreateTime, cabhCdpWanDataAddrEntry=cabhCdpWanDataAddrEntry, cabhCdpLanTransCurCount=cabhCdpLanTransCurCount, cabhCdpBasicCompliance=cabhCdpBasicCompliance, cabhCdpLanAddrHostName=cabhCdpLanAddrHostName, cabhCdpServerTimeOffset=cabhCdpServerTimeOffset, cabhCdpWanDataIpAddrCount=cabhCdpWanDataIpAddrCount, cabhCdpServerSubnetMaskType=cabhCdpServerSubnetMaskType, cabhCdpServerDhcpAddressType=cabhCdpServerDhcpAddressType, cabhCdpCompliances=cabhCdpCompliances, cabhCdpGroup=cabhCdpGroup, cabhCdpServerNetworkNumber=cabhCdpServerNetworkNumber, cabhCdpBase=cabhCdpBase, cabhCdpLanAddrRowStatus=cabhCdpLanAddrRowStatus, cabhCdpServerRouter=cabhCdpServerRouter, cabhCdpLanPoolStart=cabhCdpLanPoolStart, cabhCdpServerDnsAddressType=cabhCdpServerDnsAddressType, cabhCdpWanDnsServerIp=cabhCdpWanDnsServerIp, cabhCdpLanPoolEnd=cabhCdpLanPoolEnd, cabhCdpServerNetworkNumberType=cabhCdpServerNetworkNumberType, cabhCdpConformance=cabhCdpConformance, cabhCdpDaylightSavingTimeEnable=cabhCdpDaylightSavingTimeEnable, cabhCdpWanDnsServerOrder=cabhCdpWanDnsServerOrder, cabhCdpLanAddrEntry=cabhCdpLanAddrEntry, cabhCdpServerInterfaceMTU=cabhCdpServerInterfaceMTU, cabhCdpServerCommitStatus=cabhCdpServerCommitStatus, cabhCdpLanAddrLeaseExpireTime=cabhCdpLanAddrLeaseExpireTime, cabhCdpSnmpSetTimeOffset=cabhCdpSnmpSetTimeOffset, cabhCdpServerDnsAddress=cabhCdpServerDnsAddress, cabhCdpServerRouterType=cabhCdpServerRouterType, cabhCdpWanDataAddrClientId=cabhCdpWanDataAddrClientId, cabhCdpWanDnsServerEntry=cabhCdpWanDnsServerEntry, cabhCdpLanPoolEndType=cabhCdpLanPoolEndType, cabhCdpServerControl=cabhCdpServerControl, cabhCdpLanTransAction=cabhCdpLanTransAction, cabhCdpServerSubnetMask=cabhCdpServerSubnetMask, cabhCdpNotifications=cabhCdpNotifications, cabhCdpLanAddrIpType=cabhCdpLanAddrIpType, cabhCdpServerSyslogAddressType=cabhCdpServerSyslogAddressType, cabhCdpLanAddrTable=cabhCdpLanAddrTable, cabhCdpWanDataAddrIndex=cabhCdpWanDataAddrIndex, cabhCdpTimeOffsetSelection=cabhCdpTimeOffsetSelection, cabhCdpMib=cabhCdpMib, cabhCdpObjects=cabhCdpObjects, cabhCdpLanAddrClientID=cabhCdpLanAddrClientID, cabhCdpLanTransThreshold=cabhCdpLanTransThreshold, cabhCdpWanDataAddrIpType=cabhCdpWanDataAddrIpType, cabhCdpWanDataAddrIp=cabhCdpWanDataAddrIp, cabhCdpWanDataAddrRenewalTime=cabhCdpWanDataAddrRenewalTime, cabhCdpAddr=cabhCdpAddr, cabhCdpWanDnsServerIpType=cabhCdpWanDnsServerIpType, cabhCdpServerDomainName=cabhCdpServerDomainName, cabhCdpWanDataAddrTable=cabhCdpWanDataAddrTable, cabhCdpServerTTL=cabhCdpServerTTL, cabhCdpLanAddrMethod=cabhCdpLanAddrMethod, cabhCdpLastSetToFactory=cabhCdpLastSetToFactory, cabhCdpServerVendorSpecific=cabhCdpServerVendorSpecific, cabhCdpNotification=cabhCdpNotification, cabhCdpServer=cabhCdpServer, cabhCdpWanDataAddrLeaseCreateTime=cabhCdpWanDataAddrLeaseCreateTime)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_size_constraint, constraints_union, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint')
(clab_proj_cable_home,) = mibBuilder.importSymbols('CLAB-DEF-MIB', 'clabProjCableHome')
(inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddress', 'InetAddressType')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup')
(notification_type, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, counter64, mib_identifier, bits, object_identity, integer32, counter32, unsigned32, ip_address, module_identity, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'Counter64', 'MibIdentifier', 'Bits', 'ObjectIdentity', 'Integer32', 'Counter32', 'Unsigned32', 'IpAddress', 'ModuleIdentity', 'iso')
(display_string, phys_address, truth_value, textual_convention, row_status, date_and_time, time_stamp) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'PhysAddress', 'TruthValue', 'TextualConvention', 'RowStatus', 'DateAndTime', 'TimeStamp')
cabh_cdp_mib = module_identity((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4))
if mibBuilder.loadTexts:
cabhCdpMib.setLastUpdated('200412160000Z')
if mibBuilder.loadTexts:
cabhCdpMib.setOrganization('CableLabs Broadband Access Department')
cabh_cdp_objects = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1))
cabh_cdp_base = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1))
cabh_cdp_addr = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2))
cabh_cdp_server = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3))
cabh_cdp_set_to_factory = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 1), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpSetToFactory.setStatus('current')
cabh_cdp_lan_trans_cur_count = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 2), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpLanTransCurCount.setStatus('current')
cabh_cdp_lan_trans_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65533))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpLanTransThreshold.setStatus('current')
cabh_cdp_lan_trans_action = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('normal', 1), ('noAssignment', 2))).clone('normal')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpLanTransAction.setStatus('current')
cabh_cdp_wan_data_ip_addr_count = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 63))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpWanDataIpAddrCount.setStatus('current')
cabh_cdp_last_set_to_factory = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 6), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpLastSetToFactory.setStatus('current')
cabh_cdp_time_offset_selection = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('useDhcpOption2', 1), ('useSnmpSetOffset', 2))).clone('useDhcpOption2')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpTimeOffsetSelection.setStatus('current')
cabh_cdp_snmp_set_time_offset = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-43200, 46800))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpSnmpSetTimeOffset.setStatus('current')
cabh_cdp_daylight_saving_time_enable = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpDaylightSavingTimeEnable.setStatus('current')
cabh_cdp_lan_addr_table = mib_table((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1))
if mibBuilder.loadTexts:
cabhCdpLanAddrTable.setStatus('current')
cabh_cdp_lan_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1)).setIndexNames((0, 'CABH-CDP-MIB', 'cabhCdpLanAddrIpType'), (0, 'CABH-CDP-MIB', 'cabhCdpLanAddrIp'))
if mibBuilder.loadTexts:
cabhCdpLanAddrEntry.setStatus('current')
cabh_cdp_lan_addr_ip_type = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 1), inet_address_type())
if mibBuilder.loadTexts:
cabhCdpLanAddrIpType.setStatus('current')
cabh_cdp_lan_addr_ip = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 2), inet_address())
if mibBuilder.loadTexts:
cabhCdpLanAddrIp.setStatus('current')
cabh_cdp_lan_addr_client_id = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 3), phys_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cabhCdpLanAddrClientID.setStatus('current')
cabh_cdp_lan_addr_lease_create_time = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 4), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpLanAddrLeaseCreateTime.setStatus('current')
cabh_cdp_lan_addr_lease_expire_time = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 5), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpLanAddrLeaseExpireTime.setStatus('current')
cabh_cdp_lan_addr_method = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('mgmtReservationInactive', 1), ('mgmtReservationActive', 2), ('dynamicInactive', 3), ('dynamicActive', 4), ('psReservationInactive', 5), ('psReservationActive', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpLanAddrMethod.setStatus('current')
cabh_cdp_lan_addr_host_name = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 7), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpLanAddrHostName.setStatus('current')
cabh_cdp_lan_addr_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 1, 1, 8), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cabhCdpLanAddrRowStatus.setStatus('current')
cabh_cdp_wan_data_addr_table = mib_table((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2))
if mibBuilder.loadTexts:
cabhCdpWanDataAddrTable.setStatus('current')
cabh_cdp_wan_data_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1)).setIndexNames((0, 'CABH-CDP-MIB', 'cabhCdpWanDataAddrIndex'))
if mibBuilder.loadTexts:
cabhCdpWanDataAddrEntry.setStatus('current')
cabh_cdp_wan_data_addr_index = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)))
if mibBuilder.loadTexts:
cabhCdpWanDataAddrIndex.setStatus('current')
cabh_cdp_wan_data_addr_client_id = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 80))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cabhCdpWanDataAddrClientId.setStatus('current')
cabh_cdp_wan_data_addr_ip_type = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 3), inet_address_type().clone('ipv4')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpWanDataAddrIpType.setStatus('current')
cabh_cdp_wan_data_addr_ip = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 4), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpWanDataAddrIp.setStatus('current')
cabh_cdp_wan_data_addr_renewal_time = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpWanDataAddrRenewalTime.setStatus('deprecated')
cabh_cdp_wan_data_addr_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 6), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
cabhCdpWanDataAddrRowStatus.setStatus('current')
cabh_cdp_wan_data_addr_lease_create_time = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 7), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpWanDataAddrLeaseCreateTime.setStatus('current')
cabh_cdp_wan_data_addr_lease_expire_time = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 2, 1, 8), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpWanDataAddrLeaseExpireTime.setStatus('current')
cabh_cdp_wan_dns_server_table = mib_table((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3))
if mibBuilder.loadTexts:
cabhCdpWanDnsServerTable.setStatus('current')
cabh_cdp_wan_dns_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1)).setIndexNames((0, 'CABH-CDP-MIB', 'cabhCdpWanDnsServerOrder'))
if mibBuilder.loadTexts:
cabhCdpWanDnsServerEntry.setStatus('current')
cabh_cdp_wan_dns_server_order = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('primary', 1), ('secondary', 2), ('tertiary', 3))))
if mibBuilder.loadTexts:
cabhCdpWanDnsServerOrder.setStatus('current')
cabh_cdp_wan_dns_server_ip_type = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1, 2), inet_address_type().clone('ipv4')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpWanDnsServerIpType.setStatus('current')
cabh_cdp_wan_dns_server_ip = mib_table_column((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 2, 3, 1, 3), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpWanDnsServerIp.setStatus('current')
cabh_cdp_lan_pool_start_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 1), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpLanPoolStartType.setStatus('current')
cabh_cdp_lan_pool_start = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 2), inet_address().clone(hexValue='c0a8000a')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpLanPoolStart.setStatus('current')
cabh_cdp_lan_pool_end_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 3), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpLanPoolEndType.setStatus('current')
cabh_cdp_lan_pool_end = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 4), inet_address().clone(hexValue='c0a800fe')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpLanPoolEnd.setStatus('current')
cabh_cdp_server_network_number_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 5), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerNetworkNumberType.setStatus('current')
cabh_cdp_server_network_number = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 6), inet_address().clone(hexValue='c0a80000')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerNetworkNumber.setStatus('current')
cabh_cdp_server_subnet_mask_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 7), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerSubnetMaskType.setStatus('current')
cabh_cdp_server_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 8), inet_address().clone(hexValue='ffffff00')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerSubnetMask.setStatus('current')
cabh_cdp_server_time_offset = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 9), integer32().subtype(subtypeSpec=value_range_constraint(-86400, 86400))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerTimeOffset.setStatus('current')
cabh_cdp_server_router_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 10), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerRouterType.setStatus('current')
cabh_cdp_server_router = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 11), inet_address().clone(hexValue='c0a80001')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerRouter.setStatus('current')
cabh_cdp_server_dns_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 12), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerDnsAddressType.setStatus('current')
cabh_cdp_server_dns_address = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 13), inet_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerDnsAddress.setStatus('current')
cabh_cdp_server_syslog_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 14), inet_address_type().clone('ipv4')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerSyslogAddressType.setStatus('current')
cabh_cdp_server_syslog_address = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 15), inet_address().clone(hexValue='00000000')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerSyslogAddress.setStatus('current')
cabh_cdp_server_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 16), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerDomainName.setStatus('current')
cabh_cdp_server_ttl = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 17), integer32().subtype(subtypeSpec=value_range_constraint(1, 255)).clone(64)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerTTL.setStatus('current')
cabh_cdp_server_interface_mtu = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 18), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(68, 4096)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerInterfaceMTU.setStatus('current')
cabh_cdp_server_vendor_specific = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 19), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255)).clone(hexValue='')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerVendorSpecific.setStatus('current')
cabh_cdp_server_lease_time = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 20), unsigned32().clone(3600)).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerLeaseTime.setStatus('current')
cabh_cdp_server_dhcp_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 21), inet_address_type().clone('ipv4')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpServerDhcpAddressType.setStatus('current')
cabh_cdp_server_dhcp_address = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 22), inet_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpServerDhcpAddress.setStatus('current')
cabh_cdp_server_control = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('restoreConfig', 1), ('commitConfig', 2))).clone('restoreConfig')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerControl.setStatus('current')
cabh_cdp_server_commit_status = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('commitSucceeded', 1), ('commitNeeded', 2), ('commitFailed', 3))).clone('commitSucceeded')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cabhCdpServerCommitStatus.setStatus('current')
cabh_cdp_server_use_cable_data_nw_dns_addr = mib_scalar((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 1, 3, 25), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cabhCdpServerUseCableDataNwDnsAddr.setStatus('current')
cabh_cdp_notification = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 2))
cabh_cdp_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 2, 0))
cabh_cdp_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3))
cabh_cdp_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 1))
cabh_cdp_groups = mib_identifier((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 2))
cabh_cdp_basic_compliance = module_compliance((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 1, 3)).setObjects(('CABH-CDP-MIB', 'cabhCdpGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cabh_cdp_basic_compliance = cabhCdpBasicCompliance.setStatus('current')
cabh_cdp_group = object_group((1, 3, 6, 1, 4, 1, 4491, 2, 4, 4, 3, 2, 1)).setObjects(('CABH-CDP-MIB', 'cabhCdpSetToFactory'), ('CABH-CDP-MIB', 'cabhCdpLanTransCurCount'), ('CABH-CDP-MIB', 'cabhCdpLanTransThreshold'), ('CABH-CDP-MIB', 'cabhCdpLanTransAction'), ('CABH-CDP-MIB', 'cabhCdpWanDataIpAddrCount'), ('CABH-CDP-MIB', 'cabhCdpLastSetToFactory'), ('CABH-CDP-MIB', 'cabhCdpTimeOffsetSelection'), ('CABH-CDP-MIB', 'cabhCdpSnmpSetTimeOffset'), ('CABH-CDP-MIB', 'cabhCdpDaylightSavingTimeEnable'), ('CABH-CDP-MIB', 'cabhCdpLanAddrClientID'), ('CABH-CDP-MIB', 'cabhCdpLanAddrLeaseCreateTime'), ('CABH-CDP-MIB', 'cabhCdpLanAddrLeaseExpireTime'), ('CABH-CDP-MIB', 'cabhCdpLanAddrMethod'), ('CABH-CDP-MIB', 'cabhCdpLanAddrHostName'), ('CABH-CDP-MIB', 'cabhCdpLanAddrRowStatus'), ('CABH-CDP-MIB', 'cabhCdpWanDataAddrClientId'), ('CABH-CDP-MIB', 'cabhCdpWanDataAddrIpType'), ('CABH-CDP-MIB', 'cabhCdpWanDataAddrIp'), ('CABH-CDP-MIB', 'cabhCdpWanDataAddrRowStatus'), ('CABH-CDP-MIB', 'cabhCdpWanDataAddrLeaseCreateTime'), ('CABH-CDP-MIB', 'cabhCdpWanDataAddrLeaseExpireTime'), ('CABH-CDP-MIB', 'cabhCdpWanDnsServerIpType'), ('CABH-CDP-MIB', 'cabhCdpWanDnsServerIp'), ('CABH-CDP-MIB', 'cabhCdpLanPoolStartType'), ('CABH-CDP-MIB', 'cabhCdpLanPoolStart'), ('CABH-CDP-MIB', 'cabhCdpLanPoolEndType'), ('CABH-CDP-MIB', 'cabhCdpLanPoolEnd'), ('CABH-CDP-MIB', 'cabhCdpServerNetworkNumberType'), ('CABH-CDP-MIB', 'cabhCdpServerNetworkNumber'), ('CABH-CDP-MIB', 'cabhCdpServerSubnetMaskType'), ('CABH-CDP-MIB', 'cabhCdpServerSubnetMask'), ('CABH-CDP-MIB', 'cabhCdpServerTimeOffset'), ('CABH-CDP-MIB', 'cabhCdpServerRouterType'), ('CABH-CDP-MIB', 'cabhCdpServerRouter'), ('CABH-CDP-MIB', 'cabhCdpServerDnsAddressType'), ('CABH-CDP-MIB', 'cabhCdpServerDnsAddress'), ('CABH-CDP-MIB', 'cabhCdpServerSyslogAddressType'), ('CABH-CDP-MIB', 'cabhCdpServerSyslogAddress'), ('CABH-CDP-MIB', 'cabhCdpServerDomainName'), ('CABH-CDP-MIB', 'cabhCdpServerTTL'), ('CABH-CDP-MIB', 'cabhCdpServerInterfaceMTU'), ('CABH-CDP-MIB', 'cabhCdpServerVendorSpecific'), ('CABH-CDP-MIB', 'cabhCdpServerLeaseTime'), ('CABH-CDP-MIB', 'cabhCdpServerDhcpAddressType'), ('CABH-CDP-MIB', 'cabhCdpServerDhcpAddress'), ('CABH-CDP-MIB', 'cabhCdpServerControl'), ('CABH-CDP-MIB', 'cabhCdpServerCommitStatus'), ('CABH-CDP-MIB', 'cabhCdpServerUseCableDataNwDnsAddr'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cabh_cdp_group = cabhCdpGroup.setStatus('current')
mibBuilder.exportSymbols('CABH-CDP-MIB', cabhCdpSetToFactory=cabhCdpSetToFactory, cabhCdpLanPoolStartType=cabhCdpLanPoolStartType, cabhCdpWanDataAddrLeaseExpireTime=cabhCdpWanDataAddrLeaseExpireTime, cabhCdpWanDataAddrRowStatus=cabhCdpWanDataAddrRowStatus, cabhCdpLanAddrIp=cabhCdpLanAddrIp, cabhCdpWanDnsServerTable=cabhCdpWanDnsServerTable, cabhCdpServerSyslogAddress=cabhCdpServerSyslogAddress, cabhCdpServerLeaseTime=cabhCdpServerLeaseTime, cabhCdpGroups=cabhCdpGroups, cabhCdpServerDhcpAddress=cabhCdpServerDhcpAddress, PYSNMP_MODULE_ID=cabhCdpMib, cabhCdpServerUseCableDataNwDnsAddr=cabhCdpServerUseCableDataNwDnsAddr, cabhCdpLanAddrLeaseCreateTime=cabhCdpLanAddrLeaseCreateTime, cabhCdpWanDataAddrEntry=cabhCdpWanDataAddrEntry, cabhCdpLanTransCurCount=cabhCdpLanTransCurCount, cabhCdpBasicCompliance=cabhCdpBasicCompliance, cabhCdpLanAddrHostName=cabhCdpLanAddrHostName, cabhCdpServerTimeOffset=cabhCdpServerTimeOffset, cabhCdpWanDataIpAddrCount=cabhCdpWanDataIpAddrCount, cabhCdpServerSubnetMaskType=cabhCdpServerSubnetMaskType, cabhCdpServerDhcpAddressType=cabhCdpServerDhcpAddressType, cabhCdpCompliances=cabhCdpCompliances, cabhCdpGroup=cabhCdpGroup, cabhCdpServerNetworkNumber=cabhCdpServerNetworkNumber, cabhCdpBase=cabhCdpBase, cabhCdpLanAddrRowStatus=cabhCdpLanAddrRowStatus, cabhCdpServerRouter=cabhCdpServerRouter, cabhCdpLanPoolStart=cabhCdpLanPoolStart, cabhCdpServerDnsAddressType=cabhCdpServerDnsAddressType, cabhCdpWanDnsServerIp=cabhCdpWanDnsServerIp, cabhCdpLanPoolEnd=cabhCdpLanPoolEnd, cabhCdpServerNetworkNumberType=cabhCdpServerNetworkNumberType, cabhCdpConformance=cabhCdpConformance, cabhCdpDaylightSavingTimeEnable=cabhCdpDaylightSavingTimeEnable, cabhCdpWanDnsServerOrder=cabhCdpWanDnsServerOrder, cabhCdpLanAddrEntry=cabhCdpLanAddrEntry, cabhCdpServerInterfaceMTU=cabhCdpServerInterfaceMTU, cabhCdpServerCommitStatus=cabhCdpServerCommitStatus, cabhCdpLanAddrLeaseExpireTime=cabhCdpLanAddrLeaseExpireTime, cabhCdpSnmpSetTimeOffset=cabhCdpSnmpSetTimeOffset, cabhCdpServerDnsAddress=cabhCdpServerDnsAddress, cabhCdpServerRouterType=cabhCdpServerRouterType, cabhCdpWanDataAddrClientId=cabhCdpWanDataAddrClientId, cabhCdpWanDnsServerEntry=cabhCdpWanDnsServerEntry, cabhCdpLanPoolEndType=cabhCdpLanPoolEndType, cabhCdpServerControl=cabhCdpServerControl, cabhCdpLanTransAction=cabhCdpLanTransAction, cabhCdpServerSubnetMask=cabhCdpServerSubnetMask, cabhCdpNotifications=cabhCdpNotifications, cabhCdpLanAddrIpType=cabhCdpLanAddrIpType, cabhCdpServerSyslogAddressType=cabhCdpServerSyslogAddressType, cabhCdpLanAddrTable=cabhCdpLanAddrTable, cabhCdpWanDataAddrIndex=cabhCdpWanDataAddrIndex, cabhCdpTimeOffsetSelection=cabhCdpTimeOffsetSelection, cabhCdpMib=cabhCdpMib, cabhCdpObjects=cabhCdpObjects, cabhCdpLanAddrClientID=cabhCdpLanAddrClientID, cabhCdpLanTransThreshold=cabhCdpLanTransThreshold, cabhCdpWanDataAddrIpType=cabhCdpWanDataAddrIpType, cabhCdpWanDataAddrIp=cabhCdpWanDataAddrIp, cabhCdpWanDataAddrRenewalTime=cabhCdpWanDataAddrRenewalTime, cabhCdpAddr=cabhCdpAddr, cabhCdpWanDnsServerIpType=cabhCdpWanDnsServerIpType, cabhCdpServerDomainName=cabhCdpServerDomainName, cabhCdpWanDataAddrTable=cabhCdpWanDataAddrTable, cabhCdpServerTTL=cabhCdpServerTTL, cabhCdpLanAddrMethod=cabhCdpLanAddrMethod, cabhCdpLastSetToFactory=cabhCdpLastSetToFactory, cabhCdpServerVendorSpecific=cabhCdpServerVendorSpecific, cabhCdpNotification=cabhCdpNotification, cabhCdpServer=cabhCdpServer, cabhCdpWanDataAddrLeaseCreateTime=cabhCdpWanDataAddrLeaseCreateTime) |
class Animal:
def __init__(self,name,legs):
self.name = name
self.legs = legs
class Bear(Animal):
def __init__(self,name,legs=4,hibernate='yes'):
self.name = name
self.legs = legs
self.hibernate = hibernate
yogi = Bear('Yogi')
print(yogi.name)
print(yogi.legs)
print(yogi.hibernate) | class Animal:
def __init__(self, name, legs):
self.name = name
self.legs = legs
class Bear(Animal):
def __init__(self, name, legs=4, hibernate='yes'):
self.name = name
self.legs = legs
self.hibernate = hibernate
yogi = bear('Yogi')
print(yogi.name)
print(yogi.legs)
print(yogi.hibernate) |
year = int(input("Enter year: "))
if year % 400 == 0:
print('Entered year is a leap year.')
elif year % 100 != 0 and year % 4 == 0:
print('Entered year is a leap year.')
else:
print('Not a leap year.')
| year = int(input('Enter year: '))
if year % 400 == 0:
print('Entered year is a leap year.')
elif year % 100 != 0 and year % 4 == 0:
print('Entered year is a leap year.')
else:
print('Not a leap year.') |
class Solution:
def nthUglyNumber(self, n: int, a: int, b: int, c: int) -> int:
ab = (a * b) // math.gcd(a, b)
ac = (a * c) // math.gcd(a, c)
bc = (b * c) // math.gcd(b, c)
abc = (ab * c) // math.gcd(ab, c)
lo, hi = 1, 2 * 10 ** 9
while lo < hi:
mid = (lo + hi) >> 1
count = mid // a + mid // b + mid // c - mid // ab - mid // ac - mid // bc + mid // abc;
if count < n:
lo = mid + 1
else:
hi = mid
return lo
| class Solution:
def nth_ugly_number(self, n: int, a: int, b: int, c: int) -> int:
ab = a * b // math.gcd(a, b)
ac = a * c // math.gcd(a, c)
bc = b * c // math.gcd(b, c)
abc = ab * c // math.gcd(ab, c)
(lo, hi) = (1, 2 * 10 ** 9)
while lo < hi:
mid = lo + hi >> 1
count = mid // a + mid // b + mid // c - mid // ab - mid // ac - mid // bc + mid // abc
if count < n:
lo = mid + 1
else:
hi = mid
return lo |
# https://leetcode.com/problems/sum-of-root-to-leaf-binary-numbers
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def __init__(self):
self.ans = 0
def traverse(self, node, cur):
if not node.left and not node.right:
self.ans += int("".join(cur), 2)
return
if node.left:
cur.append(str(node.left.val))
self.traverse(node.left, cur)
cur.pop()
if node.right:
cur.append(str(node.right.val))
self.traverse(node.right, cur)
cur.pop()
def sumRootToLeaf(self, root):
if not root:
return 0
self.traverse(root, [str(root.val)])
return self.ans
| class Solution:
def __init__(self):
self.ans = 0
def traverse(self, node, cur):
if not node.left and (not node.right):
self.ans += int(''.join(cur), 2)
return
if node.left:
cur.append(str(node.left.val))
self.traverse(node.left, cur)
cur.pop()
if node.right:
cur.append(str(node.right.val))
self.traverse(node.right, cur)
cur.pop()
def sum_root_to_leaf(self, root):
if not root:
return 0
self.traverse(root, [str(root.val)])
return self.ans |
class TimeInterval:
def __init__(self, earliest, latest):
self._earliest = earliest
self._latest = latest
@property
def earliest(self):
return self._earliest
@property
def latest(self):
return self._latest
| class Timeinterval:
def __init__(self, earliest, latest):
self._earliest = earliest
self._latest = latest
@property
def earliest(self):
return self._earliest
@property
def latest(self):
return self._latest |
#
# This file contains the Python code from Program 12.2 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R. Preiss, P.Eng. All rights reserved.
#
# http://www.brpreiss.com/books/opus7/programs/pgm12_02.txt
#
class SetAsArray(Set):
def __init__(self, n):
super(SetAsArray, self).__init__(n)
self._array = Array(self._universeSize)
for item in xrange(0, self._universeSize):
self._array[item] = False
# ...
| class Setasarray(Set):
def __init__(self, n):
super(SetAsArray, self).__init__(n)
self._array = array(self._universeSize)
for item in xrange(0, self._universeSize):
self._array[item] = False |
#!/usr/bin/env python3 # makes the terminal know this is in python
x = 9 #Set variables
y = 3
#Arithmetic Operators
print(x+y) # Addition
print(x-y) # Subtraction
print(x*y) # Multiplication
print(x/y) # Division
print(x%y) # Modulus (remainder)
print(x**y) # Exponentiation (to the power of)
x = 9.191823 # Make x into a complicated float to show the effect of floor division
print(x//y) # Floor Division (divide but get rid of the decimal will ALWAYS round down)
# how many whole times does y go into x
# Assignment Operators
x = 9 # set x back to 9. Single equal ASSIGNS the value. Double equals is boolean
x += 3 # take the previous value of x and add 3. So x is now 12
print(x)
x = 9 # set x back to 9.
x -= 3 # take the previous value of x and subtract 3. So x is now 6
print(x)
x = 9 # set x back to 9
x *= 3 # take the previous value of x and multiply by 3. x = 27
print(x)
x = 9 # set x back to 9
x /= 3 # take the previous value of x and divide 3. x = 3
print(x)
x = 9 # set x back to 9
x **= 3 # take the previous value of x and put it to the power of 3. x = 9^3
print(x)
# Comparison Operators - Booleans
x = 9
y = 3
print(x==y) # is x the same as y? In this case False
print(x!=y) # is x different than y? In this case True
print(x>y) # is x greater than y? In this case True
print(x<y) # is x less than y? In this case False
print(x>=y) # is x greater than or equal to y? In this case True
print(x<=y) # is x less than or equal to y? In this case False | x = 9
y = 3
print(x + y)
print(x - y)
print(x * y)
print(x / y)
print(x % y)
print(x ** y)
x = 9.191823
print(x // y)
x = 9
x += 3
print(x)
x = 9
x -= 3
print(x)
x = 9
x *= 3
print(x)
x = 9
x /= 3
print(x)
x = 9
x **= 3
print(x)
x = 9
y = 3
print(x == y)
print(x != y)
print(x > y)
print(x < y)
print(x >= y)
print(x <= y) |
def convert(value, newType):
try:
return newType(value)
except ValueError:
return None
| def convert(value, newType):
try:
return new_type(value)
except ValueError:
return None |
class Node:
def __init__(self,value=None):
self.value = value
self.next = None
class CircularSinglyLinkedList:
def __init__(self):
self.head = None
self.tail = None
def __iter__(self):
'''to iterate objects of this class with "in"-keyword'''
node = self.head
while node:
yield node.value
if node.next == self.head:
break
node = node.next
def insert(self,value,index=-1):
newNode = Node(value)
if self.head is None:
newNode.next = newNode
self.head = newNode
self.tail = newNode
elif index == 0:
newNode.next = self.head
self.head = newNode
self.tail.next = newNode
elif index == -1:
newNode.next = self.head
self.tail.next = newNode
self.tail = newNode
else:
i = -2
flag=True
temp = self.head
while i<index-3:
temp = temp.next
if temp is None:
print(f"could not insert node : length of list is {i+3} but index given was {index}")
flag =False
break
i+=1
if flag:
if temp.next == self.head:
self.tail = newNode
newNode.next= temp.next
temp.next = newNode
def traverse(self):
if self.head is None:
print("list is empty")
else:
temp = self.head
while temp:
print(temp.value)
temp = temp.next
if temp == self.head:
temp = None
def search(self,nodevalue):
if self.head is None:
print("not found, list is empty")
else:
temp = self.head
i=0
while temp:
if temp.value == nodevalue:
return f"value {nodevalue} found at index {i}"
i+=1
temp = temp.next
if temp==self.head:
return f"value {nodevalue} not found"
def pop(self,index=-1):
if self.head is None:
print("list is empty")
elif index == 0:
if self.head.next is self.head:
self.head = None
self.tail =None
else:
self.head=self.head.next
self.tail.next = self.head
elif index == -1:
temp = self.head
while temp.next.next!=self.head:
temp=temp.next
temp.next = self.head
self.tail = temp
else:
i = -2
flag=True
temp = self.head
while i<index-3:
temp = temp.next
if (temp is self.head) or (temp.next is self.head):
print(f"could not delete node : length of list is {i+3} but index given was {index}")
flag =False
break
i+=1
if flag:
if temp.next.next == self.head:
temp.next = self.head
self.tail=temp
else:
temp.next = temp.next.next
csll = CircularSinglyLinkedList()
csll.insert(1)
csll.insert(2)
csll.insert(3)
csll.insert(4)
csll.insert(5)
csll.insert(0,0)
csll.insert(7,6)
print([i for i in csll])
print(f"tail: {csll.tail.value}")
print(f"tail.next: {csll.tail.next.value}")
csll.traverse()
print(csll.search(4))
print(csll.search(79))
print(csll.search(7))
print(f"before pop(): {[i for i in csll]}")
csll.pop(3)
print(f"before pop(): {[i for i in csll]}")
| class Node:
def __init__(self, value=None):
self.value = value
self.next = None
class Circularsinglylinkedlist:
def __init__(self):
self.head = None
self.tail = None
def __iter__(self):
"""to iterate objects of this class with "in"-keyword"""
node = self.head
while node:
yield node.value
if node.next == self.head:
break
node = node.next
def insert(self, value, index=-1):
new_node = node(value)
if self.head is None:
newNode.next = newNode
self.head = newNode
self.tail = newNode
elif index == 0:
newNode.next = self.head
self.head = newNode
self.tail.next = newNode
elif index == -1:
newNode.next = self.head
self.tail.next = newNode
self.tail = newNode
else:
i = -2
flag = True
temp = self.head
while i < index - 3:
temp = temp.next
if temp is None:
print(f'could not insert node : length of list is {i + 3} but index given was {index}')
flag = False
break
i += 1
if flag:
if temp.next == self.head:
self.tail = newNode
newNode.next = temp.next
temp.next = newNode
def traverse(self):
if self.head is None:
print('list is empty')
else:
temp = self.head
while temp:
print(temp.value)
temp = temp.next
if temp == self.head:
temp = None
def search(self, nodevalue):
if self.head is None:
print('not found, list is empty')
else:
temp = self.head
i = 0
while temp:
if temp.value == nodevalue:
return f'value {nodevalue} found at index {i}'
i += 1
temp = temp.next
if temp == self.head:
return f'value {nodevalue} not found'
def pop(self, index=-1):
if self.head is None:
print('list is empty')
elif index == 0:
if self.head.next is self.head:
self.head = None
self.tail = None
else:
self.head = self.head.next
self.tail.next = self.head
elif index == -1:
temp = self.head
while temp.next.next != self.head:
temp = temp.next
temp.next = self.head
self.tail = temp
else:
i = -2
flag = True
temp = self.head
while i < index - 3:
temp = temp.next
if temp is self.head or temp.next is self.head:
print(f'could not delete node : length of list is {i + 3} but index given was {index}')
flag = False
break
i += 1
if flag:
if temp.next.next == self.head:
temp.next = self.head
self.tail = temp
else:
temp.next = temp.next.next
csll = circular_singly_linked_list()
csll.insert(1)
csll.insert(2)
csll.insert(3)
csll.insert(4)
csll.insert(5)
csll.insert(0, 0)
csll.insert(7, 6)
print([i for i in csll])
print(f'tail: {csll.tail.value}')
print(f'tail.next: {csll.tail.next.value}')
csll.traverse()
print(csll.search(4))
print(csll.search(79))
print(csll.search(7))
print(f'before pop(): {[i for i in csll]}')
csll.pop(3)
print(f'before pop(): {[i for i in csll]}') |
class Solution:
ans = 0
def findPathNum(self, i, j, grid: List[List[int]], curLen, pLen)->None:
if(grid[i][j]==2):
if(pLen-1==curLen):
self.ans+=1
return
elif (grid[i][j]==-1):
return
curLen+=1
grid[i][j]=-1
if(i-1>=0):
self.findPathNum(i-1, j, grid, curLen, pLen)
if(j-1>=0):
self.findPathNum(i, j-1, grid, curLen, pLen)
if(i+1<len(grid)):
self.findPathNum(i+1, j, grid, curLen, pLen)
if(j+1<len(grid[0])):
self.findPathNum(i, j+1, grid, curLen, pLen)
grid[i][j]=0
def uniquePathsIII(self, grid: List[List[int]]) -> int:
pathLen = 0
start = (0, 0)
for i in range(len(grid)):
for j in range(len(grid[0])):
if(grid[i][j]!=-1):
pathLen+=1
if(grid[i][j]==1):
start = (i, j)
self.findPathNum(start[0], start[1], grid, 0, pathLen)
return self.ans | class Solution:
ans = 0
def find_path_num(self, i, j, grid: List[List[int]], curLen, pLen) -> None:
if grid[i][j] == 2:
if pLen - 1 == curLen:
self.ans += 1
return
elif grid[i][j] == -1:
return
cur_len += 1
grid[i][j] = -1
if i - 1 >= 0:
self.findPathNum(i - 1, j, grid, curLen, pLen)
if j - 1 >= 0:
self.findPathNum(i, j - 1, grid, curLen, pLen)
if i + 1 < len(grid):
self.findPathNum(i + 1, j, grid, curLen, pLen)
if j + 1 < len(grid[0]):
self.findPathNum(i, j + 1, grid, curLen, pLen)
grid[i][j] = 0
def unique_paths_iii(self, grid: List[List[int]]) -> int:
path_len = 0
start = (0, 0)
for i in range(len(grid)):
for j in range(len(grid[0])):
if grid[i][j] != -1:
path_len += 1
if grid[i][j] == 1:
start = (i, j)
self.findPathNum(start[0], start[1], grid, 0, pathLen)
return self.ans |
class BoxDriveAPI():
host = None
key = None
secret = None
access_token = None
access_token_expiration = None
def __init__(self, host, key, secret):
# the function that is executed when
# an instance of the class is created
self.host = host
self.key = key
self.secret = secret
try:
self.access_token = self.get_access_token()
if self.access_token is None:
raise Exception("Request for access token failed.")
except Exception as e:
print(e)
else:
self.access_token_expiration = time.time() + 3500
def get_access_token(self):
# the function that is
# used to request the JWT
try:
# build the JWT and store
# in the variable `token_body`
# request an access token
request = requests.post(self.host, data=token_body)
# optional: raise exception for status code
request.raise_for_status()
except Exception as e:
print(e)
return None
else:
# assuming the response's structure is
# {"access_token": ""}
return request.json()['access_token']
class Decorators():
@staticmethod
def refreshToken(decorated):
# the function that is used to check
# the JWT and refresh if necessary
def wrapper(api, *args, **kwargs):
if time.time() > api.access_token_expiration:
api.get_access_token()
return decorated(api,*args,**kwargs)
return wrapper
@Decorators.refreshToken
def someRequest():
# make our API request
pass | class Boxdriveapi:
host = None
key = None
secret = None
access_token = None
access_token_expiration = None
def __init__(self, host, key, secret):
self.host = host
self.key = key
self.secret = secret
try:
self.access_token = self.get_access_token()
if self.access_token is None:
raise exception('Request for access token failed.')
except Exception as e:
print(e)
else:
self.access_token_expiration = time.time() + 3500
def get_access_token(self):
try:
request = requests.post(self.host, data=token_body)
request.raise_for_status()
except Exception as e:
print(e)
return None
else:
return request.json()['access_token']
class Decorators:
@staticmethod
def refresh_token(decorated):
def wrapper(api, *args, **kwargs):
if time.time() > api.access_token_expiration:
api.get_access_token()
return decorated(api, *args, **kwargs)
return wrapper
@Decorators.refreshToken
def some_request():
pass |
print(not None)
print(not False)
print(not True)
print(not 0)
print(not 1)
print(not -1)
print(not ())
print(not (1,))
print(not [])
print(not [1,])
print(not {})
print(not {1:1})
| print(not None)
print(not False)
print(not True)
print(not 0)
print(not 1)
print(not -1)
print(not ())
print(not (1,))
print(not [])
print(not [1])
print(not {})
print(not {1: 1}) |
tot = 0
b = int(input())
for i in range(b):
a = list(map(float, input().split()))
if(a[0]==1001):
tot+=a[1]*1.5
elif(a[0]==1002):
tot+=a[1]*2.5
elif(a[0]==1003):
tot+=a[1]*3.5
elif(a[0]==1004):
tot+=a[1]*4.5
elif(a[0]==1005):
tot+=a[1]*5.5
print("%.2f" % (tot)) | tot = 0
b = int(input())
for i in range(b):
a = list(map(float, input().split()))
if a[0] == 1001:
tot += a[1] * 1.5
elif a[0] == 1002:
tot += a[1] * 2.5
elif a[0] == 1003:
tot += a[1] * 3.5
elif a[0] == 1004:
tot += a[1] * 4.5
elif a[0] == 1005:
tot += a[1] * 5.5
print('%.2f' % tot) |
def division(a, b):
if a == b:
return 1
if a < b:
return 0
quotient = 1
temp_number = b
while temp_number + b <= a:
quotient += 1
temp_number += b
return quotient
print(division(1200, 3))
| def division(a, b):
if a == b:
return 1
if a < b:
return 0
quotient = 1
temp_number = b
while temp_number + b <= a:
quotient += 1
temp_number += b
return quotient
print(division(1200, 3)) |
index = []
def createIndex():
for file in ["..\data\subgraph\hop1", "..\data\subgraph\hop2", "..\data\subgraph\hop3"]:
with open(file) as f:
edges = [edge.rstrip() for edge in f]
arr = []
for edge in edges:
arr2 = []
arr3 = []
x = edge.split(',')
y = x[1].split(' ')
arr2.append(int(x[0]))
for e in y:
z = e.split('-')
arr4 = [int(z[0]), int(z[1])]
arr3.append(arr4)
arr2.append(arr3)
arr.append(arr2)
index.append(arr)
return index
def get(hop, node):
for x in index[hop]:
if x[0] == node:
return x[1]
#
# subgraph = get(2, 114)
# print(subgraph)
| index = []
def create_index():
for file in ['..\\data\\subgraph\\hop1', '..\\data\\subgraph\\hop2', '..\\data\\subgraph\\hop3']:
with open(file) as f:
edges = [edge.rstrip() for edge in f]
arr = []
for edge in edges:
arr2 = []
arr3 = []
x = edge.split(',')
y = x[1].split(' ')
arr2.append(int(x[0]))
for e in y:
z = e.split('-')
arr4 = [int(z[0]), int(z[1])]
arr3.append(arr4)
arr2.append(arr3)
arr.append(arr2)
index.append(arr)
return index
def get(hop, node):
for x in index[hop]:
if x[0] == node:
return x[1] |
def gaussJordan(A):
n = len(A)
x = [0]*n
print(f'A :\n{A}')
for i in range(n):
if A[i][i] == 0:
print('Ora iso mbagi 0 bos')
break
for j in range(i+1,n):
rasio = A[j][i]/A[i][i]
for k in range(n+1):
A[j][k] -= rasio*A[i][k]
print(f'A :\n{A}')
for i in range(n):
rasio = A[i][i]
for j in range(n+1):
A[i][j] /= rasio
print(f'A :\n{A}')
for i in range(n-1,0,-1):
for j in range(i-1,-1,-1):
rasio = A[j][i]
for k in range(n+1):
A[j][k] -= rasio*A[i][k]
print(f'A :\n{A}')
for i in range(n):
x[i] =A[i][n]
for i,j in enumerate(x):
print(f'x{i} : {j}')
return x
gaussJordan(A= [[2,3,-1,5],[4,4,-3,3],[-2,3,-1,1]])
| def gauss_jordan(A):
n = len(A)
x = [0] * n
print(f'A :\n{A}')
for i in range(n):
if A[i][i] == 0:
print('Ora iso mbagi 0 bos')
break
for j in range(i + 1, n):
rasio = A[j][i] / A[i][i]
for k in range(n + 1):
A[j][k] -= rasio * A[i][k]
print(f'A :\n{A}')
for i in range(n):
rasio = A[i][i]
for j in range(n + 1):
A[i][j] /= rasio
print(f'A :\n{A}')
for i in range(n - 1, 0, -1):
for j in range(i - 1, -1, -1):
rasio = A[j][i]
for k in range(n + 1):
A[j][k] -= rasio * A[i][k]
print(f'A :\n{A}')
for i in range(n):
x[i] = A[i][n]
for (i, j) in enumerate(x):
print(f'x{i} : {j}')
return x
gauss_jordan(A=[[2, 3, -1, 5], [4, 4, -3, 3], [-2, 3, -1, 1]]) |
def grade(key, submission):
if submission == 'b3_car3ful_0r_y0ur_l3ak_m1ght_l3ak':
return True, "You're now an elite hacker..."
else:
return False, "Keep digging..."
| def grade(key, submission):
if submission == 'b3_car3ful_0r_y0ur_l3ak_m1ght_l3ak':
return (True, "You're now an elite hacker...")
else:
return (False, 'Keep digging...') |
def ZG_rprod(X,Y):
if len(X.shape) < 2:
X = X[:,None]
n,m = X.shape
if Y.shape[0] != n or len(Y.shape) != 1:
print('rprod error')
return None
Y = Y[:,None]
Z = np.multiply(X,np.matmul(Y,np.ones((1,m))))
return Z
| def zg_rprod(X, Y):
if len(X.shape) < 2:
x = X[:, None]
(n, m) = X.shape
if Y.shape[0] != n or len(Y.shape) != 1:
print('rprod error')
return None
y = Y[:, None]
z = np.multiply(X, np.matmul(Y, np.ones((1, m))))
return Z |
# Emulating the badge module
#
# The badge module is a C module with Python bindings
# on the real badge, but for the emulator it's just a
# plain python module.
def nvs_get_u16(namespace, key, value):
return value
def eink_init():
"ok"
def safe_mode():
return False
| def nvs_get_u16(namespace, key, value):
return value
def eink_init():
"""ok"""
def safe_mode():
return False |
#import In.entity
class Message(In.entity.Entity):
'''Message Entity class.
'''
room_id = None
def __init__(self, data = None, items = None, **args):
super().__init__(data, items, **args)
@IN.register('Message', type = 'Entitier')
class MessageEntitier(In.entity.EntityEntitier):
'''Base Message Entitier'''
# Message needs entity insert/update/delete hooks
invoke_entity_hook = True
# load all is very heavy
entity_load_all = False
@IN.register('Message', type = 'Model')
class MessageModel(In.entity.EntityModel):
'''Message Model'''
@IN.hook
def entity_model():
return {
'Message' : { # entity name
'table' : { # table
'name' : 'message',
'columns' : { # table columns / entity attributes
'id' : {},
'type' : {},
'created' : {},
'status' : {},
'nabar_id' : {},
'room_id' : {},
},
'keys' : {
'primary' : 'id',
},
},
},
}
@IN.register('Message', type = 'Themer')
class MessageThemer(In.entity.EntityThemer):
'''Message themer'''
def theme_attributes(self, obj, format, view_mode, args):
obj.attributes['data-id'] = obj.id # needed for js
super().theme_attributes(obj, format, view_mode, args)
def theme(self, obj, format, view_mode, args):
super().theme(obj, format, view_mode, args)
def theme_process_variables(self, obj, format, view_mode, args):
super().theme_process_variables(obj, format, view_mode, args)
nabar = IN.entitier.load('Nabar', obj.nabar_id)
args['nabar_name'] = nabar.name
args['nabar_id'] = nabar.id
args['nabar_picture'] = IN.nabar.nabar_profile_picture_themed(nabar)
args['created'] = In.core.util.format_datetime_friendly(obj.created)
| class Message(In.entity.Entity):
"""Message Entity class.
"""
room_id = None
def __init__(self, data=None, items=None, **args):
super().__init__(data, items, **args)
@IN.register('Message', type='Entitier')
class Messageentitier(In.entity.EntityEntitier):
"""Base Message Entitier"""
invoke_entity_hook = True
entity_load_all = False
@IN.register('Message', type='Model')
class Messagemodel(In.entity.EntityModel):
"""Message Model"""
@IN.hook
def entity_model():
return {'Message': {'table': {'name': 'message', 'columns': {'id': {}, 'type': {}, 'created': {}, 'status': {}, 'nabar_id': {}, 'room_id': {}}, 'keys': {'primary': 'id'}}}}
@IN.register('Message', type='Themer')
class Messagethemer(In.entity.EntityThemer):
"""Message themer"""
def theme_attributes(self, obj, format, view_mode, args):
obj.attributes['data-id'] = obj.id
super().theme_attributes(obj, format, view_mode, args)
def theme(self, obj, format, view_mode, args):
super().theme(obj, format, view_mode, args)
def theme_process_variables(self, obj, format, view_mode, args):
super().theme_process_variables(obj, format, view_mode, args)
nabar = IN.entitier.load('Nabar', obj.nabar_id)
args['nabar_name'] = nabar.name
args['nabar_id'] = nabar.id
args['nabar_picture'] = IN.nabar.nabar_profile_picture_themed(nabar)
args['created'] = In.core.util.format_datetime_friendly(obj.created) |
def capitals_first(string):
words = string.split()
st1 = []
st2 = []
for word in words:
if word[0].isalpha():
if word[0].isupper():
st1.append(word)
else:
st2.append(word)
return " ".join(st1 + st2) | def capitals_first(string):
words = string.split()
st1 = []
st2 = []
for word in words:
if word[0].isalpha():
if word[0].isupper():
st1.append(word)
else:
st2.append(word)
return ' '.join(st1 + st2) |
# local usage only
dbconfig = {
'host' : '172.29.0.2',
'port' : 3306,
'db' : 'routing',
'user' : 'dev',
'password' : 'admin',
}
| dbconfig = {'host': '172.29.0.2', 'port': 3306, 'db': 'routing', 'user': 'dev', 'password': 'admin'} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.