• network working group j. reynolds
    request for comments: 1700 j. postel
    std: 2 isi
    obsoletes rfcs: 1340, 1060, 1010, 990, 960, october 1994
    943, 923, 900, 870, 820, 790, 776, 770,
    762, 758,755, 750, 739, 604, 503, 433, 349
    obsoletes iens: 127, 117, 93
    category: standards track

    assigned numbers

    status of this memo

    this memo is a status report on the parameters (i.e., numbers and
    keywords) used in protocols in the internet community. distribution
    of this memo is unlimited.

    overview

    this rfc is a snapshot of the ongoing process of the assignment of
    protocol parameters for the internet protocol suite. to make the
    current information readily available the assignments are kept up-to-
    date in a set of online text files. this rfc has been assembled by
    catinating these files together with a minimum of formatting "glue".
    the authors appologize for the somewhat rougher formatting and style
    than is typical of most rfcs.

    we expect that various readers will notice specific items that should be
    corrected. please send any specific corrections via email to
    <iana@isi.edu>.

    reynolds & postel [page 1]

    rfc 1700 assigned numbers october 1994

    introduction

    the files in this directory document the currently assigned values for
    several series of numbers used in network protocol implementations.

    ftp://ftp.isi.edu/in-notes/iana/assignments

    the internet assigned numbers authority (iana) is the central
    coordinator for the assignment of unique parameter values for internet
    protocols. the iana is chartered by the internet society (isoc) and
    the federal network council (fnc) to act as the clearinghouse to
    assign and coordinate the use of numerous internet protocol
    parameters.

    the internet protocol suite, as defined by the internet engineering
    task force (ietf) and its steering group (the iesg), contains numerous
    parameters, such as internet addresses, domain names, autonomous
    system numbers (used in some routing protocols), protocol numbers,
    port numbers, management information base object identifiers,
    including private enterprise numbers, and many others.

    the common use of the internet protocols by the internet community
    requires that the particular values used in these parameter fields be
    assigned uniquely. it is the task of the iana to make those unique
    assignments as requested and to maintain a registry of the currently
    assigned values.

    requests for parameter assignments (protocols, ports, etc.) should be
    sent to <iana@isi.edu>.

    requests for snmp network management private enterprise number
    assignments should be sent to <iana-mib@isi.edu>.

    the iana is located at and operated by the information sciences
    institute (isi) of the university of southern california (usc).

    if you are developing a protocol or application that will require the
    use of a link, socket, port, protocol, etc., please contact the iana
    to receive a number assignment.

    joyce k. reynolds
    internet assigned numbers authority
    usc - information sciences institute
    4676 admiralty way
    marina del rey, california 90292-6695

    electronic mail: iana@isi.edu
    phone: +1 310-822-1511

    reynolds & postel [page 2]

    rfc 1700 assigned numbers october 1994

    most of the protocols are documented in the rfc series of notes. some
    of the items listed are undocumented. further information on
    protocols can be found in the memo, "internet official protocol
    standards" (std 1).

    data notations

    the convention in the documentation of internet protocols is to
    express numbers in decimal and to picture data in "big-endian" order
    [cohen]. that is, fields are described left to right, with the most
    significant octet on the left and the least significant octet on the
    right.

    the order of transmission of the header and data described in this
    document is resolved to the octet level. whenever a diagram shows a
    group of octets, the order of transmission of those octets is the
    normal order in which they are read in english. for example, in the
    following diagram the octets are transmitted in the order they are
    numbered.

    0 1 2 3
    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    | 1 | 2 | 3 | 4 |
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    | 5 | 6 | 7 | 8 |
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
    | 9 | 10 | 11 | 12 |
    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

    transmission order of bytes

    whenever an octet represents a numeric quantity the left most bit in the
    diagram is the high order or most significant bit. that is, the bit
    labeled 0 is the most significant bit. for example, the following
    diagram represents the value 170 (decimal).

    0 1 2 3 4 5 6 7
    +-+-+-+-+-+-+-+-+
    |1 0 1 0 1 0 1 0|
    +-+-+-+-+-+-+-+-+

    significance of bits

    similarly, whenever a multi-octet field represents a numeric quantity
    the left most bit of the whole field is the most significant bit. when

    reynolds & postel [page 3]

    rfc 1700 assigned numbers october 1994

    a multi-octet quantity is transmitted the most significant octet is
    transmitted first.

    special addresses

    there are five classes of ip addresses: class a through class e. of
    these, classes a, b, and c are used for unicast addresses, class d is
    used for multicast addresses, and class e addresses are reserved for
    future use.

    with the advent of classless addressing [cidr1, cidr2], the
    network-number part of an address may be of any length, and the whole
    notion of address classes becomes less important.

    there are certain special cases for ip addresses. these special cases
    can be concisely summarized using the earlier notation for an ip
    address:

    ip-address ::= { <network-number>, <host-number> }

    or

    ip-address ::= { <network-number>, <subnet-number>,
    <host-number> }

    if we also use the notation "-1" to mean the field contains all 1
    bits. some common special cases are as follows:

    (a) {0, 0}

    this host on this network. can only be used as a source
    address (see note later).

    (b) {0, <host-number>}

    specified host on this network. can only be used as a
    source address.

    (c) { -1, -1}

    limited broadcast. can only be used as a destination
    address, and a datagram with this address must never be
    forwarded outside the (sub-)net of the source.

    (d) {<network-number>, -1}

    directed broadcast to specified network. can only be used
    as a destination address.

    reynolds & postel [page 4]

    rfc 1700 assigned numbers october 1994

    (e) {<network-number>, <subnet-number>, -1}

    directed broadcast to specified subnet. can only be used as
    a destination address.

    (f) {<network-number>, -1, -1}

    directed broadcast to all subnets of specified subnetted
    network. can only be used as a destination address.

    (g) {127, <any>}

    internal host loopback address. should never appear outside
    a host.

    references

    [cohen] cohen, d., "on holy wars and a plea for peace", ieee computer
    magazine, october 1981.

    [cidr1] fuller, v., t. li, j. yu, and k. varadhan, "classless
    inter-domain routing (cidr): an address assignment and
    aggregation strategy", rfc 1519, september 1993.

    [cidr2] rekhter, y., and t. li, "an architecture for ip address
    allocation with cidr", rfc 1518, september 1993.

    []

    url = ftp://ftp.isi.edu/…es/iana/assignments/introduction

    reynolds & postel [page 5]

    rfc 1700 assigned numbers october 1994

    version numbers

    in the internet protocol (ip) [rfc791] there is a field to identify
    the version of the internetwork general protocol. this field is 4
    bits in size.

    assigned internet version numbers

    decimal keyword version references
    ------- ------- ------- ----------
    0 reserved [jbp]
    1-3 unassigned [jbp]
    4 ip internet protocol [rfc791,jbp]
    5 st st datagram mode [rfc1190,jwf]
    6 sip simple internet protocol [rh6]
    7 tp/ix tp/ix: the next internet [rxu]
    8 pip the p internet protocol [pxf]
    9 tuba tuba [rxc]
    10-14 unassigned [jbp]
    15 reserved [jbp]

    references

    [rfc791] postel, j., ed., "internet protocol - darpa internet program
    protocol specification", std 5, rfc 791, usc/information
    sciences institute, september 1981.

    [rfc1190] topolcic, c., editor, "experimental internet stream
    protocol, version 2 (st-ii)", rfc 1190, cip working group,
    october 1990.

    people

    [jpb] jon postel <postel@isi.edu>

    [jwf] jim forgie <forgie@xn.ll.mit.ed>

    [rh6] robert hinden <hinden@eng.sun.com>

    [rxu] robert ullmann <ariel@world.std.com>

    [pxf] paul francis <francis@cactus.ntt.jp>

    [rxc] ross callon <callon@wellfleet.com>

    []

    reynolds & postel [page 6]

    rfc 1700 assigned numbers october 1994

    url = ftp://ftp.isi.edu/…iana/assignments/version-numbers

    reynolds & postel [page 7]

    rfc 1700 assigned numbers october 1994

    protocol numbers

    in the internet protocol (ip) [ddn], [rfc791] there is a field, called
    protocol, to identify the next level protocol. this is an 8 bit
    field.

    assigned internet protocol numbers

    decimal keyword protocol references
    ------- ------- -------- ----------
    0 reserved [jbp]
    1 icmp internet control message [rfc792,jbp]
    2 igmp internet group management [rfc1112,jbp]
    3 ggp gateway-to-gateway [rfc823,mb]
    4 ip ip in ip (encasulation) [jbp]
    5 st stream [rfc1190,ien119,jwf]
    6 tcp transmission control [rfc793,jbp]
    7 ucl ucl [pk]
    8 egp exterior gateway protocol [rfc888,dlm1]
    9 igp any private interior gateway [jbp]
    10 bbn-rcc-mon bbn rcc monitoring [sgc]
    11 nvp-ii network voice protocol [rfc741,sc3]
    12 pup pup [pup,xerox]
    13 argus argus [rws4]
    14 emcon emcon [bn7]
    15 xnet cross net debugger [ien158,jfh2]
    16 chaos chaos [nc3]
    17 udp user datagram [rfc768,jbp]
    18 mux multiplexing [ien90,jbp]
    19 dcn-meas dcn measurement subsystems [dlm1]
    20 hmp host monitoring [rfc869,rh6]
    21 prm packet radio measurement [zsu]
    22 xns-idp xerox ns idp [ethernet,xerox]
    23 trunk-1 trunk-1 [bwb6]
    24 trunk-2 trunk-2 [bwb6]
    25 leaf-1 leaf-1 [bwb6]
    26 leaf-2 leaf-2 [bwb6]
    27 rdp reliable data protocol [rfc908,rh6]
    28 irtp internet reliable transaction [rfc938,txm]
    29 iso-tp4 iso transport protocol class 4 [rfc905,rc77]
    30 netblt bulk data transfer protocol [rfc969,ddc1]
    31 mfe-nsp mfe network services protocol [mfenet,bch2]
    32 merit-inp merit internodal protocol [hwb]
    33 sep sequential exchange protocol [jc120]
    34 3pc third party connect protocol [saf3]
    35 idpr inter-domain policy routing protocol [mxs1]

    reynolds & postel [page 8]

    rfc 1700 assigned numbers october 1994

    36 xtp xtp [gxc]
    37 ddp datagram delivery protocol [wxc]
    38 idpr-cmtp idpr control message transport proto [mxs1]
    39 tp++ tp++ transport protocol [dxf]
    40 il il transport protocol [dxp2]
    41 sip simple internet protocol [sxd]
    42 sdrp source demand routing protocol [dxe1]
    43 sip-sr sip source route [sxd]
    44 sip-frag sip fragment [sxd]
    45 idrp inter-domain routing protocol [sue hares]
    46 rsvp reservation protocol [bob braden]
    47 gre general routing encapsulation [tony li]
    48 mhrp mobile host routing protocol[david johnson]
    49 bna bna [gary salamon]
    50 sipp-esp sipp encap security payload [steve deering]
    51 sipp-ah sipp authentication header [steve deering]
    52 i-nlsp integrated net layer security tuba [glenn]
    53 swipe ip with encryption [ji6]
    54 nhrp nbma next hop resolution protocol
    55-60 unassigned [jbp]
    61 any host internal protocol [jbp]
    62 cftp cftp [cftp,hcf2]
    63 any local network [jbp]
    64 sat-expak satnet and backroom expak [shb]
    65 kryptolan kryptolan [pxl1]
    66 rvd mit remote virtual disk protocol [mbg]
    67 ippc internet pluribus packet core [shb]
    68 any distributed file system [jbp]
    69 sat-mon satnet monitoring [shb]
    70 visa visa protocol [gxt1]
    71 ipcv internet packet core utility [shb]
    72 cpnx computer protocol network executive [dxm2]
    73 cphb computer protocol heart beat [dxm2]
    74 wsn wang span network [vxd]
    75 pvp packet video protocol [sc3]
    76 br-sat-mon backroom satnet monitoring [shb]
    77 sun-nd sun nd protocol-temporary [wm3]
    78 wb-mon wideband monitoring [shb]
    79 wb-expak wideband expak [shb]
    80 iso-ip iso internet protocol [mtr]
    81 vmtp vmtp [drc3]
    82 secure-vmtp secure-vmtp [drc3]
    83 vines vines [bxh]
    84 ttp ttp [jxs]
    85 nsfnet-igp nsfnet-igp [hwb]
    86 dgp dissimilar gateway protocol [dgp,ml109]
    87 tcf tcf [gal5]
    88 igrp igrp [cisco,gxs]

    reynolds & postel [page 9]

    rfc 1700 assigned numbers october 1994

    89 ospfigp ospfigp [rfc1583,jtm4]
    90 sprite-rpc sprite rpc protocol [sprite,bxw]
    91 larp locus address resolution protocol [bxh]
    92 mtp multicast transport protocol [sxa]
    93 ax.25 ax.25 frames [bk29]
    94 ipip ip-within-ip encapsulation protocol [ji6]
    95 micp mobile internetworking control pro. [ji6]
    96 scc-sp semaphore communications sec. pro. [hxh]
    97 etherip ethernet-within-ip encapsulation [rxh1]
    98 encap encapsulation header [rfc1241,rxb3]
    99 any private encryption scheme [jbp]
    100 gmtp gmtp [rxb5]
    101-254 unassigned [jbp]
    255 reserved [jbp]

    references

    [cftp] forsdick, h., "cftp", network message, bolt beranek and
    newman, january 1982.

    [cisco] cisco systems, "gateway server reference manual", manual
    revision b, january 10, 1988.

    [ddn] feinler, e., editor, "ddn protocol handbook", network
    information center, sri international, december 1985.

    [dgp] m/a-com government systems, "dissimilar gateway protocol
    specification, draft version", contract no. cs901145,
    november 16, 1987.

    [ethernet] "the ethernet, a local area network: data link layer and
    physical layer specification", aa-k759b-tk, digital
    equipment corporation, maynard, ma. also as: "the
    ethernet - a local area network", version 1.0, digital
    equipment corporation, intel corporation, xerox
    corporation, september 1980. and: "the ethernet, a local
    area network: data link layer and physical layer
    specifications", digital, intel and xerox, november 1982.
    and: xerox, "the ethernet, a local area network: data link
    layer and physical layer specification", x3t51/80-50,
    xerox corporation, stamford, ct., october 1980.

    [ien90] cohen, d. and j. postel, "multiplexing protocol", ien 90,
    usc/information sciences institute, may 1979.

    [ien119] forgie, j., "st - a proposed internet stream protocol",
    ien 119, mit lincoln laboratory, september 1979.

    reynolds & postel [page 10]

    rfc 1700 assigned numbers october 1994

    [ien158] haverty, j., "xnet formats for internet protocol version 4",
    ien 158, october 1980.

    [mfenet] shuttleworth, b., "a documentary of mfenet, a national
    computer network", ucrl-52317, lawrence livermore labs,
    livermore, california, june 1977.

    [pup] boggs, d., j. shoch, e. taft, and r. metcalfe, "pup: an
    internetwork architecture", xerox palo alto research center,
    csl-79-10, july 1979; also in ieee transactions on
    communication, volume com-28, number 4, april 1980.

    [sprite] welch, b., "the sprite remote procedure call system",
    technical report, ucb/computer science dept., 86/302,
    university of california at berkeley, june 1986.

    [rfc741] cohen, d., "specifications for the network voice protocol",
    rfc 741, isi/rr 7539, usc/information sciences institute,
    march 1976.

    [rfc768] postel, j., "user datagram protocol", std 6, rfc 768,
    usc/information sciences institute, august 1980.

    [rfc791] postel, j., "internet protocol - darpa internet program
    protocol specification", std 5, rfc 791, darpa, september
    1981.

    [rfc792] postel, j., "internet control message protocol - darpa
    internet program protocol specification", std 5, rfc 792,
    usc/information sciences institute, september 1981.

    [rfc793] postel, j., "transmission control protocol - darpa
    internet program protocol specification", std 7, rfc 793,
    usc/information sciences institute, september 1981.

    [rfc823] hinden, r., and a. sheltzer, "the darpa internet gateway",
    rfc 823, bbn, september 1982.

    [rfc869] hinden, r., "a host monitoring protocol", rfc 869,
    bolt beranek and newman, december 1983.

    [rfc888] seamonson, l., and e. rosen, "stub" exterior gateway
    protocol", rfc 888, bbn communications corporation,
    january 1984.

    [rfc905] international standards organization, "iso transport protocol
    specification - iso dp 8073", rfc 905, april 1984.

    reynolds & postel [page 11]

    rfc 1700 assigned numbers october 1994

    [rfc908] velten, d., r. hinden, and j. sax, "reliable data protocol",
    rfc 908, bbn communications corporation, july 1984.

    [rfc938] miller, t., "internet reliable transaction protocol", rfc 938,
    acc, february 1985.

    [rfc969] clark, d., m. lambert, and l. zhang, "netblt: a bulk data
    transfer protocol", rfc 969, mit laboratory for computer
    science, december 1985.

    [rfc1112] deering, s., "host extensions for ip multicasting",
    std 5, rfc 1112, stanford university, august 1989.

    [rfc1190] topolcic, c., editor, "experimental internet stream
    protocol, version 2 (st-ii)", rfc 1190, cip working group,
    october 1990.

    [rfc1241] woodburn, w., and d. mills, " a scheme for an internet
    encapsulation protocol: version 1", rfc 1241, saic,
    university of delaware, july 1991.

    [rfc1583] moy, j., "the ospf specification", rfc 1583, proteon,
    march 1994.

    people

    [bch2] barry howard <howard@nmfecc.llnl.gov>

    [bk29] brian kantor <brian@ucsd.edu>

    [bn7] <mystery contact>

    [bwb6] barry boehm <boehm@arpa.mil>

    [bxh] brian horn <---none--->

    [bxw] bruce willins <---none--->

    [ddc1] david clark <ddc@lcs.mit.edu>

    [dlm1] david mills <mills@huey.udel.edu>

    [drc3] dave cheriton <cheriton@pescadero.stanford.edu>

    [dxe1] deborah estrin <estrin@usc.edu>

    [dxf] dirk fromhein <df@watershed.com>

    reynolds & postel [page 12]

    rfc 1700 assigned numbers october 1994

    [dxm2] david mittnacht <---none--->

    [dxp2] dave presotto <presotto@reseach.att.co

    [david johnson] <mystery contact>

    [gal5] guillermo a. loyola <loyola@ibm.com>

    [glenn] k. robert glenn <glenn@osi.ncsl.nist.gov>

    [gxc] greg chesson <greg@sgi.com>

    [gxs] guenther schreiner <snmp-admin@ira.uka.de>

    [gxt1] gene tsudik <tsudik@usc.edu>

    [hcf2] harry forsdick <forsdick@bbn.com>

    [hwb] hans-werner braun <hwb@mcr.umich.edu>

    [hxh] howard hart <hch@hybrid.com>

    [jbp] jon postel <postel@isi.edu>

    [jc120] <mystery contact>

    [jfh2] jack haverty <jhaverty@oracle.com>

    [ji6] john ioannidis <ji@cs.columbia.edu>

    [jtm4] john moy <jmoy@proteon.com>

    [jwf] jim forgie <forgie@xn.ll.mit.edu>

    [jxs] jim stevens <stevens@isi.edu>

    [katz] dave katz <dkatz@cisco.com>

    [mb] mike brescia <brescia@ccv.bbn.com>

    [mbg] michael greenwald <greenwald@scrc-stony-brook.symbolics.com>

    [ml109] mike little <little@macom4.arpa>

    [mtr] marshall t. rose <mrose@dbc.mtview.ca.us>

    [mxs1] martha steenstrup <msteenst@bbn.com>

    reynolds & postel [page 13]

    rfc 1700 assigned numbers october 1994

    [nc3] j. noel chiappa <jnc@xx.lcs.mit.edu>

    [pk] peter kirstein <kirstein@nss.cs.ucl.ac.uk>

    [pxl1] paul liu <---none--->

    [rh6] robert hinden <hinden@eng.sun.com>

    [rtb3] bob braden <braden@isi.edu>

    [rc77] <mystery contact>

    [rws4] robert w. scheifler <rws@xx.lcs.mit.edu>

    [rxb3] robert woodburn <woody@cseic.saic.com>

    [rxh1] russ housley <russ_housley.mclean_csd@xerox.com>

    [saf3] stuart a. friedberg <stuart@cs.wisc.edu>

    [sc3] steve casner <casner@isi.edu

    [sgc] steve chipman <chipman@f.bbn.com>

    [shb] steven blumenthal <blumenthal@vax.bbn.com>

    [sue hares] sue hares <skh@merit.edu>

    [sxa] susie armstrong <armstrong.wbst128@xerox.com>

    [sxd] steve deering <deering@parc.xerox.com>

    [tony li] tony li <tli@cisco.com>

    [txm] trudy miller <trudy@acc.com>

    [vxd] victor dafoulas <---none--->

    [wm3] william melohn <melohn@sun.com>

    [wxc] wesley craig <wesley.craig@terminator.cc.umich.edu>

    [zsu] zaw-sing su <zsu@tsca.istc.sri.>

    []

    reynolds & postel [page 14]

    rfc 1700 assigned numbers october 1994

    url = ftp://ftp.isi.edu/…ana/assignments/protocol-numbers

    reynolds & postel [page 15]

    rfc 1700 assigned numbers october 1994

    well known port numbers

    the well known ports are controlled and assigned by the iana and on
    most systems can only be used by system (or root) processes or by
    programs executed by privileged users.

    ports are used in the tcp [rfc793] to name the ends of logical
    connections which carry long term conversations. for the purpose of
    providing services to unknown callers, a service contact port is
    defined. this list specifies the port used by the server process as
    its contact port. the contact port is sometimes called the
    "well-known port".

    to the extent possible, these same port assignments are used with the
    udp [rfc768].

    the assigned ports use a small portion of the possible port numbers.
    for many years the assigned ports were in the range 0-255. recently,
    the range for assigned ports managed by the iana has been expanded to
    the range 0-1023.

    port assignments:

    keyword decimal description references
    ------- ------- ----------- ----------
    0/tcp reserved
    0/udp reserved
    # jon postel <postel@isi.edu>
    tcpmux 1/tcp tcp port service multiplexer
    tcpmux 1/udp tcp port service multiplexer
    # mark lottor <mkl@nisc.sri.com>
    compressnet 2/tcp management utility
    compressnet 2/udp management utility
    compressnet 3/tcp compression process
    compressnet 3/udp compression process
    # bernie volz <volz@process.com>
    # 4/tcp unassigned
    # 4/udp unassigned
    rje 5/tcp remote job entry
    rje 5/udp remote job entry
    # jon postel <postel@isi.edu>
    # 6/tcp unassigned
    # 6/udp unassigned
    echo 7/tcp echo
    echo 7/udp echo
    # jon postel <postel@isi.edu>
    # 8/tcp unassigned

    reynolds & postel [page 16]

    rfc 1700 assigned numbers october 1994

    # 8/udp unassigned
    discard 9/tcp discard
    discard 9/udp discard
    # jon postel <postel@isi.edu>
    # 10/tcp unassigned
    # 10/udp unassigned
    systat 11/tcp active users
    systat 11/udp active users
    # jon postel <postel@isi.edu>
    # 12/tcp unassigned
    # 12/udp unassigned
    daytime 13/tcp daytime
    daytime 13/udp daytime
    # jon postel <postel@isi.edu>
    # 14/tcp unassigned
    # 14/udp unassigned
    # 15/tcp unassigned [was netstat]
    # 15/udp unassigned
    # 16/tcp unassigned
    # 16/udp unassigned
    qotd 17/tcp quote of the day
    qotd 17/udp quote of the day
    # jon postel <postel@isi.edu>
    msp 18/tcp message send protocol
    msp 18/udp message send protocol
    # rina nethaniel <---none--->
    chargen 19/tcp character generator
    chargen 19/udp character generator
    ftp-data 20/tcp file transfer [default data]
    ftp-data 20/udp file transfer [default data]
    ftp 21/tcp file transfer [control]
    ftp 21/udp file transfer [control]
    # jon postel <postel@isi.edu>
    # 22/tcp unassigned
    # 22/udp unassigned
    telnet 23/tcp telnet
    telnet 23/udp telnet
    # jon postel <postel@isi.edu>
    24/tcp any private mail system
    24/udp any private mail system
    # rick adam <rick@uunet.uu.net>
    smtp 25/tcp simple mail transfer
    smtp 25/udp simple mail transfer
    # jon postel <postel@isi.edu>
    # 26/tcp unassigned
    # 26/udp unassigned
    nsw-fe 27/tcp nsw user system fe
    nsw-fe 27/udp nsw user system fe

    reynolds & postel [page 17]

    rfc 1700 assigned numbers october 1994

    # robert thomas <bthomas@f.bbn.com>
    # 28/tcp unassigned
    # 28/udp unassigned
    msg-icp 29/tcp msg icp
    msg-icp 29/udp msg icp
    # robert thomas <bthomas@f.bbn.com>
    # 30/tcp unassigned
    # 30/udp unassigned
    msg-auth 31/tcp msg authentication
    msg-auth 31/udp msg authentication
    # robert thomas <bthomas@f.bbn.com>
    # 32/tcp unassigned
    # 32/udp unassigned
    dsp 33/tcp display support protocol
    dsp 33/udp display support protocol
    # ed cain <cain@edn-unix.dca.mil>
    # 34/tcp unassigned
    # 34/udp unassigned
    35/tcp any private printer server
    35/udp any private printer server
    # jon postel <postel@isi.edu>
    # 36/tcp unassigned
    # 36/udp unassigned
    time 37/tcp time
    time 37/udp time
    # jon postel <postel@isi.edu>
    rap 38/tcp route access protocol
    rap 38/udp route access protocol
    # robert ullmann <ariel@world.std.com>
    rlp 39/tcp resource location protocol
    rlp 39/udp resource location protocol
    # mike accetta <mike.accetta@cmu-cs-a.edu>
    # 40/tcp unassigned
    # 40/udp unassigned
    graphics 41/tcp graphics
    graphics 41/udp graphics
    nameserver 42/tcp host name server
    nameserver 42/udp host name server
    nicname 43/tcp who is
    nicname 43/udp who is
    mpm-flags 44/tcp mpm flags protocol
    mpm-flags 44/udp mpm flags protocol
    mpm 45/tcp message processing module [recv]
    mpm 45/udp message processing module [recv]
    mpm-snd 46/tcp mpm [default send]
    mpm-snd 46/udp mpm [default send]
    # jon postel <postel@isi.edu>
    ni-ftp 47/tcp ni ftp

    reynolds & postel [page 18]

    rfc 1700 assigned numbers october 1994

    ni-ftp 47/udp ni ftp
    # steve kille <s.kille@isode.com>
    auditd 48/tcp digital audit daemon
    auditd 48/udp digital audit daemon
    # larry scott <scott@zk3.dec.com>
    login 49/tcp login host protocol
    login 49/udp login host protocol
    # pieter ditmars <pditmars@bbn.com>
    re-mail-ck 50/tcp remote mail checking protocol
    re-mail-ck 50/udp remote mail checking protocol
    # steve dorner <s-dorner@uiuc.edu>
    la-maint 51/tcp imp logical address maintenance
    la-maint 51/udp imp logical address maintenance
    # andy malis <malis_a@timeplex.com>
    xns-time 52/tcp xns time protocol
    xns-time 52/udp xns time protocol
    # susie armstrong <armstrong.wbst128@xerox>
    domain 53/tcp domain name server
    domain 53/udp domain name server
    # paul mockapetris <pvm@isi.edu>
    xns-ch 54/tcp xns clearinghouse
    xns-ch 54/udp xns clearinghouse
    # susie armstrong <armstrong.wbst128@xerox>
    isi-gl 55/tcp isi graphics language
    isi-gl 55/udp isi graphics language
    xns-auth 56/tcp xns authentication
    xns-auth 56/udp xns authentication
    # susie armstrong <armstrong.wbst128@xerox>
    57/tcp any private terminal access
    57/udp any private terminal access
    # jon postel <postel@isi.edu>
    xns-mail 58/tcp xns mail
    xns-mail 58/udp xns mail
    # susie armstrong <armstrong.wbst128@xerox>
    59/tcp any private file service
    59/udp any private file service
    # jon postel <postel@isi.edu>
    60/tcp unassigned
    60/udp unassigned
    ni-mail 61/tcp ni mail
    ni-mail 61/udp ni mail
    # steve kille <s.kille@isode.com>
    acas 62/tcp aca services
    acas 62/udp aca services
    # e. wald <ewald@via.enet.dec.com>
    # 63/tcp unassigned
    # 63/udp unassigned
    covia 64/tcp communications integrator (ci)

    reynolds & postel [page 19]

    rfc 1700 assigned numbers october 1994

    covia 64/udp communications integrator (ci)
    # "tundra" tim daneliuk
    # <tundraix!tundra@clout.chi.il.us>
    tacacs-ds 65/tcp tacacs-database service
    tacacs-ds 65/udp tacacs-database service
    # kathy huber <khuber@bbn.com>
    sql*net 66/tcp oracle sql*net
    sql*net 66/udp oracle sql*net
    # jack haverty <jhaverty@oracle.com>
    bootps 67/tcp bootstrap protocol server
    bootps 67/udp bootstrap protocol server
    bootpc 68/tcp bootstrap protocol client
    bootpc 68/udp bootstrap protocol client
    # bill croft <croft@sumex-aim.stanford.edu>
    tftp 69/tcp trivial file transfer
    tftp 69/udp trivial file transfer
    # david clark <ddc@lcs.mit.edu>
    gopher 70/tcp gopher
    gopher 70/udp gopher
    # mark mccahill <mpm@boombox.micro.umn.edu>
    netrjs-1 71/tcp remote job service
    netrjs-1 71/udp remote job service
    netrjs-2 72/tcp remote job service
    netrjs-2 72/udp remote job service
    netrjs-3 73/tcp remote job service
    netrjs-3 73/udp remote job service
    netrjs-4 74/tcp remote job service
    netrjs-4 74/udp remote job service
    # bob braden <braden@isi.edu>
    75/tcp any private dial out service
    75/udp any private dial out service
    # jon postel <postel@isi.edu>
    deos 76/tcp distributed external object store
    deos 76/udp distributed external object store
    # robert ullmann <ariel@world.std.com>
    77/tcp any private rje service
    77/udp any private rje service
    # jon postel <postel@isi.edu>
    vettcp 78/tcp vettcp
    vettcp 78/udp vettcp
    # christopher leong <leong@kolmod.mlo.dec.com>
    finger 79/tcp finger
    finger 79/udp finger
    # david zimmerman <dpz@rutgers.edu>
    www-http 80/tcp world wide web http
    www-http 80/udp world wide web http
    # tim berners-lee <timbl@nxoc01.cern.ch>
    hosts2-ns 81/tcp hosts2 name server

    reynolds & postel [page 20]

    rfc 1700 assigned numbers october 1994

    hosts2-ns 81/udp hosts2 name server
    # earl killian <eak@mordor.s1.gov>
    xfer 82/tcp xfer utility
    xfer 82/udp xfer utility
    # thomas m. smith <tmsmith@esc.syr.ge.com>
    mit-ml-dev 83/tcp mit ml device
    mit-ml-dev 83/udp mit ml device
    # david reed <--none--->
    ctf 84/tcp common trace facility
    ctf 84/udp common trace facility
    # hugh thomas <thomas@oils.enet.dec.com>
    mit-ml-dev 85/tcp mit ml device
    mit-ml-dev 85/udp mit ml device
    # david reed <--none--->
    mfcobol 86/tcp micro focus cobol
    mfcobol 86/udp micro focus cobol
    # simon edwards <--none--->
    87/tcp any private terminal link
    87/udp any private terminal link
    # jon postel <postel@isi.edu>
    kerberos 88/tcp kerberos
    kerberos 88/udp kerberos
    # b. clifford neuman <bcn@isi.edu>
    su-mit-tg 89/tcp su/mit telnet gateway
    su-mit-tg 89/udp su/mit telnet gateway
    # mark crispin <mrc@panda.com>
    dnsix 90/tcp dnsix securit attribute token map
    dnsix 90/udp dnsix securit attribute token map
    # charles watt <watt@sware.com>
    mit-dov 91/tcp mit dover spooler
    mit-dov 91/udp mit dover spooler
    # eliot moss <ebm@xx.lcs.mit.edu>
    npp 92/tcp network printing protocol
    npp 92/udp network printing protocol
    # louis mamakos <louie@sayshell.umd.edu>
    dcp 93/tcp device control protocol
    dcp 93/udp device control protocol
    # daniel tappan <tappan@bbn.com>
    objcall 94/tcp tivoli object dispatcher
    objcall 94/udp tivoli object dispatcher
    # tom bereiter <--none--->
    supdup 95/tcp supdup
    supdup 95/udp supdup
    # mark crispin <mrc@panda.com>
    dixie 96/tcp dixie protocol specification
    dixie 96/udp dixie protocol specification
    # tim howes <tim.howes@terminator.cc.umich.edu>
    swift-rvf 97/tcp swift remote vitural file protocol

    reynolds & postel [page 21]

    rfc 1700 assigned numbers october 1994

    swift-rvf 97/udp swift remote vitural file protocol
    # maurice r. turcotte
    # <mailrus!uflorida!rm1!dnmrt%rmatl@uunet.uu.net>
    tacnews 98/tcp tac news
    tacnews 98/udp tac news
    # jon postel <postel@isi.edu>
    metagram 99/tcp metagram relay
    metagram 99/udp metagram relay
    # geoff goodfellow <geoff@fernwood.mpk.ca.u>
    newacct 100/tcp [unauthorized use]
    hostname 101/tcp nic host name server
    hostname 101/udp nic host name server
    # jon postel <postel@isi.edu>
    iso-tsap 102/tcp iso-tsap
    iso-tsap 102/udp iso-tsap
    # marshall rose <mrose@dbc.mtview.ca.us>
    gppitnp 103/tcp genesis point-to-point trans net
    gppitnp 103/udp genesis point-to-point trans net
    acr-nema 104/tcp acr-nema digital imag. & comm. 300
    acr-nema 104/udp acr-nema digital imag. & comm. 300
    # patrick mcnamee <--none--->
    csnet-ns 105/tcp mailbox name nameserver
    csnet-ns 105/udp mailbox name nameserver
    # marvin solomon <solomon@cs.wisc.edu>
    3com-tsmux 106/tcp 3com-tsmux
    3com-tsmux 106/udp 3com-tsmux
    # jeremy siegel <jzs@nsd.3com.com>
    rtelnet 107/tcp remote telnet service
    rtelnet 107/udp remote telnet service
    # jon postel <postel@isi.edu>
    snagas 108/tcp sna gateway access server
    snagas 108/udp sna gateway access server
    # kevin murphy <murphy@sevens.lkg.dec.com>
    pop2 109/tcp post office protocol - version 2
    pop2 109/udp post office protocol - version 2
    # joyce k. reynolds <jkrey@isi.edu>
    pop3 110/tcp post office protocol - version 3
    pop3 110/udp post office protocol - version 3
    # marshall rose <mrose@dbc.mtview.ca.us>
    sunrpc 111/tcp sun remote procedure call
    sunrpc 111/udp sun remote procedure call
    # chuck mcmanis <cmcmanis@sun.com>
    mcidas 112/tcp mcidas data transmission protocol
    mcidas 112/udp mcidas data transmission protocol
    # glenn davis <davis@unidata.ucar.edu>
    auth 113/tcp authentication service
    auth 113/udp authentication service
    # mike st. johns <stjohns@arpa.mil>

    reynolds & postel [page 22]

    rfc 1700 assigned numbers october 1994

    audionews 114/tcp audio news multicast
    audionews 114/udp audio news multicast
    # martin forssen <maf@dtek.chalmers.se>
    sftp 115/tcp simple file transfer protocol
    sftp 115/udp simple file transfer protocol
    # mark lottor <mkl@nisc.sri.com>
    ansanotify 116/tcp ansa rex notify
    ansanotify 116/udp ansa rex notify
    # nicola j. howarth <njh@ansa.co.uk>
    uucp-path 117/tcp uucp path service
    uucp-path 117/udp uucp path service
    sqlserv 118/tcp sql services
    sqlserv 118/udp sql services
    # larry barnes <barnes@broke.enet.dec.com>
    nntp 119/tcp network news transfer protocol
    nntp 119/udp network news transfer protocol
    # phil lapsley <phil@ucbarpa.berkeley.edu>
    cfdptkt 120/tcp cfdptkt
    cfdptkt 120/udp cfdptkt
    # john ioannidis <ji@close.cs.columbia.ed>
    erpc 121/tcp encore expedited remote pro.call
    erpc 121/udp encore expedited remote pro.call
    # jack o'neil <---none--->
    smakynet 122/tcp smakynet
    smakynet 122/udp smakynet
    # mike o'dowd <odowd@ltisun8.epfl.ch>
    ntp 123/tcp network time protocol
    ntp 123/udp network time protocol
    # dave mills <mills@huey.udel.edu>
    ansatrader 124/tcp ansa rex trader
    ansatrader 124/udp ansa rex trader
    # nicola j. howarth <njh@ansa.co.uk>
    locus-map 125/tcp locus pc-interface net map ser
    locus-map 125/udp locus pc-interface net map ser
    # eric peterson <lcc.eric@seas.ucla.edu>
    unitary 126/tcp unisys unitary login
    unitary 126/udp unisys unitary login
    # <feil@kronos.nisd.cam.unisys.com>
    locus-con 127/tcp locus pc-interface conn server
    locus-con 127/udp locus pc-interface conn server
    # eric peterson <lcc.eric@seas.ucla.edu>
    gss-xlicen 128/tcp gss x license verification
    gss-xlicen 128/udp gss x license verification
    # john light <johnl@gssc.gss.com>
    pwdgen 129/tcp password generator protocol
    pwdgen 129/udp password generator protocol
    # frank j. wacho <wancho@wsmr-simtel20.army.mil>
    cisco-fna 130/tcp cisco fnative

    reynolds & postel [page 23]

    rfc 1700 assigned numbers october 1994

    cisco-fna 130/udp cisco fnative
    cisco-tna 131/tcp cisco tnative
    cisco-tna 131/udp cisco tnative
    cisco-sys 132/tcp cisco sysmaint
    cisco-sys 132/udp cisco sysmaint
    statsrv 133/tcp statistics service
    statsrv 133/udp statistics service
    # dave mills <mills@huey.udel.edu>
    ingres-net 134/tcp ingres-net service
    ingres-net 134/udp ingres-net service
    # mike berrow <---none--->
    loc-srv 135/tcp location service
    loc-srv 135/udp location service
    # joe pato <apollo!pato@eddie.mit.edu>
    profile 136/tcp profile naming system
    profile 136/udp profile naming system
    # larry peterson <llp@arizona.edu>
    netbios-ns 137/tcp netbios name service
    netbios-ns 137/udp netbios name service
    netbios-dgm 138/tcp netbios datagram service
    netbios-dgm 138/udp netbios datagram service
    netbios-ssn 139/tcp netbios session service
    netbios-ssn 139/udp netbios session service
    # jon postel <postel@isi.edu>
    emfis-data 140/tcp emfis data service
    emfis-data 140/udp emfis data service
    emfis-cntl 141/tcp emfis control service
    emfis-cntl 141/udp emfis control service
    # gerd beling <gbeling@isi.edu>
    bl-idm 142/tcp britton-lee idm
    bl-idm 142/udp britton-lee idm
    # susie snitzer <---none--->
    imap2 143/tcp interim mail access protocol v2
    imap2 143/udp interim mail access protocol v2
    # mark crispin <mrc@panda.com>
    news 144/tcp news
    news 144/udp news
    # james gosling <jag@sun.com>
    uaac 145/tcp uaac protocol
    uaac 145/udp uaac protocol
    # david a. gomberg <gomberg@gateway.mitre.org>
    iso-tp0 146/tcp iso-ip0
    iso-tp0 146/udp iso-ip0
    iso-ip 147/tcp iso-ip
    iso-ip 147/udp iso-ip
    # marshall rose <mrose@dbc.mtview.ca.us>
    cronus 148/tcp cronus-support
    cronus 148/udp cronus-support

    reynolds & postel [page 24]

    rfc 1700 assigned numbers october 1994

    # jeffrey buffun <jbuffum@apollo.com>
    aed-512 149/tcp aed 512 emulation service
    aed-512 149/udp aed 512 emulation service
    # albert g. broscius <broscius@dsl.cis.upenn.edu>
    sql-net 150/tcp sql-net
    sql-net 150/udp sql-net
    # martin picard <<---none--->
    hems 151/tcp hems
    hems 151/udp hems
    # christopher tengi <tengi@princeton.edu>
    bftp 152/tcp background file transfer program
    bftp 152/udp background file transfer program
    # annette deschon <deschon@isi.edu>
    sgmp 153/tcp sgmp
    sgmp 153/udp sgmp
    # marty schoffstahl <schoff@nisc.nyser.net>
    netsc-prod 154/tcp netsc
    netsc-prod 154/udp netsc
    netsc-dev 155/tcp netsc
    netsc-dev 155/udp netsc
    # sergio heker <heker@jvncc.csc.org>
    sqlsrv 156/tcp sql service
    sqlsrv 156/udp sql service
    # craig rogers <rogers@isi.edu>
    knet-cmp 157/tcp knet/vm command/message protocol
    knet-cmp 157/udp knet/vm command/message protocol
    # gary s. malkin <gmalkin@xylogics.com>
    pcmail-srv 158/tcp pcmail server
    pcmail-srv 158/udp pcmail server
    # mark l. lambert <markl@ptt.lcs.mit.edu>
    nss-routing 159/tcp nss-routing
    nss-routing 159/udp nss-routing
    # yakov rekhter <yakov@ibm.com>
    sgmp-traps 160/tcp sgmp-traps
    sgmp-traps 160/udp sgmp-traps
    # marty schoffstahl <schoff@nisc.nyser.net>
    snmp 161/tcp snmp
    snmp 161/udp snmp
    snmptrap 162/tcp snmptrap
    snmptrap 162/udp snmptrap
    # marshall rose <mrose@dbc.mtview.ca.us>
    cmip-man 163/tcp cmip/tcp manager
    cmip-man 163/udp cmip/tcp manager
    cmip-agent 164/tcp cmip/tcp agent
    smip-agent 164/udp cmip/tcp agent
    # amatzia ben-artzi <---none--->
    xns-courier 165/tcp xerox
    xns-courier 165/udp xerox

    reynolds & postel [page 25]

    rfc 1700 assigned numbers october 1994

    # susie armstrong <armstrong.wbst128@xerox.com>
    s-net 166/tcp sirius systems
    s-net 166/udp sirius systems
    # brian lloyd <---none--->
    namp 167/tcp namp
    namp 167/udp namp
    # marty schoffstahl <schoff@nisc.nyser.net>
    rsvd 168/tcp rsvd
    rsvd 168/udp rsvd
    # neil todd <mcvax!ist.co.uk!neil@uunet.uu.net>
    send 169/tcp send
    send 169/udp send
    # william d. wisner <wisner@hayes.fai.alaska.edu>
    print-srv 170/tcp network postscript
    print-srv 170/udp network postscript
    # brian reid <reid@decwrl.dec.com>
    multiplex 171/tcp network innovations multiplex
    multiplex 171/udp network innovations multiplex
    cl/1 172/tcp network innovations cl/1
    cl/1 172/udp network innovations cl/1
    # kevin devault <<---none--->
    xyplex-mux 173/tcp xyplex
    xyplex-mux 173/udp xyplex
    # bob stewart <stewart@xyplex.com>
    mailq 174/tcp mailq
    mailq 174/udp mailq
    # rayan zachariassen <rayan@ai.toronto.edu>
    vmnet 175/tcp vmnet
    vmnet 175/udp vmnet
    # christopher tengi <tengi@princeton.edu>
    genrad-mux 176/tcp genrad-mux
    genrad-mux 176/udp genrad-mux
    # ron thornton <thornton@qm7501.genrad.com>
    xdmcp 177/tcp x display manager control protocol
    xdmcp 177/udp x display manager control protocol
    # robert w. scheifler <rws@xx.lcs.mit.edu>
    nextstep 178/tcp nextstep window server
    nextstep 178/udp nextstep window server
    # leo hourvitz <leo@next.com>
    bgp 179/tcp border gateway protocol
    bgp 179/udp border gateway protocol
    # kirk lougheed <lougheed@mathom.cisco.com>
    ris 180/tcp intergraph
    ris 180/udp intergraph
    # dave buehmann <ingr!daveb@uunet.uu.net>
    unify 181/tcp unify
    unify 181/udp unify
    # vinod singh <--none--->

    reynolds & postel [page 26]

    rfc 1700 assigned numbers october 1994

    audit 182/tcp unisys audit sitp
    audit 182/udp unisys audit sitp
    # gil greenbaum <gcole@nisd.cam.unisys.com>
    ocbinder 183/tcp ocbinder
    ocbinder 183/udp ocbinder
    ocserver 184/tcp ocserver
    ocserver 184/udp ocserver
    # jerrilynn okamura <--none--->
    remote-kis 185/tcp remote-kis
    remote-kis 185/udp remote-kis
    kis 186/tcp kis protocol
    kis 186/udp kis protocol
    # ralph droms <rdroms@nri.reston.va.us>
    aci 187/tcp application communication interface
    aci 187/udp application communication interface
    # rick carlos <rick.ticipa.csc.ti.com>
    mumps 188/tcp plus five's mumps
    mumps 188/udp plus five's mumps
    # hokey stenn <hokey@plus5.com>
    qft 189/tcp queued file transport
    qft 189/udp queued file transport
    # wayne schroeder <schroeder@sds.sdsc.edu>
    gacp 190/tcp gateway access control protocol
    cacp 190/udp gateway access control protocol
    # c. philip wood <cpw@lanl.gov>
    prospero 191/tcp prospero directory service
    prospero 191/udp prospero directory service
    # b. clifford neuman <bcn@isi.edu>
    osu-nms 192/tcp osu network monitoring system
    osu-nms 192/udp osu network monitoring system
    # doug karl <karl-d@osu-20.ircc.ohio-state.edu>
    srmp 193/tcp spider remote monitoring protocol
    srmp 193/udp spider remote monitoring protocol
    # ted j. socolofsky <teds@spider.co.uk>
    irc 194/tcp internet relay chat protocol
    irc 194/udp internet relay chat protocol
    # jarkko oikarinen <jto@tolsun.oulu.fi>
    dn6-nlm-aud 195/tcp dnsix network level module audit
    dn6-nlm-aud 195/udp dnsix network level module audit
    dn6-smm-red 196/tcp dnsix session mgt module audit redir
    dn6-smm-red 196/udp dnsix session mgt module audit redir
    # lawrence lebahn <dia3@paxrv-nes.navy.mil>
    dls 197/tcp directory location service
    dls 197/udp directory location service
    dls-mon 198/tcp directory location service monitor
    dls-mon 198/udp directory location service monitor
    # scott bellew <smb@cs.purdue.edu>
    smux 199/tcp smux

    reynolds & postel [page 27]

    rfc 1700 assigned numbers october 1994

    smux 199/udp smux
    # marshall rose <mrose@dbc.mtview.ca.us>
    src 200/tcp ibm system resource controller
    src 200/udp ibm system resource controller
    # gerald mcbrearty <---none--->
    at-rtmp 201/tcp appletalk routing maintenance
    at-rtmp 201/udp appletalk routing maintenance
    at-nbp 202/tcp appletalk name binding
    at-nbp 202/udp appletalk name binding
    at-3 203/tcp appletalk unused
    at-3 203/udp appletalk unused
    at-echo 204/tcp appletalk echo
    at-echo 204/udp appletalk echo
    at-5 205/tcp appletalk unused
    at-5 205/udp appletalk unused
    at-zis 206/tcp appletalk zone information
    at-zis 206/udp appletalk zone information
    at-7 207/tcp appletalk unused
    at-7 207/udp appletalk unused
    at-8 208/tcp appletalk unused
    at-8 208/udp appletalk unused
    # rob chandhok <chandhok@gnome.cs.cmu.edu>
    tam 209/tcp trivial authenticated mail protocol
    tam 209/udp trivial authenticated mail protocol
    # dan bernstein <brnstnd@stealth.acf.nyu.edu>
    z39.50 210/tcp ansi z39.50
    z39.50 210/udp ansi z39.50
    # mark needleman
    # <mhnur%uccmvsa.bitnet@cornell.cit.cornell.edu>
    914c/g 211/tcp texas instruments 914c/g terminal
    914c/g 211/udp texas instruments 914c/g terminal
    # bill harrell <---none--->
    anet 212/tcp atexsstr
    anet 212/udp atexsstr
    # jim taylor <taylor@heart.epps.kodak.com>
    ipx 213/tcp ipx
    ipx 213/udp ipx
    # don provan <donp@xlnvax.novell.com>
    vmpwscs 214/tcp vm pwscs
    vmpwscs 214/udp vm pwscs
    # dan shia <dset!shia@uunet.uu.net>
    softpc 215/tcp insignia solutions
    softpc 215/udp insignia solutions
    # martyn thomas <---none--->
    atls 216/tcp access technology license server
    atls 216/udp access technology license server
    # larry deluca <henrik@eddie.mit.edu>
    dbase 217/tcp dbase unix

    reynolds & postel [page 28]

    rfc 1700 assigned numbers october 1994

    dbase 217/udp dbase unix
    # don gibson
    # <sequent!aero!twinsun!ashtate.a-t.com!dong@uunet.uu.net>
    mpp 218/tcp netix message posting protocol
    mpp 218/udp netix message posting protocol
    # shannon yeh <yeh@netix.com>
    uarps 219/tcp unisys arps
    uarps 219/udp unisys arps
    # ashok marwaha <---none--->
    imap3 220/tcp interactive mail access protocol v3
    imap3 220/udp interactive mail access protocol v3
    # james rice <rice@sumex-aim.stanford.edu>
    fln-spx 221/tcp berkeley rlogind with spx auth
    fln-spx 221/udp berkeley rlogind with spx auth
    rsh-spx 222/tcp berkeley rshd with spx auth
    rsh-spx 222/udp berkeley rshd with spx auth
    cdc 223/tcp certificate distribution center
    cdc 223/udp certificate distribution center
    # kannan alagappan <kannan@sejour.enet.dec.com>
    # 224-241 reserved
    # jon postel <postel@isi.edu>
    # 242/tcp unassigned
    # 242/udp unassigned
    sur-meas 243/tcp survey measurement
    sur-meas 243/udp survey measurement
    # dave clark <ddc@lcs.mit.edu>
    # 244/tcp unassigned
    # 244/udp unassigned
    link 245/tcp link
    link 245/udp link
    dsp3270 246/tcp display systems protocol
    dsp3270 246/udp display systems protocol
    # weldon j. showalter <gamma@mintaka.dca.mil>
    # 247-255 reserved
    # jon postel <postel@isi.edu>
    # 256-343 unassigned
    pdap 344/tcp prospero data access protocol
    pdap 344/udp prospero data access protocol
    # b. clifford neuman <bcn@isi.edu>
    pawserv 345/tcp perf analysis workbench
    pawserv 345/udp perf analysis workbench
    zserv 346/tcp zebra server
    zserv 346/udp zebra server
    fatserv 347/tcp fatmen server
    fatserv 347/udp fatmen server
    csi-sgwp 348/tcp cabletron management protocol
    csi-sgwp 348/udp cabletron management protocol
    # 349-370 unassigned

    reynolds & postel [page 29]

    rfc 1700 assigned numbers october 1994

    clearcase 371/tcp clearcase
    clearcase 371/udp clearcase
    # dave leblang <leglang@atria.com>
    ulistserv 372/tcp unix listserv
    ulistserv 372/udp unix listserv
    # anastasios kotsikonas <tasos@cs.bu.edu>
    legent-1 373/tcp legent corporation
    legent-1 373/udp legent corporation
    legent-2 374/tcp legent corporation
    legent-2 374/udp legent corporation
    # keith boyce <---none--->
    hassle 375/tcp hassle
    hassle 375/udp hassle
    # reinhard doelz <doelz@comp.bioz.unibas.ch>
    nip 376/tcp amiga envoy network inquiry proto
    nip 376/udp amiga envoy network inquiry proto
    # kenneth dyke <kcd@cbmvax.cbm.commodore.com>
    tnetos 377/tcp nec corporation
    tnetos 377/udp nec corporation
    dsetos 378/tcp nec corporation
    dsetos 378/udp nec corporation
    # tomoo fujita <tf@arc.bs1.fc.nec.co.jp>
    is99c 379/tcp tia/eia/is-99 modem client
    is99c 379/udp tia/eia/is-99 modem client
    is99s 380/tcp tia/eia/is-99 modem server
    is99s 380/udp tia/eia/is-99 modem server
    # frank quick <fquick@qualcomm.com>
    hp-collector 381/tcp hp performance data collector
    hp-collector 381/udp hp performance data collector
    hp-managed-node 382/tcp hp performance data managed node
    hp-managed-node 382/udp hp performance data managed node
    hp-alarm-mgr 383/tcp hp performance data alarm manager
    hp-alarm-mgr 383/udp hp performance data alarm manager
    # frank blakely <frankb@hpptc16.rose.hp.com>
    arns 384/tcp a remote network server system
    arns 384/udp a remote network server system
    # david hornsby <djh@munnari.oz.au>
    ibm-app 385/tcp ibm application
    ibm-app 385/tcp ibm application
    # lisa tomita <---none--->
    asa 386/tcp asa message router object def.
    asa 386/udp asa message router object def.
    # steve laitinen <laitinen@brutus.aa.ab.com>
    aurp 387/tcp appletalk update-based routing pro.
    aurp 387/udp appletalk update-based routing pro.
    # chris ranch <cranch@novell.com>
    unidata-ldm 388/tcp unidata ldm version 4
    unidata-ldm 388/udp unidata ldm version 4

    reynolds & postel [page 30]

    rfc 1700 assigned numbers october 1994

    # glenn davis <davis@unidata.ucar.edu>
    ldap 389/tcp lightweight directory access protocol
    ldap 389/udp lightweight directory access protocol
    # tim howes <tim.howes@terminator.cc.umich.edu>
    uis 390/tcp uis
    uis 390/udp uis
    # ed barron <---none--->
    synotics-relay 391/tcp synoptics snmp relay port
    synotics-relay 391/udp synoptics snmp relay port
    synotics-broker 392/tcp synoptics port broker port
    synotics-broker 392/udp synoptics port broker port
    # illan raab <iraab@synoptics.com>
    dis 393/tcp data interpretation system
    dis 393/udp data interpretation system
    # paul stevens <pstevens@chinacat.metaphor.com>
    embl-ndt 394/tcp embl nucleic data transfer
    embl-ndt 394/udp embl nucleic data transfer
    # peter gad <peter@bmc.uu.se>
    netcp 395/tcp netscout control protocol
    netcp 395/udp netscout control protocol
    # anil singhal <---none--->
    netware-ip 396/tcp novell netware over ip
    netware-ip 396/udp novell netware over ip
    mptn 397/tcp multi protocol trans. net.
    mptn 397/udp multi protocol trans. net.
    # soumitra sarkar <sarkar@vnet.ibm.com>
    kryptolan 398/tcp kryptolan
    kryptolan 398/udp kryptolan
    # peter de laval <pdl@sectra.se>
    # 399/tcp unassigned
    # 399/udp unassigned
    work-sol 400/tcp workstation solutions
    work-sol 400/udp workstation solutions
    # jim ward <jimw@worksta.com>
    ups 401/tcp uninterruptible power supply
    ups 401/udp uninterruptible power supply
    # guenther seybold <gs@hrz.th-darmstadt.de>
    genie 402/tcp genie protocol
    genie 402/udp genie protocol
    # mark hankin <---none--->
    decap 403/tcp decap
    decap 403/udp decap
    nced 404/tcp nced
    nced 404/udp nced
    ncld 405/tcp ncld
    ncld 405/udp ncld
    # richard jones <---none--->
    imsp 406/tcp interactive mail support protocol

    reynolds & postel [page 31]

    rfc 1700 assigned numbers october 1994

    imsp 406/udp interactive mail support protocol
    # john myers <jgm+@cmu.edu>
    timbuktu 407/tcp timbuktu
    timbuktu 407/udp timbuktu
    # marc epard <marc@waygate.farallon.com>
    prm-sm 408/tcp prospero resource manager sys. man.
    prm-sm 408/udp prospero resource manager sys. man.
    prm-nm 409/tcp prospero resource manager node man.
    prm-nm 409/udp prospero resource manager node man.
    # b. clifford neuman <bcn@isi.edu>
    decladebug 410/tcp decladebug remote debug protocol
    decladebug 410/udp decladebug remote debug protocol
    # anthony berent <berent@rdgeng.enet.dec.com>
    rmt 411/tcp remote mt protocol
    rmt 411/udp remote mt protocol
    # peter eriksson <pen@lysator.liu.se>
    synoptics-trap 412/tcp trap convention port
    synoptics-trap 412/udp trap convention port
    # illan raab <iraab@synoptics.com>
    smsp 413/tcp smsp
    smsp 413/udp smsp
    infoseek 414/tcp infoseek
    infoseek 414/udp infoseek
    # steve kirsch <stk@frame.com>
    bnet 415/tcp bnet
    bnet 415/udp bnet
    # jim mertz <jmertz+rv09@rvdc.unisys.com>
    silverplatter 416/tcp silverplatter
    silverplatter 416/udp silverplatter
    # peter ciuffetti <petec@silverplatter.com>
    onmux 417/tcp onmux
    onmux 417/udp onmux
    # stephen hanna <hanna@world.std.com>
    hyper-g 418/tcp hyper-g
    hyper-g 418/udp hyper-g
    # frank kappe <fkappe@iicm.tu-graz.ac.at>
    ariel1 419/tcp ariel
    ariel1 419/udp ariel
    # jonathan lavigne <bl.jpl@rlg.stanford.edu>
    smpte 420/tcp smpte
    smpte 420/udp smpte
    # si becker <71362.22@compuserve.com>
    ariel2 421/tcp ariel
    ariel2 421/udp ariel
    ariel3 422/tcp ariel
    ariel3 422/udp ariel
    # jonathan lavigne <bl.jpl@rlg.stanford.edu>
    opc-job-start 423/tcp ibm operations planning and control start

    reynolds & postel [page 32]

    rfc 1700 assigned numbers october 1994

    opc-job-start 423/udp ibm operations planning and control start
    opc-job-track 424/tcp ibm operations planning and control track
    opc-job-track 424/udp ibm operations planning and control track
    # conny larsson <cocke@vnet.ibm.com>
    icad-el 425/tcp icad
    icad-el 425/udp icad
    # larry stone <lcs@icad.com>
    smartsdp 426/tcp smartsdp
    smartsdp 426/udp smartsdp
    # alexander dupuy <dupuy@smarts.com>
    svrloc 427/tcp server location
    svrloc 427/udp server location
    # <veizades@ftp.com>
    ocs_cmu 428/tcp ocs_cmu
    ocs_cmu 428/udp ocs_cmu
    ocs_amu 429/tcp ocs_amu
    ocs_amu 429/udp ocs_amu
    # florence wyman <wyman@peabody.plk.af.mil>
    utmpsd 430/tcp utmpsd
    utmpsd 430/udp utmpsd
    utmpcd 431/tcp utmpcd
    utmpcd 431/udp utmpcd
    iasd 432/tcp iasd
    iasd 432/udp iasd
    # nir baroz <nbaroz@encore.com>
    nnsp 433/tcp nnsp
    nnsp 433/udp nnsp
    # rob robertson <rob@gangrene.berkeley.edu>
    mobileip-agent 434/tcp mobileip-agent
    mobileip-agent 434/udp mobileip-agent
    mobilip-mn 435/tcp mobilip-mn
    mobilip-mn 435/udp mobilip-mn
    # kannan alagappan <kannan@sejour.lkg.dec.com>
    dna-cml 436/tcp dna-cml
    dna-cml 436/udp dna-cml
    # dan flowers <flowers@smaug.lkg.dec.com>
    comscm 437/tcp comscm
    comscm 437/udp comscm
    # jim teague <teague@zso.dec.com>
    dsfgw 438/tcp dsfgw
    dsfgw 438/udp dsfgw
    # andy mckeen <mckeen@osf.org>
    dasp 439/tcp dasp thomas obermair
    dasp 439/udp dasp tommy@inlab.m.eunet.de
    # thomas obermair <tommy@inlab.m.eunet.de>
    sgcp 440/tcp sgcp
    sgcp 440/udp sgcp
    # marshall rose <mrose@dbc.mtview.ca.us>

    reynolds & postel [page 33]

    rfc 1700 assigned numbers october 1994

    decvms-sysmgt 441/tcp decvms-sysmgt
    decvms-sysmgt 441/udp decvms-sysmgt
    # lee barton <barton@star.enet.dec.com>
    cvc_hostd 442/tcp cvc_hostd
    cvc_hostd 442/udp cvc_hostd
    # bill davidson <billd@equalizer.cray.com>
    https 443/tcp https mcom
    https 443/udp https mcom
    # kipp e.b. hickman <kipp@mcom.com>
    snpp 444/tcp simple network paging protocol
    snpp 444/udp simple network paging protocol
    # [rfc1568]
    microsoft-ds 445/tcp microsoft-ds
    microsoft-ds 445/udp microsoft-ds
    # arnold miller <arnoldm@microsoft.com>
    ddm-rdb 446/tcp ddm-rdb
    ddm-rdb 446/udp ddm-rdb
    ddm-dfm 447/tcp ddm-rfm
    ddm-dfm 447/udp ddm-rfm
    ddm-byte 448/tcp ddm-byte
    ddm-byte 448/udp ddm-byte
    # jan david fisher <jdfisher@vnet.ibm.com>
    as-servermap 449/tcp as server mapper
    as-servermap 449/udp as server mapper
    # barbara foss <bgfoss@rchvmv.vnet.ibm.com>
    tserver 450/tcp tserver
    tserver 450/udp tserver
    # harvey s. schultz <hss@mtgzfs3.mt.att.com>
    # 451-511 unassigned
    exec 512/tcp remote process execution;
    # authentication performed using
    # passwords and unix loppgin names
    biff 512/udp used by mail system to notify users
    # of new mail received; currently
    # receives messages only from
    # processes on the same machine
    login 513/tcp remote login a la telnet;
    # automatic authentication performed
    # based on priviledged port numbers
    # and distributed data bases which
    # identify "authentication domains"
    who 513/udp maintains data bases showing who's
    # logged in to machines on a local
    # net and the load average of the
    # machine
    cmd 514/tcp like exec, but automatic
    # authentication is performed as for
    # login server

    reynolds & postel [page 34]

    rfc 1700 assigned numbers october 1994

    syslog 514/udp
    printer 515/tcp spooler
    printer 515/udp spooler
    # 516/tcp unassigned
    # 516/udp unassigned
    talk 517/tcp 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)
    talk 517/udp like tenex link, but across
    # machine - unfortunately, doesn't
    # use link protocol (this is actually
    # just a rendezvous port from which a
    tcp connection is established)
    ntalk 518/tcp
    ntalk 518/udp
    utime 519/tcp unixtime
    utime 519/udp unixtime
    efs 520/tcp extended file name server
    router 520/udp local routing process (on site);
    # uses variant of xerox ns routing
    # information protocol
    # 521-524 unassigned
    timed 525/tcp timeserver
    timed 525/udp timeserver
    tempo 526/tcp newdate
    tempo 526/udp newdate
    # 527-529 unassigned
    courier 530/tcp rpc
    courier 530/udp rpc
    conference 531/tcp chat
    conference 531/udp chat
    netnews 532/tcp readnews
    netnews 532/udp readnews
    netwall 533/tcp for emergency broadcasts
    netwall 533/udp for emergency broadcasts
    # 534-538 unassigned
    apertus-ldp 539/tcp apertus technologies load determination
    apertus-ldp 539/udp apertus technologies load determination
    uucp 540/tcp uucpd
    uucp 540/udp uucpd
    uucp-rlogin 541/tcp uucp-rlogin stuart lynne
    uucp-rlogin 541/udp uucp-rlogin sl@wimsey.com
    # 542/tcp unassigned
    # 542/udp unassigned
    klogin 543/tcp
    klogin 543/udp

    reynolds & postel [page 35]

    rfc 1700 assigned numbers october 1994

    kshell 544/tcp krcmd
    kshell 544/udp krcmd
    # 545-549 unassigned
    new-rwho 550/tcp new-who
    new-rwho 550/udp new-who
    # 551-555 unassigned
    dsf 555/tcp
    dsf 555/udp
    remotefs 556/tcp rfs server
    remotefs 556/udp rfs server
    # 557-559 unassigned
    rmonitor 560/tcp rmonitord
    rmonitor 560/udp rmonitord
    monitor 561/tcp
    monitor 561/udp
    chshell 562/tcp chcmd
    chshell 562/udp chcmd
    # 563/tcp unassigned
    # 563/udp unassigned
    9pfs 564/tcp plan 9 file service
    9pfs 564/udp plan 9 file service
    whoami 565/tcp whoami
    whoami 565/udp whoami
    # 566-569 unassigned
    meter 570/tcp demon
    meter 570/udp demon
    meter 571/tcp udemon
    meter 571/udp udemon
    # 572-599 unassigned
    ipcserver 600/tcp sun ipc server
    ipcserver 600/udp sun ipc server
    nqs 607/tcp nqs
    nqs 607/udp nqs
    urm 606/tcp cray unified resource manager
    urm 606/udp cray unified resource manager
    # bill schiefelbein <schief@aspen.cray.com>
    sift-uft 608/tcp sender-initiated/unsolicited file transfer
    sift-uft 608/udp sender-initiated/unsolicited file transfer
    # rick troth <troth@rice.edu>
    npmp-trap 609/tcp npmp-trap
    npmp-trap 609/udp npmp-trap
    npmp-local 610/tcp npmp-local
    npmp-local 610/udp npmp-local
    npmp-gui 611/tcp npmp-gui
    npmp-gui 611/udp npmp-gui
    # john barnes <jbarnes@crl.com>
    ginad 634/tcp ginad
    ginad 634/udp ginad

    reynolds & postel [page 36]

    rfc 1700 assigned numbers october 1994

    # mark crother <mark@eis.calstate.edu>
    mdqs 666/tcp
    mdqs 666/udp
    doom 666/tcp doom id software
    doom 666/tcp doom id software
    # <ddt@idcube.idsoftware.com>
    elcsd 704/tcp errlog copy/server daemon
    elcsd 704/udp errlog copy/server daemon

    entrustmanager 709/tcp entrustmanager
    entrustmanager 709/udp entrustmanager
    # peter whittaker <pww@bnr.ca>
    netviewdm1 729/tcp ibm netview dm/6000 server/client
    netviewdm1 729/udp ibm netview dm/6000 server/client
    netviewdm2 730/tcp ibm netview dm/6000 send/tcp
    netviewdm2 730/udp ibm netview dm/6000 send/tcp
    netviewdm3 731/tcp ibm netview dm/6000 receive/tcp
    netviewdm3 731/udp ibm netview dm/6000 receive/tcp
    # philippe binet (phbinet@vnet.ibm.com)
    netgw 741/tcp netgw
    netgw 741/udp netgw
    netrcs 742/tcp network based rev. cont. sys.
    netrcs 742/udp network based rev. cont. sys.
    # gordon c. galligher <gorpong@ping.chi.il.us>
    flexlm 744/tcp flexible license manager
    flexlm 744/udp flexible license manager
    # matt christiano
    # <globes@matt@oliveb.atc.olivetti.com>
    fujitsu-dev 747/tcp fujitsu device control
    fujitsu-dev 747/udp fujitsu device control
    ris-cm 748/tcp russell info sci calendar manager
    ris-cm 748/udp russell info sci calendar manager
    kerberos-adm 749/tcp kerberos administration
    kerberos-adm 749/udp kerberos administration
    rfile 750/tcp
    loadav 750/udp
    pump 751/tcp
    pump 751/udp
    qrh 752/tcp
    qrh 752/udp
    rrh 753/tcp
    rrh 753/udp
    tell 754/tcp send
    tell 754/udp send
    nlogin 758/tcp
    nlogin 758/udp
    con 759/tcp
    con 759/udp

    reynolds & postel [page 37]

    rfc 1700 assigned numbers october 1994

    ns 760/tcp
    ns 760/udp
    rxe 761/tcp
    rxe 761/udp
    quotad 762/tcp
    quotad 762/udp
    cycleserv 763/tcp
    cycleserv 763/udp
    omserv 764/tcp
    omserv 764/udp
    webster 765/tcp
    webster 765/udp
    phonebook 767/tcp phone
    phonebook 767/udp phone
    vid 769/tcp
    vid 769/udp
    cadlock 770/tcp
    cadlock 770/udp
    rtip 771/tcp
    rtip 771/udp
    cycleserv2 772/tcp
    cycleserv2 772/udp
    submit 773/tcp
    notify 773/udp
    rpasswd 774/tcp
    acmaint_dbd 774/udp
    entomb 775/tcp
    acmaint_transd 775/udp
    wpages 776/tcp
    wpages 776/udp
    wpgs 780/tcp
    wpgs 780/udp
    concert 786/tcp concert
    concert 786/udp concert
    # josyula r. rao <jrrao@watson.ibm.com>
    mdbs_daemon 800/tcp
    mdbs_daemon 800/udp
    device 801/tcp
    device 801/udp
    xtreelic 996/tcp central point software
    xtreelic 996/udp central point software
    # dale cabell <dacabell@smtp.xtree.com>
    maitrd 997/tcp
    maitrd 997/udp
    busboy 998/tcp
    puparp 998/udp
    garcon 999/tcp
    applix 999/udp applix ac

    reynolds & postel [page 38]

    rfc 1700 assigned numbers october 1994

    puprouter 999/tcp
    puprouter 999/udp
    cadlock 1000/tcp
    ock 1000/udp
    1023/tcp reserved
    1024/udp reserved
    # iana <iana@isi.edu>

    registered port numbers

    the registered ports are not controlled by the iana and on most
    systems can be used by ordinary user processes or programs executed by
    ordinary users.

    ports are used in the tcp [rfc793] to name the ends of logical
    connections which carry long term conversations. for the purpose of
    providing services to unknown callers, a service contact port is
    defined. this list specifies the port used by the server process as
    its contact port. while the iana can not control uses of these ports
    it does register or list uses of these ports as a convienence to the
    community.

    to the extent possible, these same port assignments are used with the
    udp [rfc768].

    the registered ports are in the range 1024-65535.

    port assignments:

    keyword decimal description references
    ------- ------- ----------- ----------
    1024/tcp reserved
    1024/udp reserved
    # iana <iana@isi.edu>
    blackjack 1025/tcp network blackjack
    blackjack 1025/udp network blackjack
    iad1 1030/tcp bbn iad
    iad1 1030/udp bbn iad
    iad2 1031/tcp bbn iad
    iad2 1031/udp bbn iad
    iad3 1032/tcp bbn iad
    iad3 1032/udp bbn iad
    # andy malis <malis_a@timeplex.com>
    instl_boots 1067/tcp installation bootstrap proto. serv.
    instl_boots 1067/udp installation bootstrap proto. serv.
    instl_bootc 1068/tcp installation bootstrap proto. cli.

    reynolds & postel [page 39]

    rfc 1700 assigned numbers october 1994

    instl_bootc 1068/udp installation bootstrap proto. cli.
    # david arko <<darko@hpfcrn.fc.hp.com>
    socks 1080/tcp socks
    socks 1080/udp socks
    # ying-da lee <ylee@syl.dl.nec.com
    ansoft-lm-1 1083/tcp anasoft license manager
    ansoft-lm-1 1083/udp anasoft license manager
    ansoft-lm-2 1084/tcp anasoft license manager
    ansoft-lm-2 1084/udp anasoft license manager
    nfa 1155/tcp network file access
    nfa 1155/udp network file access
    # james powell <james@mailhost.unidata.com>
    nerv 1222/tcp sni r&d network
    nerv 1222/udp sni r&d network
    # martin freiss <freiss.pad@sni.de>
    hermes 1248/tcp
    hermes 1248/udp
    alta-ana-lm 1346/tcp alta analytics license manager
    alta-ana-lm 1346/udp alta analytics license manager
    bbn-mmc 1347/tcp multi media conferencing
    bbn-mmc 1347/udp multi media conferencing
    bbn-mmx 1348/tcp multi media conferencing
    bbn-mmx 1348/udp multi media conferencing
    sbook 1349/tcp registration network protocol
    sbook 1349/udp registration network protocol
    editbench 1350/tcp registration network protocol
    editbench 1350/udp registration network protocol
    # simson l. garfinkel <simsong@next.cambridge.ma.us>
    equationbuilder 1351/tcp digital tool works (mit)
    equationbuilder 1351/udp digital tool works (mit)
    # terrence j. talbot <lexcube!tjt@bu.edu>
    lotusnote 1352/tcp lotus note
    lotusnote 1352/udp lotus note
    # greg pflaum <iris.com!greg_pflaum@uunet.uu.net>
    relief 1353/tcp relief consulting
    relief 1353/udp relief consulting
    # john feiler <relief!jjfeiler@uu2.psi.com>
    rightbrain 1354/tcp rightbrain software
    rightbrain 1354/udp rightbrain software
    # glenn reid <glann@rightbrain.com>
    intuitive edge 1355/tcp intuitive edge
    intuitive edge 1355/udp intuitive edge
    # montgomery zukowski
    # <monty@nextnorth.acs.ohio-state.edu>
    cuillamartin 1356/tcp cuillamartin company
    cuillamartin 1356/udp cuillamartin company
    pegboard 1357/tcp electronic pegboard
    pegboard 1357/udp electronic pegboard

    reynolds & postel [page 40]

    rfc 1700 assigned numbers october 1994

    # chris cuilla
    # <balr!vpnet!cuilla!chris@clout.chi.il.us>
    connlcli 1358/tcp connlcli
    connlcli 1358/udp connlcli
    ftsrv 1359/tcp ftsrv
    ftsrv 1359/udp ftsrv
    # ines homem de melo <sidinf@brfapesp.bitnet>
    mimer 1360/tcp mimer
    mimer 1360/udp mimer
    # per schroeder <per.schroder@mimer.se>
    linx 1361/tcp linx
    linx 1361/udp linx
    # steffen schilke <---none--->
    timeflies 1362/tcp timeflies
    timeflies 1362/udp timeflies
    # doug kent <mouthers@slugg@nwnexus.wa.com>
    ndm-requester 1363/tcp network datamover requester
    ndm-requester 1363/udp network datamover requester
    ndm-server 1364/tcp network datamover server
    ndm-server 1364/udp network datamover server
    # toshio watanabe
    # <watanabe@godzilla.rsc.spdd.ricoh.co.j>
    adapt-sna 1365/tcp network software associates
    adapt-sna 1365/udp network software associates
    # jeffery chiao <714-768-401>
    netware-csp 1366/tcp novell netware comm service platform
    netware-csp 1366/udp novell netware comm service platform
    # laurie lindsey <llindsey@novell.com>
    dcs 1367/tcp dcs
    dcs 1367/udp dcs
    # stefan siebert <ssiebert@dcs.de>
    screencast 1368/tcp screencast
    screencast 1368/udp screencast
    # bill tschumy <other!bill@uunet.uu.net>
    gv-us 1369/tcp globalview to unix shell
    gv-us 1369/udp globalview to unix shell
    us-gv 1370/tcp unix shell to globalview
    us-gv 1370/udp unix shell to globalview
    # makoto mita <mita@ssdev.ksp.fujixerox.co.jp>
    fc-cli 1371/tcp fujitsu config protocol
    fc-cli 1371/udp fujitsu config protocol
    fc-ser 1372/tcp fujitsu config protocol
    fc-ser 1372/udp fujitsu config protocol
    # ryuichi horie <horie@spad.sysrap.cs.fujitsu.co.jp>
    chromagrafx 1373/tcp chromagrafx
    chromagrafx 1373/udp chromagrafx
    # mike barthelemy <msb@chromagrafx.com>
    molly 1374/tcp epi software systems
6 entry daha
hesabın var mı? giriş yap