• 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
  • reynolds & postel [page 41]

    rfc 1700 assigned numbers october 1994

    molly 1374/udp epi software systems
    # jim vlcek <vlcek@epimbe.com>
    bytex 1375/tcp bytex
    bytex 1375/udp bytex
    # mary ann burt <bytex!ws054!maryann@uunet.uu.net>
    ibm-pps 1376/tcp ibm person to person software
    ibm-pps 1376/udp ibm person to person software
    # simon phipps <sphipps@vnet.ibm.com>
    cichlid 1377/tcp cichlid license manager
    cichlid 1377/udp cichlid license manager
    # andy burgess <aab@cichlid.com>
    elan 1378/tcp elan license manager
    elan 1378/udp elan license manager
    # ken greer <kg@elan.com>
    dbreporter 1379/tcp integrity solutions
    dbreporter 1379/udp integrity solutions
    # tim dawson <tdawson%mspboss@uunet.uu.net>
    telesis-licman 1380/tcp telesis network license manager
    telesis-licman 1380/udp telesis network license manager
    # karl schendel, jr. <wiz@telesis.com>
    apple-licman 1381/tcp apple network license manager
    apple-licman 1381/udp apple network license manager
    # earl wallace <earlw@apple.com>
    udt_os 1382/tcp
    udt_os 1382/udp
    gwha 1383/tcp gw hannaway network license manager
    gwha 1383/udp gw hannaway network license manager
    # j. gabriel foster <fop@gwha.com>
    os-licman 1384/tcp objective solutions license manager
    os-licman 1384/udp objective solutions license manager
    # donald cornwell <don.cornwell@objective.com>
    atex_elmd 1385/tcp atex publishing license manager
    atex_elmd 1385/udp atex publishing license manager
    # brett sorenson <bcs@atex.com>
    checksum 1386/tcp checksum license manager
    checksum 1386/udp checksum license manager
    # andreas glocker <glocker@sirius.com>
    cadsi-lm 1387/tcp computer aided design software inc lm
    cadsi-lm 1387/udp computer aided design software inc lm
    # sulistio muljadi
    objective-dbc 1388/tcp objective solutions database cache
    objective-dbc 1388/udp objective solutions database cache
    # donald cornwell
    iclpv-dm 1389/tcp document manager
    iclpv-dm 1389/udp document manager
    iclpv-sc 1390/tcp storage controller
    iclpv-sc 1390/udp storage controller
    iclpv-sas 1391/tcp storage access server

    reynolds & postel [page 42]

    rfc 1700 assigned numbers october 1994

    iclpv-sas 1391/udp storage access server
    iclpv-pm 1392/tcp print manager
    iclpv-pm 1392/udp print manager
    iclpv-nls 1393/tcp network log server
    iclpv-nls 1393/udp network log server
    iclpv-nlc 1394/tcp network log client
    iclpv-nlc 1394/udp network log client
    iclpv-wsm 1395/tcp pc workstation manager software
    iclpv-wsm 1395/udp pc workstation manager software
    # a.p. hobson <a.p.hobson@bra0112.wins.icl.co.uk>
    dvl-activemail 1396/tcp dvl active mail
    dvl-activemail 1396/udp dvl active mail
    audio-activmail 1397/tcp audio active mail
    audio-activmail 1397/udp audio active mail
    video-activmail 1398/tcp video active mail
    video-activmail 1398/udp video active mail
    # ehud shapiro <udi@wisdon.weizmann.ac.il>
    cadkey-licman 1399/tcp cadkey license manager
    cadkey-licman 1399/udp cadkey license manager
    cadkey-tablet 1400/tcp cadkey tablet daemon
    cadkey-tablet 1400/udp cadkey tablet daemon
    # joe mccollough <joe@cadkey.com>
    goldleaf-licman 1401/tcp goldleaf license manager
    goldleaf-licman 1401/udp goldleaf license manager
    # john fox <---none--->
    prm-sm-np 1402/tcp prospero resource manager
    prm-sm-np 1402/udp prospero resource manager
    prm-nm-np 1403/tcp prospero resource manager
    prm-nm-np 1403/udp prospero resource manager
    # b. clifford neuman <bcn@isi.edu>
    igi-lm 1404/tcp infinite graphics license manager
    igi-lm 1404/udp infinite graphics license manager
    ibm-res 1405/tcp ibm remote execution starter
    ibm-res 1405/udp ibm remote execution starter
    netlabs-lm 1406/tcp netlabs license manager
    netlabs-lm 1406/udp netlabs license manager
    dbsa-lm 1407/tcp dbsa license manager
    dbsa-lm 1407/udp dbsa license manager
    # scott shattuck <ss@dbsa.com>
    sophia-lm 1408/tcp sophia license manager
    sophia-lm 1408/udp sophia license manager
    # eric brown <sst!emerald!eric@uunet.uu.net>
    here-lm 1409/tcp here license manager
    here-lm 1409/udp here license manager
    # david ison <here@dialup.oar.net>
    hiq 1410/tcp hiq license manager
    hiq 1410/udp hiq license manager
    # rick pugh <rick@bilmillennium.com>

    reynolds & postel [page 43]

    rfc 1700 assigned numbers october 1994

    af 1411/tcp audiofile
    af 1411/udp audiofile
    # jim gettys <jg@crl.dec.com>
    innosys 1412/tcp innosys
    innosys 1412/udp innosys
    innosys-acl 1413/tcp innosys-acl
    innosys-acl 1413/udp innosys-acl
    # eric welch <--none--->
    ibm-mqseries 1414/tcp ibm mqseries
    ibm-mqseries 1414/udp ibm mqseries
    # roger meli <rmmeli%winvmd@vnet.ibm.com>
    dbstar 1415/tcp dbstar
    dbstar 1415/udp dbstar
    # jeffrey millman <jcm@dbstar.com>
    novell-lu6.2 1416/tcp novell lu6.2
    novell-lu6.2 1416/udp novell lu6.2
    # peter liu <--none--->
    timbuktu-srv1 1417/tcp timbuktu service 1 port
    timbuktu-srv1 1417/tcp timbuktu service 1 port
    timbuktu-srv2 1418/tcp timbuktu service 2 port
    timbuktu-srv2 1418/udp timbuktu service 2 port
    timbuktu-srv3 1419/tcp timbuktu service 3 port
    timbuktu-srv3 1419/udp timbuktu service 3 port
    timbuktu-srv4 1420/tcp timbuktu service 4 port
    timbuktu-srv4 1420/udp timbuktu service 4 port
    # marc epard <marc@waygate.farallon.com>
    gandalf-lm 1421/tcp gandalf license manager
    gandalf-lm 1421/udp gandalf license manager
    # gilmer@gandalf.ca
    autodesk-lm 1422/tcp autodesk license manager
    autodesk-lm 1422/udp autodesk license manager
    # david ko <dko@autodesk.com>
    essbase 1423/tcp essbase arbor software
    essbase 1423/udp essbase arbor software
    hybrid 1424/tcp hybrid encryption protocol
    hybrid 1424/udp hybrid encryption protocol
    # howard hart <hch@hybrid.com>
    zion-lm 1425/tcp zion software license manager
    zion-lm 1425/udp zion software license manager
    # david ferrero <david@zion.com>
    sas-1 1426/tcp satellite-data acquisition system 1
    sas-1 1426/udp satellite-data acquisition system 1
    # bill taylor <sais@ssec.wisc.edu>
    mloadd 1427/tcp mloadd monitoring tool
    mloadd 1427/udp mloadd monitoring tool
    # bob braden <braden@isi.edu>
    informatik-lm 1428/tcp informatik license manager
    informatik-lm 1428/udp informatik license manager

    reynolds & postel [page 44]

    rfc 1700 assigned numbers october 1994

    # harald schlangmann
    # <schlangm@informatik.uni-muenchen.de>
    nms 1429/tcp hypercom nms
    nms 1429/udp hypercom nms
    tpdu 1430/tcp hypercom tpdu
    tpdu 1430/udp hypercom tpdu
    # noor chowdhury <noor@hypercom.com>
    rgtp 1431/tcp reverse gosip transport
    rgtp 1431/udp reverse gosip transport
    # <iwj10@cl.cam-orl.co.uk>
    blueberry-lm 1432/tcp blueberry software license manager
    blueberry-lm 1432/udp blueberry software license manager
    # steve beigel <ublueb!steve@uunet.uu.net>
    ms-sql-s 1433/tcp microsoft-sql-server
    ms-sql-s 1433/udp microsoft-sql-server
    ms-sql-m 1434/tcp microsoft-sql-monitor
    ms-sql-m 1434/udp microsoft-sql-monitor
    # peter hussey <peterhus@microsoft.com>
    ibm-cics 1435/tcp ibm cisc
    ibm-cics 1435/udp ibm cisc
    # geoff meacock <gbibmswl@ibmmail.com>
    sas-2 1436/tcp satellite-data acquisition system 2
    sas-2 1436/udp satellite-data acquisition system 2
    # bill taylor <sais@ssec.wisc.edu>
    tabula 1437/tcp tabula
    tabula 1437/udp tabula
    # marcelo einhorn
    # <kgune%hujivm1.bitnet@taunivm.tau.ac.il>
    eicon-server 1438/tcp eicon security agent/server
    eicon-server 1438/udp eicon security agent/server
    eicon-x25 1439/tcp eicon x25/sna gateway
    eicon-x25 1439/udp eicon x25/sna gateway
    eicon-slp 1440/tcp eicon service location protocol
    eicon-slp 1440/udp eicon service location protocol
    # pat calhoun <calhoun@admin.eicon.qc.ca>
    cadis-1 1441/tcp cadis license management
    cadis-1 1441/udp cadis license management
    cadis-2 1442/tcp cadis license management
    cadis-2 1442/udp cadis license management
    # todd wichers <twichers@csn.org>
    ies-lm 1443/tcp integrated engineering software
    ies-lm 1443/udp integrated engineering software
    # david tong <david_tong@integrated.mb.ca>
    marcam-lm 1444/tcp marcam license management
    marcam-lm 1444/udp marcam license management
    # therese hunt <hunt@marcam.com>
    proxima-lm 1445/tcp proxima license manager
    proxima-lm 1445/udp proxima license manager

    reynolds & postel [page 45]

    rfc 1700 assigned numbers october 1994

    ora-lm 1446/tcp optical research associates license manager
    ora-lm 1446/udp optical research associates license manager
    apri-lm 1447/tcp applied parallel research lm
    apri-lm 1447/udp applied parallel research lm
    # jim dillon <jed@apri.com>
    oc-lm 1448/tcp openconnect license manager
    oc-lm 1448/udp openconnect license manager
    # sue barnhill <snb@oc.com>
    peport 1449/tcp peport
    peport 1449/udp peport
    # qentin neill <quentin@columbiasc.ncr.com>
    dwf 1450/tcp tandem distributed workbench facility
    dwf 1450/udp tandem distributed workbench facility
    # mike bert <berg_mike@tandem.com>
    infoman 1451/tcp ibm information management
    infoman 1451/udp ibm information management
    # karen burns <---none--->
    gtegsc-lm 1452/tcp gte government systems license man
    gtegsc-lm 1452/udp gte government systems license man
    # mike gregory <gregory_mike@msmail.iipo.gtegsc.com>
    genie-lm 1453/tcp genie license manager
    genie-lm 1453/udp genie license manager
    # paul applegate <p.applegate2@genie.geis.com>
    interhdl_elmd 1454/tcp interhdl license manager
    interhdl_elmd 1454/tcp interhdl license manager
    # eli sternheim eli@interhdl.com
    esl-lm 1455/tcp esl license manager
    esl-lm 1455/udp esl license manager
    # abel chou <abel@willy.esl.com>
    dca 1456/tcp dca
    dca 1456/udp dca
    # jeff garbers <jgarbers@netcom.com>
    valisys-lm 1457/tcp valisys license manager
    valisys-lm 1457/udp valisys license manager
    # leslie lincoln <leslie_lincoln@valisys.com>
    nrcabq-lm 1458/tcp nichols research corp.
    nrcabq-lm 1458/udp nichols research corp.
    # howard cole <hcole@tumbleweed.nrcabq.com>
    proshare1 1459/tcp proshare notebook application
    proshare1 1459/udp proshare notebook application
    proshare2 1460/tcp proshare notebook application
    proshare2 1460/udp proshare notebook application
    # robin kar <robin_kar@ccm.hf.intel.com>
    ibm_wrless_lan 1461/tcp ibm wireless lan
    ibm_wrless_lan 1461/udp ibm wireless lan
    # <flanne@vnet.ibm.com>
    world-lm 1462/tcp world license manager
    world-lm 1462/udp world license manager

    reynolds & postel [page 46]

    rfc 1700 assigned numbers october 1994

    # michael s amirault <ambi@world.std.com>
    nucleus 1463/tcp nucleus
    nucleus 1463/udp nucleus
    # venky nagar <venky@fafner.stanford.edu>
    msl_lmd 1464/tcp msl license manager
    msl_lmd 1464/udp msl license manager
    # matt timmermans
    pipes 1465/tcp pipes platform
    pipes 1465/udp pipes platform mfarlin@peerlogic.com
    # mark farlin <mfarlin@peerlogic.com>
    oceansoft-lm 1466/tcp ocean software license manager
    oceansoft-lm 1466/udp ocean software license manager
    # randy leonard <randy@oceansoft.com>
    csdmbase 1467/tcp csdmbase
    csdmbase 1467/udp csdmbase
    csdm 1468/tcp csdm
    csdm 1468/udp csdm
    # robert stabl <stabl@informatik.uni-muenchen.de>
    aal-lm 1469/tcp active analysis limited license manager
    aal-lm 1469/udp active analysis limited license manager
    # david snocken +44 (71)437-7009
    uaiact 1470/tcp universal analytics
    uaiact 1470/udp universal analytics
    # mark r. ludwig <mark-ludwig@uai.com>
    csdmbase 1471/tcp csdmbase
    csdmbase 1471/udp csdmbase
    csdm 1472/tcp csdm
    csdm 1472/udp csdm
    # robert stabl <stabl@informatik.uni-muenchen.de>
    openmath 1473/tcp openmath
    openmath 1473/udp openmath
    # garth mayville <mayville@maplesoft.on.ca>
    telefinder 1474/tcp telefinder
    telefinder 1474/udp telefinder
    # jim white <jim_white@spiderisland.com>
    taligent-lm 1475/tcp taligent license manager
    taligent-lm 1475/udp taligent license manager
    # mark sapsford <mark_sapsford@@taligent.com>
    clvm-cfg 1476/tcp clvm-cfg
    clvm-cfg 1476/udp clvm-cfg
    # eric soderberg <seric@cup.hp.com>
    ms-sna-server 1477/tcp ms-sna-server
    ms-sna-server 1477/udp ms-sna-server
    ms-sna-base 1478/tcp ms-sna-base
    ms-sna-base 1478/udp ms-sna-base
    # gordon mangione <gordm@microsoft.com>
    dberegister 1479/tcp dberegister
    dberegister 1479/udp dberegister

    reynolds & postel [page 47]

    rfc 1700 assigned numbers october 1994

    # brian griswold <brian@dancingbear.com>
    pacerforum 1480/tcp pacerforum
    pacerforum 1480/udp pacerforum
    # peter caswell <pfc@pacvax.pacersoft.com>
    airs 1481/tcp airs
    airs 1481/udp airs
    # bruce wilson, 905-771-6161
    miteksys-lm 1482/tcp miteksys license manager
    miteksys-lm 1482/udp miteksys license manager
    # shane mcroberts <mcroberts@miteksys.com>
    afs 1483/tcp afs license manager
    afs 1483/udp afs license manager
    # michael r. pizolato <michael@afs.com>
    confluent 1484/tcp confluent license manager
    confluent 1484/udp confluent license manager
    # james greenfiel <jim@pa.confluent.com>
    lansource 1485/tcp lansource
    lansource 1485/udp lansource
    # doug scott <lansourc@hookup.net>
    nms_topo_serv 1486/tcp nms_topo_serv
    nms_topo_serv 1486/udp nms_topo_serv
    # sylvia siu <sylvia_siu@novell.co>
    localinfosrvr 1487/tcp localinfosrvr
    localinfosrvr 1487/udp localinfosrvr
    # brian matthews <brian_matthews@ibist.ibis.com>
    docstor 1488/tcp docstor
    docstor 1488/udp docstor
    # brian spears <bspears@salix.com>
    dmdocbroker 1489/tcp dmdocbroker
    dmdocbroker 1489/udp dmdocbroker
    # razmik abnous <abnous@documentum.com>
    insitu-conf 1490/tcp insitu-conf
    insitu-conf 1490/udp insitu-conf
    # paul blacknell <paul@insitu.com>
    anynetgateway 1491/tcp anynetgateway
    anynetgateway 1491/udp anynetgateway
    # dan poirier <poirier@vnet.ibm.com>
    stone-design-1 1492/tcp stone-design-1
    stone-design-1 1492/udp stone-design-1
    # andrew stone <andrew@stone.com>
    netmap_lm 1493/tcp netmap_lm
    netmap_lm 1493/udp netmap_lm
    # phillip magson <philm@extro.ucc.su.oz.au>
    ica 1494/tcp ica
    ica 1494/udp ica
    # john richardson, citrix systems
    cvc 1495/tcp cvc
    cvc 1495/udp cvc

    reynolds & postel [page 48]

    rfc 1700 assigned numbers october 1994

    # bill davidson <billd@equalizer.cray.com>
    liberty-lm 1496/tcp liberty-lm
    liberty-lm 1496/udp liberty-lm
    # jim rogers <trane!jimbo@pacbell.com>
    rfx-lm 1497/tcp rfx-lm
    rfx-lm 1497/udp rfx-lm
    # bill bishop <bil@rfx.rfx.com>
    watcom-sql 1498/tcp watcom-sql
    watcom-sql 1498/udp watcom-sql
    # rog skubowius <rwskubow@ccnga.uwaterloo.ca>
    fhc 1499/tcp federico heinz consultora
    fhc 1499/udp federico heinz consultora
    # federico heinz <federico@heinz.com>
    vlsi-lm 1500/tcp vlsi license manager
    vlsi-lm 1500/udp vlsi license manager
    # shue-lin kuo <shuelin@mdk.sanjose.vlsi.com>
    sas-3 1501/tcp satellite-data acquisition system 3
    sas-3 1501/udp satellite-data acquisition system 3
    # bill taylor <sais@ssec.wisc.edu>
    shivadiscovery 1502/tcp shiva
    shivadiscovery 1502/udp shiva
    # jonathan wenocur <jhw@shiva.com>
    imtc-mcs 1503/tcp databeam
    imtc-mcs 1503/udp databeam
    # jim johnstone <jjohnstone@databeam.com>
    evb-elm 1504/tcp evb software engineering license manager
    evb-elm 1504/udp evb software engineering license manager
    # b.g. mahesh < mahesh@sett.com>
    funkproxy 1505/tcp funk software, inc.
    funkproxy 1505/udp funk software, inc.
    # robert d. vincent <bert@willowpond.com>
    # 1506-1523 unassigned
    ingreslock 1524/tcp ingres
    ingreslock 1524/udp ingres
    orasrv 1525/tcp oracle
    orasrv 1525/udp oracle
    prospero-np 1525/tcp prospero directory service non-priv
    prospero-np 1525/udp prospero directory service non-priv
    pdap-np 1526/tcp prospero data access prot non-priv
    pdap-np 1526/udp prospero data access prot non-priv
    # b. clifford neuman <bcn@isi.edu>
    tlisrv 1527/tcp oracle
    tlisrv 1527/udp oracle
    coauthor 1529/tcp oracle
    coauthor 1529/udp oracle
    issd 1600/tcp
    issd 1600/udp
    nkd 1650/tcp

    reynolds & postel [page 49]

    rfc 1700 assigned numbers october 1994

    nkd 1650/udp
    proshareaudio 1651/tcp proshare conf audio
    proshareaudio 1651/udp proshare conf audio
    prosharevideo 1652/tcp proshare conf video
    prosharevideo 1652/udp proshare conf video
    prosharedata 1653/tcp proshare conf data
    prosharedata 1653/udp proshare conf data
    prosharerequest 1654/tcp proshare conf request
    prosharerequest 1654/udp proshare conf request
    prosharenotify 1655/tcp proshare conf notify
    prosharenotify 1655/udp proshare conf notify
    # <gunner@ibeam.intel.com>
    netview-aix-1 1661/tcp netview-aix-1
    netview-aix-1 1661/udp netview-aix-1
    netview-aix-2 1662/tcp netview-aix-2
    netview-aix-2 1662/udp netview-aix-2
    netview-aix-3 1663/tcp netview-aix-3
    netview-aix-3 1663/udp netview-aix-3
    netview-aix-4 1664/tcp netview-aix-4
    netview-aix-4 1664/udp netview-aix-4
    netview-aix-5 1665/tcp netview-aix-5
    netview-aix-5 1665/udp netview-aix-5
    netview-aix-6 1666/tcp netview-aix-6
    netview-aix-6 1666/udp netview-aix-6
    # martha crisson <crisson@ralvm12.vnet.ibm.com>
    licensedaemon 1986/tcp cisco license management
    licensedaemon 1986/udp cisco license management
    tr-rsrb-p1 1987/tcp cisco rsrb priority 1 port
    tr-rsrb-p1 1987/udp cisco rsrb priority 1 port
    tr-rsrb-p2 1988/tcp cisco rsrb priority 2 port
    tr-rsrb-p2 1988/udp cisco rsrb priority 2 port
    tr-rsrb-p3 1989/tcp cisco rsrb priority 3 port
    tr-rsrb-p3 1989/udp cisco rsrb priority 3 port
    #problems!===================================================
    mshnet 1989/tcp mhsnet system
    mshnet 1989/udp mhsnet system
    # bob kummerfeld <bob@sarad.cs.su.oz.au>
    #problems!===================================================
    stun-p1 1990/tcp cisco stun priority 1 port
    stun-p1 1990/udp cisco stun priority 1 port
    stun-p2 1991/tcp cisco stun priority 2 port
    stun-p2 1991/udp cisco stun priority 2 port
    stun-p3 1992/tcp cisco stun priority 3 port
    stun-p3 1992/udp cisco stun priority 3 port
    #problems!===================================================
    ipsendmsg 1992/tcp ipsendmsg
    ipsendmsg 1992/udp ipsendmsg
    # bob kummerfeld <bob@sarad.cs.su.oz.au>

    reynolds & postel [page 50]

    rfc 1700 assigned numbers october 1994

    #problems!===================================================
    snmp-tcp-port 1993/tcp cisco snmp tcp port
    snmp-tcp-port 1993/udp cisco snmp tcp port
    stun-port 1994/tcp cisco serial tunnel port
    stun-port 1994/udp cisco serial tunnel port
    perf-port 1995/tcp cisco perf port
    perf-port 1995/udp cisco perf port
    tr-rsrb-port 1996/tcp cisco remote srb port
    tr-rsrb-port 1996/udp cisco remote srb port
    gdp-port 1997/tcp cisco gateway discovery protocol
    gdp-port 1997/udp cisco gateway discovery protocol
    x25-svc-port 1998/tcp cisco x.25 service (xot)
    x25-svc-port 1998/udp cisco x.25 service (xot)
    tcp-id-port 1999/tcp cisco identification port
    tcp-id-port 1999/udp cisco identification port
    callbook 2000/tcp
    callbook 2000/udp
    dc 2001/tcp
    wizard 2001/udp curry
    globe 2002/tcp
    globe 2002/udp
    mailbox 2004/tcp
    emce 2004/udp ccws mm conf
    berknet 2005/tcp
    oracle 2005/udp
    invokator 2006/tcp
    raid-cc 2006/udp raid
    dectalk 2007/tcp
    raid-am 2007/udp
    conf 2008/tcp
    terminaldb 2008/udp
    news 2009/tcp
    whosockami 2009/udp
    search 2010/tcp
    pipe_server 2010/udp
    raid-cc 2011/tcp raid
    servserv 2011/udp
    ttyinfo 2012/tcp
    raid-ac 2012/udp
    raid-am 2013/tcp
    raid-cd 2013/udp
    troff 2014/tcp
    raid-sf 2014/udp
    cypress 2015/tcp
    raid-cs 2015/udp
    bootserver 2016/tcp
    bootserver 2016/udp
    cypress-stat 2017/tcp

    reynolds & postel [page 51]

    rfc 1700 assigned numbers october 1994

    bootclient 2017/udp
    terminaldb 2018/tcp
    rellpack 2018/udp
    whosockami 2019/tcp
    about 2019/udp
    xinupageserver 2020/tcp
    xinupageserver 2020/udp
    servexec 2021/tcp
    xinuexpansion1 2021/udp
    down 2022/tcp
    xinuexpansion2 2022/udp
    xinuexpansion3 2023/tcp
    xinuexpansion3 2023/udp
    xinuexpansion4 2024/tcp
    xinuexpansion4 2024/udp
    ellpack 2025/tcp
    xribs 2025/udp
    scrabble 2026/tcp
    scrabble 2026/udp
    shadowserver 2027/tcp
    shadowserver 2027/udp
    submitserver 2028/tcp
    submitserver 2028/udp
    device2 2030/tcp
    device2 2030/udp
    blackboard 2032/tcp
    blackboard 2032/udp
    glogger 2033/tcp
    glogger 2033/udp
    scoremgr 2034/tcp
    scoremgr 2034/udp
    imsldoc 2035/tcp
    imsldoc 2035/udp
    objectmanager 2038/tcp
    objectmanager 2038/udp
    lam 2040/tcp
    lam 2040/udp
    interbase 2041/tcp
    interbase 2041/udp
    isis 2042/tcp
    isis 2042/udp
    isis-bcast 2043/tcp
    isis-bcast 2043/udp
    rimsl 2044/tcp
    rimsl 2044/udp
    cdfunc 2045/tcp
    cdfunc 2045/udp
    sdfunc 2046/tcp

    reynolds & postel [page 52]

    rfc 1700 assigned numbers october 1994

    sdfunc 2046/udp
    dls 2047/tcp
    dls 2047/udp
    dls-monitor 2048/tcp
    dls-monitor 2048/udp
    shilp 2049/tcp
    shilp 2049/udp
    dlsrpn 2065/tcp data link switch read port number
    dlsrpn 2065/udp data link switch read port number
    dlswpn 2067/tcp data link switch write port number
    dlswpn 2067/udp data link switch write port number
    ats 2201/tcp advanced training system program
    ats 2201/udp advanced training system program
    rtsserv 2500/tcp resource tracking system server
    rtsserv 2500/udp resource tracking system server
    rtsclient 2501/tcp resource tracking system client
    rtsclient 2501/udp resource tracking system client
    # aubrey turner
    # <s95525ta%etsuacad.bitnet@etsuadmn.etsu.edu>
    hp-3000-telnet 2564/tcp hp 3000 ns/vt block mode telnet
    www-dev 2784/tcp world wide web - development
    www-dev 2784/udp world wide web - development
    nsws 3049/tcp
    nsws 3049/udp
    ccmail 3264/tcp cc:mail/lotus
    ccmail 3264/udp cc:mail/lotus
    dec-notes 3333/tcp dec notes
    dec-notes 3333/udp dec notes
    # kim moraros <moraros@via.enet.dec.com>
    mapper-nodemgr 3984/tcp mapper network node manager
    mapper-nodemgr 3984/udp mapper network node manager
    mapper-mapethd 3985/tcp mapper tcp/ip server
    mapper-mapethd 3985/udp mapper tcp/ip server
    mapper-ws_ethd 3986/tcp mapper workstation server
    mapper-ws_ethd 3986/udp mapper workstation server
    # john c. horton <jch@unirsvl.rsvl.unisys.com>
    bmap 3421/tcp bull apprise portmapper
    bmap 3421/udp bull apprise portmapper
    # jeremy gilbert <j.gilbert@ma30.bull.com>
    udt_os 3900/tcp unidata udt os
    udt_os 3900/udp unidata udt os
    # james powell <james@mailhost.unidata.com>
    nuts_dem 4132/tcp nuts daemon
    nuts_dem 4132/udp nuts daemon
    nuts_bootp 4133/tcp nuts bootp server
    nuts_bootp 4133/udp nuts bootp server
    # martin freiss <freiss.pad@sni.>
    unicall 4343/tcp unicall

    reynolds & postel [page 53]

    rfc 1700 assigned numbers october 1994

    unicall 4343/udp unicall
    # james powell <james@enghp.unidata.comp>
    krb524 4444/tcp krb524
    krb524 4444/udp krb524
    # b. clifford neuman <bcn@isi.edu>
    rfa 4672/tcp remote file access server
    rfa 4672/udp remote file access server
    commplex-main 5000/tcp
    commplex-main 5000/udp
    commplex-link 5001/tcp
    commplex-link 5001/udp
    rfe 5002/tcp radio free ethernet
    rfe 5002/udp radio free ethernet
    telelpathstart 5010/tcp telepathstart
    telelpathstart 5010/udp telepathstart
    telelpathattack 5011/tcp telepathattack
    telelpathattack 5011/udp telepathattack
    # helmuth breitenfellner <hbreitenf@vnet.imb.com>
    mmcc 5050/tcp multimedia conference control tool
    mmcc 5050/udp multimedia conference control tool
    rmonitor_secure 5145/tcp
    rmonitor_secure 5145/udp
    aol 5190/tcp america-online
    aol 5190/udp america-online
    # marty lyons <marty@aol.com>
    padl2sim 5236/tcp
    padl2sim 5236/udp
    hacl-hb 5300/tcp # ha cluster heartbeat
    hacl-hb 5300/udp # ha cluster heartbeat
    hacl-gs 5301/tcp # ha cluster general services
    hacl-gs 5301/udp # ha cluster general services
    hacl-cfg 5302/tcp # ha cluster configuration
    hacl-cfg 5302/udp # ha cluster configuration
    hacl-probe 5303/tcp # ha cluster probing
    hacl-probe 5303/udp # ha cluster probing
    hacl-local 5304/tcp
    hacl-local 5304/udp
    hacl-test 5305/tcp
    hacl-test 5305/udp
    # eric soderberg <seric@hposl102.cup.hp>
    x11 6000-6063/tcp x window system
    x11 6000-6063/udp x window system
    # stephen gildea <gildea@expo.lcs.mit.edu>
    sub-process 6111/tcp hp softbench sub-process control
    sub-process 6111/udp hp softbench sub-process control
    meta-corp 6141/tcp meta corporation license manager
    meta-corp 6141/udp meta corporation license manager
    # osamu masuda <--none--->

    reynolds & postel [page 54]

    rfc 1700 assigned numbers october 1994

    aspentec-lm 6142/tcp aspen technology license manager
    aspentec-lm 6142/udp aspen technology license manager
    # kevin massey <massey@aspentec.com>
    watershed-lm 6143/tcp watershed license manager
    watershed-lm 6143/udp watershed license manager
    # david ferrero <david@zion.com>
    statsci1-lm 6144/tcp statsci license manager - 1
    statsci1-lm 6144/udp statsci license manager - 1
    statsci2-lm 6145/tcp statsci license manager - 2
    statsci2-lm 6145/udp statsci license manager - 2
    # scott blachowicz <scott@statsci.com>
    lonewolf-lm 6146/tcp lone wolf systems license manager
    lonewolf-lm 6146/udp lone wolf systems license manager
    # dan klein <dvk@lonewolf.com>
    montage-lm 6147/tcp montage license manager
    montage-lm 6147/udp montage license manager
    # michael ubell <michael@montage.com>
    xdsxdm 6558/udp
    xdsxdm 6558/tcp
    afs3-fileserver 7000/tcp file server itself
    afs3-fileserver 7000/udp file server itself
    afs3-callback 7001/tcp callbacks to cache managers
    afs3-callback 7001/udp callbacks to cache managers
    afs3-prserver 7002/tcp users & groups database
    afs3-prserver 7002/udp users & groups database
    afs3-vlserver 7003/tcp volume location database
    afs3-vlserver 7003/udp volume location database
    afs3-kaserver 7004/tcp afs/kerberos authentication service
    afs3-kaserver 7004/udp afs/kerberos authentication service
    afs3-volser 7005/tcp volume managment server
    afs3-volser 7005/udp volume managment server
    afs3-errors 7006/tcp error interpretation service
    afs3-errors 7006/udp error interpretation service
    afs3-bos 7007/tcp basic overseer process
    afs3-bos 7007/udp basic overseer process
    afs3-update 7008/tcp server-to-server updater
    afs3-update 7008/udp server-to-server updater
    afs3-rmtsys 7009/tcp remote cache manager service
    afs3-rmtsys 7009/udp remote cache manager service
    ups-onlinet 7010/tcp onlinet uninterruptable power supplies
    ups-onlinet 7010/udp onlinet uninterruptable power supplies
    # brian hammill <hamill@dolphin.exide.com>
    font-service 7100/tcp x font service
    font-service 7100/udp x font service
    # stephen gildea <gildea@expo.lcs.mit.edu>
    fodms 7200/tcp fodms flip
    fodms 7200/udp fodms flip
    # david anthony <anthony@power.amasd.anatcp.rockwell.com>

    reynolds & postel [page 55]

    rfc 1700 assigned numbers october 1994

    man 9535/tcp
    man 9535/udp
    isode-dua 17007/tcp
    isode-dua 17007/udp

    references

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

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

    []

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

    reynolds & postel [page 56]

    rfc 1700 assigned numbers october 1994

    internet multicast addresses

    host extensions for ip multicasting [rfc1112] specifies the
    extensions required of a host implementation of the internet protocol
    (ip) to support multicasting. current addresses are listed below.

    224.0.0.0 base address (reserved) [rfc1112,jbp]
    224.0.0.1 all systems on this subnet [rfc1112,jbp]
    224.0.0.2 all routers on this subnet [jbp]
    224.0.0.3 unassigned [jbp]
    224.0.0.4 dvmrp routers [rfc1075,jbp]
    224.0.0.5 ospfigp ospfigp all routers [rfc1583,jxm1]
    224.0.0.6 ospfigp ospfigp designated routers [rfc1583,jxm1]
    224.0.0.7 st routers [rfc1190,ks14]
    224.0.0.8 st hosts [rfc1190,ks14]
    224.0.0.9 rip2 routers [gsm11]
    224.0.0.10 igrp routers [dino farinacci]
    224.0.0.11 mobile-agents [bill simpson]
    224.0.0.12-224.0.0.255 unassigned [jbp]

    224.0.1.0 vmtp managers group [rfc1045,drc3]
    224.0.1.1 ntp network time protocol [rfc1119,dlm1]
    224.0.1.2 sgi-dogfight [axc]
    224.0.1.3 rwhod [sxd]
    224.0.1.4 vnp [drc3]
    224.0.1.5 artificial horizons - aviator [bxf]
    224.0.1.6 nss - name service server [bxs2]
    224.0.1.7 audionews - audio news multicast [mxf2]
    224.0.1.8 sun nis+ information service [cxm3]
    224.0.1.9 mtp multicast transport protocol [sxa]
    224.0.1.10 ietf-1-low-audio [sc3]
    224.0.1.11 ietf-1-audio [sc3]
    224.0.1.12 ietf-1-video [sc3]
    224.0.1.13 ietf-2-low-audio [sc3]
    224.0.1.14 ietf-2-audio [sc3]
    224.0.1.15 ietf-2-video [sc3]
    224.0.1.16 music-service [guido van rossum]
    224.0.1.17 seanet-telemetry [andrew maffei]
    224.0.1.18 seanet-image [andrew maffei]
    224.0.1.19 mloadd [braden]
    224.0.1.20 any private experiment [jbp]
    224.0.1.21 dvmrp on mospf [john moy]
    224.0.1.22 svrloc <veizades@ftp.com>
    224.0.1.23 xingtv <hgxing@aol.com>
    224.0.1.24 microsoft-ds <arnoldm@microsoft.com>
    224.0.1.25 nbc-pro <bloomer@birch.crd.ge.com>
    224.0.1.26 nbc-pfn <bloomer@birch.crd.ge.com>
    224.0.1.27-224.0.1.255 unassigned [jbp]

    reynolds & postel [page 57]

    rfc 1700 assigned numbers october 1994

    224.0.2.1 "rwho" group (bsd) (unofficial) [jbp]
    224.0.2.2 sun rpc pmapproc_callit [bxe1]

    224.0.3.000-224.0.3.255 rfe generic service [dxs3]
    224.0.4.000-224.0.4.255 rfe individual conferences [dxs3]
    224.0.5.000-224.0.5.127 cdpd groups [bob brenner]
    224.0.5.128-224.0.5.255 unassigned [iana]
    224.0.6.000-224.0.6.127 cornell isis project [tim clark]
    224.0.6.128-224.0.6.255 unassigned [iana]

    224.1.0.0-224.1.255.255 st multicast groups [rfc1190,ks14]
    224.2.0.0-224.2.255.255 multimedia conference calls [sc3]

    224.252.0.0-224.255.255.255 dis transient groups [joel snyder]

    232.0.0.0-232.255.255.255 vmtp transient groups [rfc1045,drc3]

    these addresses are listed in the domain name service under mcast.net
    and 224.in-addr.arpa.

    note that when used on an ethernet or ieee 802 network, the 23
    low-order bits of the ip multicast address are placed in the low-order
    23 bits of the ethernet or ieee 802 net multicast address
    1.0.94.0.0.0. see the next section on "iana ethernet address block".

    references

    [rfc1045] cheriton, d., "vmtp: versatile message transaction
    protocol specification", rfc 1045, stanford university,
    february 1988.

    [rfc1075] waitzman, d., c. partridge, and s. deering "distance vector
    multicast routing protocol", rfc-1075, bbn stc, stanford
    university, november 1988.

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

    [rfc1119] mills, d., "network time protocol (version 1), specification
    and implementation", std 12, rfc 1119, university of
    delaware, july 1988.

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

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

    reynolds & postel [page 58]

    rfc 1700 assigned numbers october 1994

    people

    <arnoldm@microsoft.com>

    [axc] andrew cherenson <arc@sgi.com>

    [bob brenner]

    <bloomer@birch.crd.ge.com>

    [braden] bob braden <braden@isi.edu

    [bxe1] brendan eic <brendan@illyria.wpd.sgi.com>

    [bxf] bruce factor <ahi!bigapple!bruce@uunet.uu.net>

    [bxs2] bill schilit <schilit@parc.xerox.com>

    [cxm3] chuck mcmanis <cmcmanis@sun.com>

    [tim clark]

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

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

    [dxs3] daniel steinber <daniel.steinberg@eng.sun.com>

    [dino farinacci]

    [gsm11] gary s. malkin <gmalkin@xylogics.com>

    <hgxing@aol.com>

    [iana] iana <iana@isi.edu>

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

    [jxm1] jim miner <miner@star.com>

    [ks14] <mystery contact>

    [andrew maffei]

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

    [mxf2] martin forssen <maf@dtek.chalmers.se>

    reynolds & postel [page 59]

    rfc 1700 assigned numbers october 1994

    [guido van rossum]

    [sc3] steve casner <casner@isi.edu>

    [joel snyder]

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

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

    <veizades@ftp.com>

    []

    url = ftp://ftp.isi.edu/…/assignments/multicast-addresses

    reynolds & postel [page 60]

    rfc 1700 assigned numbers october 1994

    sun rpc numbers

    to obtain sun remote procedure call (rpc) numbers send an e-mail
    request to "rpc@sun.com".

    the rpc port management service ('portmap' in sunos versions less than
    5.0 and 'rpcbind' in sunos versions greater than 5.0) "registers" the
    ip port number that is allocated to a particular service when that
    service is created. it does not allocate ports on behalf of those
    services.

    for an exact specification of the semantics refer to the source code
    of svcudp_create() and svctcp_create() in the archives. in short
    however is that these interfaces, and svc_tli_create their transport
    independent rpc equivalent, take either a user specified port number
    or rpc_any (-1) which effectively means "i don't care." in the "i
    don't care" case the create code simply calls socket(2) or t_open(3n)
    which allocates an ip port based on the rules:

    if euid of the requesting process is 0 (i.e., root)
    allocate the next available port number in the
    reserved port range.
    else
    allocate the next available port in the non-reserved
    range.

    port numbers count up sequentially.

    can a port that is "assigned" can be used when the assignee's service
    is not present? say port 501 is assigned to the "jeans" service. on
    a machine that does not have the "jeans" service, nor has any clients
    that might be expecting to use it, is port 501 available for other
    uses? any dynamic allocation process, like the portmapper, that
    chooses the next unused port might allocate port 501 dynamically to a
    process that asked for a "i don't care" port. so any dynamic
    allocation scheme may pick an unused port that happened to correspond
    to a port number that had been "assigned" but was currently unused.

    while it might be desirable, it is impossible to guarantee that any
    unused port, even though officially assigned to a service, is not
    picked by a dynamic allocator since such an assignment might occur
    long after the delivery of the system into a site that doesn't watch
    for the latest list.

    there is the restriction that only "superuser" on bsd derived systems
    such as sunos can bind to a port number that is less than 1024. so
    programs have used this information in the past to identify whether or

    reynolds & postel [page 61]

    rfc 1700 assigned numbers october 1994

    not the service they were talking to was started by the superuser on
    the remote system. making this assumption is dangerous because not
    all system enforce this restriction.

    sun rpc services use ports that are currently unused. if someone
    noted that an rpc service was using port 781, it would be just as
    happy using port 891, or 951. the service doesn't care what port it
    gets, remote clients will query the portmapper to ask it what port
    number was assigned to the service when it was started. the key is
    that the port was not currently in use. the only port that onc/rpc
    must have is 111 its assigned port for the portmap service.

    the most common complaint comes when people put a new service on their
    system. when they configure their systems they put the new service
    configuration commands at the end of their system startup scripts.
    during startup, several network services may be started. those
    services that are onc/rpc based just pick the next available port,
    those that have pre-assigned ports bind to their pre-assigned port.
    clearly the correct sequence is to have all services that need a
    particular port to be started first (or if they are "latent" services
    that are started by inetd, to have inetd started). finally, the rpc
    services should be started as they will be assigned unused ports. (in
    the bsd networking code (which we use) the algorithm for picking
    ports is in the file in_pcb.c, function in_pcbbind().)

    services should be started in this order:

    a) services that will "run" continuously and have an assigned
    port. note that this includes rpcbind (nee portmap) that has
    port 111 assigned to it.

    b) inetd - which will automatically create sockets for those
    services that have reserved ports but only run on demand
    (like finger)

    c) rpc services - which will automatically pick unused ports and
    maximize efficiency of the "ip port" namespace.

    the include file /usr/include/netinet/in.h defines a constant
    ipport_reserved to be 1024. the relevant text is:

    /*
    * ports < ipport_reserved are reserved for
    * privileged processes (e.g. root).
    * ports > ipport_userreserved are reserved
    * for servers, not necessarily privileged.
    */
    #define ipport_reserved 1024

    reynolds & postel [page 62]

    rfc 1700 assigned numbers october 1994

    #define ipport_userreserved 5000

    portmap does not allocate ports, the kernel allocates ports. the code
    that does this is part of nearly every unix system in the world (and
    since the bsd code is 'free' it is often the same code). rpc services
    ask the kernel to allocate them a port by calling the "bind()" system
    call. the parameter they pass is "inaddr_any" which means "allocate
    me any ip port you want". the kernel does that by looking at all of
    the ports that are currently in use and picking one that is not
    currently used. the number picked is either less that 1024 if the
    process is privledged, or greater than 1024 if the process is not
    privledged. after the kernel has allocated a port, the service
    registers this allocation with portmap. the portmapper is merely a
    registry of previously allocated ports. note "allocated" here is
    being used in the sense that they are used by an open socket, not
    assigned a well known name.

    the role of /etc/services is to provide an idea to people who are
    looking at network traffic as to where a packet may have originated
    from or is headed to. for services like finger that have assigned
    ports, they can just hard code the port they want into their
    executable. (it isn't like it will change, and if they read it from
    /etc/services and someone had mistyped the port number it won't
    interoperate with clients anyway!)

    it is not practical to read the /etc/services file into the kernel to
    prevent it from giving out port numbers that are "pre-assigned", nor
    is it generally desirable since with the correct ordering of startup
    it is completely unneccesary.

    editors note: this information was supplied by chuck mcmanis of sun.

    []

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

    reynolds & postel [page 63]

    rfc 1700 assigned numbers october 1994

    ip option numbers

    the internet protocol (ip) has provision for optional header fields
    identified by an option type field. options 0 and 1 are exactly one
    octet which is their type field. all other options have their one
    octet type field, followed by a one octet length field, followed by
    length-2 octets of option data. the option type field is sub-divided
    into a one bit copied flag, a two bit class field, and a five bit
    option number. these taken together form an eight bit value for the
    option type field. ip options are commonly refered to by this value.

    copy class number value name reference
    ---- ----- ------ ----- ------------------------------- ---------
    0 0 0 0 eool - end of options list [rfc791,jbp]
    0 0 1 1 nop - no operation [rfc791,jbp]
    1 0 2 130 sec - security [rfc1108]
    1 0 3 131 lsr - loose source route [rfc791,jbp]
    0 2 4 68 ts - time stamp [rfc791,jbp]
    1 0 5 133 e-sec - extended security [rfc1108]
    1 0 6 134 cipso - commercial security [???]
    0 0 7 7 rr - record route [rfc791,jbp]
    1 0 8 136 sid - stream id [rfc791,jbp]
    1 0 9 137 ssr - strict source route [rfc791,jbp]
    0 0 10 10 zsu - experimental measurement [zsu]
    0 0 11 11 mtup - mtu probe [rfc1191]
    0 0 12 12 mtur - mtu reply [rfc1191]
    1 2 13 205 finn - experimental flow control [finn]
    1 0 14 142 visa - expermental access control [estrin]
    0 0 15 15 encode - ??? [versteeg]
    1 0 16 144 imitd - imi traffic descriptor [lee]
    1 0 17 145 eip - ??? [rfc1358]
    0 2 18 82 tr - traceroute [rfc1393]
    1 0 19 147 addext - address extension [ullmann ipv7]

    ip time to live parameter

    the current recommended default time to live (ttl) for the
    internet protocol (ip) [45,105] is 64.

    ip tos parameters

    this documents the default type-of-service values that are currently
    recommended for the most important internet protocols.

    reynolds & postel [page 64]

    rfc 1700 assigned numbers october 1994

    tos value description reference
    --------- -------------------------- ---------
    0000 default [rfc1349]
    0001 minimize monetary cost [rfc1349]
    0010 maximize reliability [rfc1349]
    0100 maximize throughput [rfc1349]
    1000 minimize delay [rfc1349]
    1111 maximize security [rfc1455]

    the tos value is used to indicate "better". only one tos value or
    property can be requested in any one ip datagram.

    generally, protocols which are involved in direct interaction with a
    human should select low delay, while data transfers which may involve
    large blocks of data are need high throughput. finally, high reliability
    is most important for datagram-based internet management functions.

    application protocols not included in these tables should be able to
    make appropriate choice of low delay (8 decimal, 1000 binary) or high
    throughput (4 decimal, 0100 binary).

    the following are recommended values for tos:

    ----- type-of-service value -----

    protocol tos value

    telnet (1) 1000 (minimize delay)

    ftp
    control 1000 (minimize delay)
    data (2) 0100 (maximize throughput)

    tftp 1000 (minimize delay)

    smtp (3)
    command phase 1000 (minimize delay)
    data phase 0100 (maximize throughput)

    domain name service
    udp query 1000 (minimize delay)
    tcp query 0000
    zone transfer 0100 (maximize throughput)

    nntp 0001 (minimize monetary cost)

    icmp

    reynolds & postel [page 65]

    rfc 1700 assigned numbers october 1994

    errors 0000
    requests 0000 (4)
    responses <same as request> (4)

    any igp 0010 (maximize reliability)

    egp 0000

    snmp 0010 (maximize reliability)

    bootp 0000

    notes:

    (1) includes all interactive user protocols (e.g., rlogin).

    (2) includes all bulk data transfer protocols (e.g., rcp).

    (3) if the implementation does not support changing the tos
    during the lifetime of the connection, then the
    recommended tos on opening the connection is the default
    tos (0000).

    (4) although icmp request messages are normally sent with
    the default tos, there are sometimes good reasons why they
    would be sent with some other tos value. an icmp
    response always uses the same tos value as was used in the
    corresponding icmp request message.

    an application may (at the request of the user) substitute
    0001 (minimize monetary cost) for any of the above values.

    references

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

    [rfc1108] kent, s., "u.s. department of defense security options for
    the internet protocol", rfc 1108, bbn communications,
    november 1991.

    [rfc1191] mogul, j., and s. deering, "path mtu discovery", rfc 1191,
    decwrl, stanford university, november 1990.

    [rfc1349] almquist, p., "type of service in the internet protocol
    suite", rfc 1349, consultant, july 1992.

    reynolds & postel [page 66]

    rfc 1700 assigned numbers october 1994

    [rfc1358] chapin, l., chair, "charter of the internet architecture
    board (iab)", rfc 1358, internet architecture board, august
    1992.

    [rfc1393] malkin, g., "traceroute using an ip option", rfc 1393,
    xylogics, inc., january 1993.

    [rfc1455] eastlake, d., "physical link security type of service",
    rfc 1455, digital equipment corporation, may 1993.

    [ullmann ipv7]

    people

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

    [finn] greg finn <finn@isi.edu>

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

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

    []

    url = ftp://ftp.isi.edu/…s/iana/assignments/ip-parameters

    reynolds & postel [page 67]

    rfc 1700 assigned numbers october 1994

    icmp type numbers

    the internet control message protocol (icmp) has many messages that
    are identified by a "type" field.

    type name reference
    ---- ------------------------- ---------
    0 echo reply [rfc792]
    1 unassigned [jbp]
    2 unassigned [jbp]
    3 destination unreachable [rfc792]
    4 source quench [rfc792]
    5 redirect [rfc792]
    6 alternate host address [jbp]
    7 unassigned [jbp]
    8 echo [rfc792]
    9 router advertisement [rfc1256]
    10 router selection [rfc1256]
    11 time exceeded [rfc792]
    12 parameter problem [rfc792]
    13 timestamp [rfc792]
    14 timestamp reply [rfc792]
    15 information request [rfc792]
    16 information reply [rfc792]
    17 address mask request [rfc950]
    18 address mask reply [rfc950]
    19 reserved (for security) [solo]
    20-29 reserved (for robustness experiment) [zsu]
    30 traceroute [rfc1393]
    31 datagram conversion error [rfc1475]
    32 mobile host redirect [david johnson]
    33 ipv6 where-are-you [bill simpson]
    34 ipv6 i-am-here [bill simpson]
    35 mobile registration request [bill simpson]
    36 mobile registration reply [bill simpson]
    37-255 reserved [jbp]

    many of these icmp types have a "code" field. here we list the types
    again with their assigned code fields.

    type name reference
    ---- ------------------------- ---------
    0 echo reply [rfc792]

    codes
    0 no code

    1 unassigned [jbp]

    reynolds & postel [page 68]

    rfc 1700 assigned numbers october 1994

    2 unassigned [jbp]

    3 destination unreachable [rfc792]

    codes
    0 net unreachable
    1 host unreachable
    2 protocol unreachable
    3 port unreachable
    4 fragmentation needed and don't fragment was set
    5 source route failed
    6 destination network unknown
    7 destination host unknown
    8 source host isolated
    9 communication with destination network is
    administratively prohibited
    10 communication with destination host is
    administratively prohibited
    11 destination network unreachable for type of service
    12 destination host unreachable for type of service

    4 source quench [rfc792]
    codes
    0 no code

    5 redirect [rfc792]

    codes
    0 redirect datagram for the network (or subnet)
    1 redirect datagram for the host
    2 redirect datagram for the type of service and network
    3 redirect datagram for the type of service and host

    6 alternate host address [jbp]

    codes
    0 alternate address for host

    7 unassigned [jbp]

    8 echo [rfc792]

    codes
    0 no code

    9 router advertisement [rfc1256]

    codes

    reynolds & postel [page 69]

    rfc 1700 assigned numbers october 1994

    0 no code

    10 router selection [rfc1256]

    codes
    0 no code

    11 time exceeded [rfc792]

    codes
    0 time to live exceeded in transit
    1 fragment reassembly time exceeded

    12 parameter problem [rfc792]

    codes
    0 pointer indicates the error
    1 missing a required option [rfc1108]
    2 bad length

    13 timestamp [rfc792]

    codes
    0 no code

    14 timestamp reply [rfc792]

    codes
    0 no code

    15 information request [rfc792]

    codes
    0 no code

    16 information reply [rfc792]

    codes
    0 no code

    17 address mask request [rfc950]

    codes
    0 no code

    18 address mask reply [rfc950]

    reynolds & postel [page 70]

    rfc 1700 assigned numbers october 1994

    codes
    0 no code

    19 reserved (for security) [solo]

    20-29 reserved (for robustness experiment) [zsu]

    30 traceroute [rfc1393]

    31 datagram conversion error [rfc1475]

    32 mobile host redirect [david johnson]

    33 ipv6 where-are-you [bill simpson]

    34 ipv6 i-am-here [bill simpson]

    35 mobile registration request [bill simpson]

    36 mobile registration reply [bill simpson]

    references

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

    [rfc950] mogul, j., and j. postel, "internet standard subnetting
    procedure", std 5, rfc 950, stanford, usc/information
    sciences institute, august 1985.

    [rfc1108] kent, s., "u.s. department of defense security options for
    the internet protocol", rfc 1108, november 1991.

    [rfc1256] deering, s., editor, "icmp router discovery messages", rfc
    1256, xerox parc, september 1991.

    [rfc1393] malkin, g., "traceroute using an ip option", rfc 1393,
    xylogics, inc., january 1993.

    [rfc1475] ullmann, r., "tp/ix: the next internet", rfc 1475, process
    software corporation, june 1993.

    people

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

    [david johnson]

    reynolds & postel [page 71]

    rfc 1700 assigned numbers october 1994

    [bill simpson] <bill.simpson@um.cc.umich.edu> september, 1994.

    [solo]

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

    []

    url = ftp://ftp.isi.edu/…iana/assignments/icmp-parameters

    reynolds & postel [page 72]

    rfc 1700 assigned numbers october 1994

    tcp option numbers

    the transmission control protocol (tcp) has provision for optional
    header fields identified by an option kind field. options 0 and 1 are
    exactly one octet which is their kind field. all other options have
    their one octet kind field, followed by a one octet length field,
    followed by length-2 octets of option data.

    kind length meaning reference
    ---- ------ ------------------------------- ---------
    0 - end of option list [rfc793]
    1 - no-operation [rfc793]
    2 4 maximum segment lifetime [rfc793]
    3 3 wsopt - window scale [rfc1323]
    4 2 sack permitted [rfc1072]
    5 n sack [rfc1072]
    6 6 echo (obsoleted by option 8) [rfc1072]
    7 6 echo reply (obsoleted by option 8)[rfc1072]
    8 10 tsopt - time stamp option [rfc1323]
    9 2 partial order connection permitted[rfc1693]
    10 5 partial order service profile [rfc1693]
    11 cc [braden]
    12 cc.new [braden]
    13 cc.echo [braden]
    14 3 tcp alternate checksum request [rfc1146]
    15 n tcp alternate checksum data [rfc1146]
    16 skeeter [knowles]
    17 bubba [knowles]
    18 3 trailer checksum option [subbu & monroe]

    tcp alternate checksum numbers

    number description reference
    ------- ------------------------------- ----------
    0 tcp checksum [rfc-1146]
    1 8-bit fletchers's algorithm [rfc-1146]
    2 16-bit fletchers's algorithm [rfc-1146]
    3 redundant checksum avoidance [kay]

    references

    [kay] kay, j. and pasquale, j., "measurement, analysis, and
    improvement of udp/ip throughput for the decstation 5000,"
    proceedings of the winter 1993 usenix conference, january 1993
    (available for anonymous ftp in

    reynolds & postel [page 73]

    rfc 1700 assigned numbers october 1994

    ucsd.edu:/pub/csl/fastnet/fastnet.tar.z). <jkay@ucsd.edu>

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

    [rfc1323] jacobson, v., braden, r., and d. borman, "tcp extensions for
    high performance", rfc 1323, lbl, isi, cray research, may
    1992.

    [rfc1072] jacobson, v., and r. braden, "tcp extensions for long-delay
    paths", rfc 1072, lbl, isi, october 1988.

    [rfc1693] ?????

    [rfc1146] zweig, j., and c. partridge, "tcp alternate checksum
    options", rfc 1146, uiuc, bbn, march 1990.

    people

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

    [knowles] stev knowles <stev@ftp.com>

    [kay] j. kay <jkay@ucsd.edu>

    [subbu & monroe] <mystery contact>

    []

    url = ftp://ftp.isi.edu/…/iana/assignments/tcp-parameters

    reynolds & postel [page 74]

    rfc 1700 assigned numbers october 1994

    telnet options

    the telnet protocol has a number of options that may be negotiated.
    these options are listed here. "internet official protocol standards"
    (std 1) provides more detailed information.

    options name references
    ------- ----------------------- ----------
    0 binary transmission [rfc856,jbp]
    1 echo [rfc857,jbp]
    2 reconnection [nic50005,jbp]
    3 suppress go ahead [rfc858,jbp]
    4 approx message size negotiation [ethernet,jbp]
    5 status [rfc859,jbp]
    6 timing mark [rfc860,jbp]
    7 remote controlled trans and echo [rfc726,jbp]
    8 output line width [nic50005,jbp]
    9 output page size [nic50005,jbp]
    10 output carriage-return disposition [rfc652,jbp]
    11 output horizontal tab stops [rfc653,jbp]
    12 output horizontal tab disposition [rfc654,jbp]
    13 output formfeed disposition [rfc655,jbp]
    14 output vertical tabstops [rfc656,jbp]
    15 output vertical tab disposition [rfc657,jbp]
    16 output linefeed disposition [rfc657,jbp]
    17 extended ascii [rfc698,jbp]
    18 logout [rfc727,mrc]
    19 byte macro [rfc735,jbp]
    20 data entry terminal [rfc1043,rfc732,jbp]
    22 supdup [rfc736,rfc734,mrc]
    22 supdup output [rfc749,mrc]
    23 send location [rfc779,eak1]
    24 terminal type [rfc1091,ms56]
    25 end of record [rfc885,jbp]
    26 tacacs user identification [rfc927,ba4]
    27 output marking [rfc933,sxs]
    28 terminal location number [rfc946,rn6]
    29 telnet 3270 regime [rfc1041,jxr]
    30 x.3 pad [rfc1053,sl70]
    31 negotiate about window size [rfc1073,dw183]
    32 terminal speed [rfc1079,clh3]
    33 remote flow control [rfc1372,clh3]
    34 linemode [rfc1184,db14]
    35 x display location [rfc1096,gm23]
    36 environment option [rfc1408,db14]
    37 authentication option [rfc1409,db14]
    38 encryption option [db14]
    39 new environment option [rfc1572,db14]

    reynolds & postel [page 75]

    rfc 1700 assigned numbers october 1994

    40 tn3270e [rfc1647]
    255 extended-options-list [rfc861,jbp]

    telnet authentication types

    in [rfc1409], a list of authentication types is introduced. additions
    to the list are registerd by the iana and documented here.

    type description reference
    0 null [rfc1409]
    1 kerberos_v4 [rfc1409]
    2 kerberos_v5 [rfc1409]
    3 spx [rfc1409]
    4-5 unassigned
    6 rsa [rfc1409]
    7-9 unassigned
    10 loki [rfc1409]
    11 ssa [schoch]

    references

    [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.

    [nic50005] ddn protocol handbook, "telnet reconnection option",
    "telnet output line width option", "telnet output page size
    option", nic 50005, december 1985.

    [rfc652] crocker, d., "telnet output carriage-return disposition
    option", rfc 652, ucla-nmc, october 1974.

    [rfc653] crocker, d., "telnet output horizontal tabstops option",
    rfc 653, ucla-nmc, october 1974.

    [rfc654] crocker, d., "telnet output horizontal tab disposition
    option", rfc 654, ucla-nmc, october 1974.

    [rfc655] crocker, d., "telnet output formfeed disposition option",
    rfc 655, ucla-nmc, october 1974.

    reynolds & postel [page 76]

    rfc 1700 assigned numbers october 1994

    [rfc656] crocker, d., "telnet output vertical tabstops option",
    rfc 656, ucla-nmc, october 1974.

    [rfc657] crocker, d., "telnet output vertical tab disposition option",
    rfc 657, ucla-nmc, october 1974.

    [rfc658] crocker, d., "telnet output linefeed disposition", rfc 658,
    ucla-nmc, october 1974.

    [rfc698] tovar, "telnet extended ascii option", rfc 698, stanford
    university-ai, july 1975.

    [rfc726] postel, j. and d. crocker, "remote controlled transmission
    and echoing telnet option", rfc 726, sri-arc, uc irvine,
    march 1977.

    [rfc727] crispin, m., "telnet logout option", rfc 727, stanford
    university-ai, april 1977.

    [rfc734] crispin, m., "supdup protocol", rfc 734, stanford,
    october 1977.

    [rfc735] crocker, d. and r. gumpertz, "revised telnet byte marco
    option", rfc 735, rand, cmu, november 1977.

    [rfc736] crispin, m., "telnet supdup option", stanford university-ai,
    rfc 736, stanford, october 1977.

    [rfc749] greenberg, b., "telnet supdup-output option", rfc 749,
    mit-multics, september 1978.

    [rfc779] killian, e., "telnet send-location option", rfc 779,
    lll, april 1981.

    [rfc856] postel, j. and j. reynolds, "telnet binary transmission",
    std 27, rfc 856, usc/information sciences institute, may
    1983.

    [rfc857] postel, j. and j. reynolds, "telnet echo option", std 28, rfc
    857, usc/information sciences institute, may 1983.

    [rfc858] postel, j. and j. reynolds, "telnet suppress go ahead
    option", std 29, rfc 858, usc/information sciences institute,
    may 1983.

    [rfc859] postel, j. and j. reynolds, "telnet status option", std 30,
    rfc 859, usc/information sciences institute, may 1983.

    reynolds & postel [page 77]

    rfc 1700 assigned numbers october 1994

    [rfc860] postel, j. and j. reynolds, "telnet timing mark option",
    std 31, rfc 860, usc/information sciences institute, may
    1983.

    [rfc861] postel, j. and j. reynolds, "telnet extended options - list
    option", std 32, rfc 861, usc/information sciences institute,
    may 1983.

    [rfc885] postel, j., "telnet end of record option", rfc 885,
    usc/information sciences institute, december 1983.

    [rfc927] anderson, b., "tacacs user identification telnet option",
    rfc 927, bbn, december 1984.

    [rfc933] silverman, s., "output marking telnet option", rfc 933,
    mitre, january 1985.

    [rfc946] nedved, r., "telnet terminal location number option",
    rfc 946, carnegie-mellon university, may 1985.

    [rdc1041] rekhter, j., "telnet 3270 regime option", rfc 1041,
    ibm, january 1988.

    [rfc1043] yasuda, a., and t. thompson, "telnet data entry terminal
    option dodiis implementation", rfc 1043, dia, february 1988.

    [rfc1053] levy, s., and t. jacobson, "telnet x.3 pad option",
    rfc 1053, minnesota supercomputer center, april 1988.

    [rfc1073] waitzman, d., "telnet window size option", rfc 1073,
    bbn stc, october, 1988.

    [rfc1079] hedrick, c., "telnet terminal speed option", rfc 1079,
    rutgers university, december 1988.

    [rfc1091] vanbokkelen, j., "telnet terminal type option",
    rfc 1091, ftp software, inc., february 1989.

    [rfc1096] marcy, g., "telnet x display location option", rfc 1096,
    carnegie mellon university, march 1989.

    [rfc1184] borman, d., editor, "telnet linemode option",
    rfc 1184, cray research, inc., october 1990.

    [rfc1372] hedrick, c., and d. borman, "telnet remote flow control
    option", rfc 1372, rutgers university, cray research, inc.,
    october 1992.

    reynolds & postel [page 78]

    rfc 1700 assigned numbers october 1994

    [rfc1408] borman, d., editor, "telnet environment option", rfc 1408,
    cray research, inc., january 1993.

    [rfc1409] borman, d., editor, "telnet authentication option", rfc
    1409, cray research, inc., january 1993.

    [rfc1572] alexander, s., editor, "telnet environment option", rfc1572,
    lachman technology, inc., january 1994.

    [rfc1647] kelly, b., "tn3270 enhancements", rfc1647, auburn
    university, july 1994.

    people

    [ba4] brian anderson <baanders@ccq.bbn.co>

    [clh3] charles hedrick <hedrick@aramis.rutgers.edu>

    [db14] dave borman <dab@cray.com>

    [dw183] david waitzman <dwaitzman@bbn.com>

    [eak4] earl kill <eak@mordor.s1.gov>

    [gm23] glenn marcy <glenn.marcy@a.cs.cmu.edu>

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

    [mrc] mark crispin <mrc@wsmr-simtel20.army.mil>

    [ms56] marvin solomon <solomon@cs.wisc.edu>

    [rn6] rudy nedved <rudy.nedved@cmu-cs-a.>

    [schoch] steven schoch <schoch@sheba.arc.nasa.gov>

    [sl70] stuart levy <slevy@uc.msc.umn.edu>

    [sxs] steve silverman <blankert@mitre-gateway.org>

    [yxr] yakov rekhter <yakov@ibm.com>

    []

    url = ftp://ftp.isi.edu/…/iana/assignments/telnet-options

    reynolds & postel [page 79]

    rfc 1700 assigned numbers october 1994

    domain name system parameters

    the internet domain naming system (domain) includes several
    parameters. these are documented in [rfc1034] and [rfc1035]. the
    class parameter is listed here. the per class parameters are defined
    in separate rfcs as indicated.

    domain system parameters:

    decimal name references
    -------- ---- ----------
    0 reserved [pm1]
    1 internet (in) [rfc1034,pm1]
    2 unassigned [pm1]
    3 chaos (ch) [pm1]
    4 hessoid (hs) [pm1]
    5-65534 unassigned [pm1]
    65535 reserved [pm1]

    in the internet (in) class the following types and qtypes are defined:

    type value and meaning

    a 1 a host address [rfc1035]
    ns 2 an authoritative name server [rfc1035]
    md 3 a mail destination (obsolete - use mx) [rfc1035]
    mf 4 a mail forwarder (obsolete - use mx) [rfc1035]
    cname 5 the canonical name for an alias [rfc1035]
    soa 6 marks the start of a zone of authority [rfc1035]
    mb 7 a mailbox domain name (experimental) [rfc1035]
    mg 8 a mail group member (experimental) [rfc1035]
    mr 9 a mail rename domain name (experimental)[rfc1035]
    null 10 a null rr (experimental) [rfc1035]
    wks 11 a well known service description [rfc1035]
    ptr 12 a domain name pointer [rfc1035]
    hinfo 13 host information [rfc1035]
    minfo 14 mailbox or mail list information [rfc1035]
    mx 15 mail exchange [rfc1035]
    txt 16 text strings [rfc1035]

    rp 17 for responsible person [rfc1183]
    afsdb 18 for afs data base location [rfc1183]
    x25 19 for x.25 psdn address [rfc1183]
    isdn 20 for isdn address [rfc1183]
    rt 21 for route through [rfc1183]

    nsap 22 for nsap address, nsap style a record [rfc1348]
    nsap-ptr 23 for domain name pointer, nsap style [rfc1348]

    reynolds & postel [page 80]

    rfc 1700 assigned numbers october 1994

    sig 24 for security signature [donald eastlake]
    key 25 for security key [donald eastlake]

    px 26 x.400 mail mapping information [rfc1664]

    gpos 27 geographical position [craig farrell]

    aaaa 28 ip6 address [susan thomson]

    axfr 252 transfer of an entire zone [rfc1035]
    mailb 253 mailbox-related rrs (mb, mg or mr) [rfc1035]
    maila 254 mail agent rrs (obsolete - see mx) [rfc1035]
    * 255 a request for all records [rfc1035]

    references

    [rfc1034] mockapetris, p., "domain names - concepts and
    facilities", std 13, rfc 1034, usc/information sciences
    institute, november 1987.

    [rfc1035] mockapetris, p., "domain names - implementation and
    specification", std 13, rfc 1035, usc/information sciences
    institute, november 1987.

    [rfc1183] everhart, c., mamakos, l., ullmann, r., and p. mockapetris,
    editors, "new dns rr definitions", rfc 1183, transarc,
    university of maryland, prime computer, usc/information
    sciences institute, october 1990.

    [rfc1348] manning, b., "dns nsap rrs", rfc 1348, rice university,
    july 1992.

    [rfc1664] allocchio, c., bonito, a., cole, b., giordano, s., and r.
    hagens, "using the internet dns to distribute rfc1327 mail
    address mapping tables", garr-italy, cisco systems inc.,
    centro svizzero calcolo scientifico, advanced network &
    services, august 1994.

    people

    [susan thomson] susan thomson <set@swift.bellcore.com>

    [pm1] paul mockapetris <pvm@isi.edu>

    [donald eastlake] donald e. eastlake, iii <dee@ranger.enet.dec.com>
  • reynolds & postel [page 81]

    rfc 1700 assigned numbers october 1994

    [craig farrell]

    []

    url = ftp://ftp.isi.edu/…/iana/assignments/dns-parameters

    reynolds & postel [page 82]

    rfc 1700 assigned numbers october 1994

    mail encoding header field keywords

    [rfc1505] specifies an initial list of keywords for the experimental
    encoding header field (ehf-mail), and provides that additional
    keywords may be registered with the iana.

    keyword description reference
    _______ ___________ ____________

    edifact edifact format [rfc1505]
    edi-x12 edi x12 format [ansi-x12]
    evfu fortran format [rfc1505]
    fs file system format [rfc1505]
    hex hex binary format [rfc1505]
    lzju90 lzju90 format [rfc1505]
    lzw lzw format [rfc1505]
    message encapsulated message [rfc822]
    pem, pem-clear privacy enhanced mail [rfc1421]
    pgp pretty good privacy [rfc1505]
    postscript postscript format [postscript]
    shar shell archive format [rfc1505]
    signature signature [rfc1505]
    tar tar format [rfc1505]
    text text [is-10646]
    uuencode uuencode format [rfc1505]
    url external url-reference [rfc1505]

    mail encryption types

    [rfc822] specifies that encryption types for mail may be assigned.
    there are currently no rfc 822 encryption types assigned. please use
    instead the mail privacy procedures defined in [rfc1421, rfc1422,
    rfc1423].

    esmtp mail keywords

    [rfc1651] specifies that extension to smtp can be identified with
    keywords.

    keywords description reference

    reynolds & postel [page 83]

    rfc 1700 assigned numbers october 1994

    ------------ -------------------------------- ---------
    send send as mail [rfc821]
    soml send as mail or terminal [rfc821]
    saml send as mail and terminal [rfc821]
    expn expand the mailing list [rfc821]
    help supply helpful information [rfc821]
    turn turn the operation around [rfc821]
    8bitmime use 8-bit data [rfc1652]
    size message size declaration [rfc1653]
    verb verbose [eric allman]
    onex one message transaction only [eric allman]

    mail extension types

    the simple mail transfer protocol [rfc821] specifies a set of
    commands or services for mail transfer. a general procedure for
    extending the set of services is defined in [rfc1651]. the set of
    service extensions is listed here.

    service ext ehlo keyword parameters verb reference
    ----------- ------------ ---------- ---------- ---------
    send send none send [rfc821]
    send or mail soml none soml [rfc821]
    send and mail saml none saml [rfc821]
    expand expn none expn [rfc821]
    help help none help [rfc821]
    turn turn none turn [rfc821]
    8 bit mime 8bitmime none none [rfc1652]
    size size number none [rfc1653]

    mail system names

    in some places, an identification of other mail systems is used.

    one of these is in "the cosine and internet x.500 schema" (section
    9.3.18) [rfc1274]. the mail system names listed here are used as the
    legal values in that schema under the "othermailbox" attribute
    "mailboxtype" type (which must be a printablestring).

    another place is in "mapping between x.400(1988) / iso 10021 and rfc
    822" (section 4.2.2) [rfc1327]. the names listed here are used as

    reynolds & postel [page 84]

    rfc 1700 assigned numbers october 1994

    the legal values in that schema under the "std-or-address" attribute
    "registered-dd-type" type (which must be a "key-string").

    note that key-string = <a-z, a-z, 0-9, and "-" >.

    mail system name description reference
    ---------------- ------------------------------- ---------
    mcimail mci mail

    mail transmission types

    the simple mail transfer protocol [rfc821] and the standard for the
    format of arpa internet text messages [rfc822] specify that a set of
    "received" lines will be prepended to the headers of electronic mail
    messages as they are transported through the internet. these received
    line may optionally include either or both a "via" phrase and/or a
    "with" phrase. the legal values for the phrases are listed here. the
    via phrase is intended to indicate the link or physical medium over
    which the message was transferred. the with phrase is intended to
    indicate the protocol or logical process that was used to transfer the
    message.

    via link types description reference
    -------------- ---------------------------- ---------
    uucp unix-to-unix copy program [???]

    with protocol types description reference
    ------------------- ---------------------------- ---------
    smtp simple mail transfer protocol [rfc821]
    esmtp smtp with service extensions [rfc1651]

    references

    [ansi-x12]

    [postscript] adobe systems inc., "postscript langpuage reference
    manual", 2nd edition, 2nd printing, january 1991.

    [is-10646]

    reynolds & postel [page 85]

    rfc 1700 assigned numbers october 1994

    [rfc821] postel, j., "simple mail transfer protocol", std 10, rfc 821,
    usc/information sciences institute, august 1982.

    [rfc822] crocker, d., "standard for the format of arpa-internet text
    messages", std 11, rfc 822, udel, august 1982.

    [rfc1274] barker, p., and s. kille, "the cosine and internet x.500
    schema", rfc 1274, university college london, november 1991.

    [rfc1327] hardcastle-kille, s., "mapping between x.400(1988) / iso
    10021 and rfc 822", rfc 1327, university college london,
    may 1992.

    [rfc1421] linn, j., "privacy enhancement for internet electronic
    mail: part i: message encipherment and authentication
    procedures", rfc 1421, iab irtf psrg, ietf pem wg,
    february 1993.

    [rfc1422] kent, s., "privacy enhancement for internet
    electronic mail: part ii -- certificate-based key
    management", bbn, iab irtf psrg, ietf pem, february 1993.

    [rfc1423] balenson, d., "privacy enhancement for internet electronic
    mail: part iii -- algorithms, modes, and identifiers",
    rfc 1423, tis, iab irtf psrg, ietf pem wg, february 1993.

    [rfc1505] costanzo, a., robinson, d., and r. ullmann, "encoding header
    field for internet messages", rfc 1505, akc consulting,
    computervision corporation, august 1993.

    [rfc1651] klensin, j., freed, n., rose, m., stefferud, e., and d.
    crocker, "smtp service extensions", rfc 1651, mci, innosoft,
    dover beach consulting, inc., network management associates,
    inc., silicon graphics, inc., july 1994.

    [rfc1652] klensin, j., freed, n., rose, m., stefferud, e., and d.
    crocker, "smtp service extension for 8bit-mimetransport",
    rfc 1652, mci, innosoft, dover beach consulting, inc.,
    network management associates, inc., silicon graphics, inc.,
    july 1994.

    [rfc1653] klensin, j., freed, n., and k. moore, "smtp service
    extension for message size declaration", rfc 1653,
    mci, innosoft, university of tennessee, july 1994.

    people

    reynolds & postel [page 86]

    rfc 1700 assigned numbers october 1994

    [eric allman]

    []

    url = ftp://ftp.isi.edu/…iana/assignments/mail-parameters

    reynolds & postel [page 87]

    rfc 1700 assigned numbers october 1994

    bootp and dhcp parameters

    the bootstrap protocol (bootp) [rfc951] describes an ip/udp
    bootstrap protocol (bootp) which allows a diskless client machine to
    discover its own ip address, the address of a server host, and the
    name of a file to be loaded into memory and executed. the dynamic
    host configuration protocol (dhcp) [rfc1531] provides a framework for
    automatic configuration of ip hosts. the "dhcp options and bootp
    vendor information extensions" [rfc1533] describes the additions to the
    bootstrap protocol (bootp) which can also be used as options with the
    dynamic host configuration protocol (dhcp).

    bootp vendor extensions and dhcp options are listed below:

    tag name data length meaning
    --- ---- ----------- -------
    0 pad 0 none
    1 subnet mask 4 subnet mask value
    2 time offset 4 time offset in
    seconds from utc
    3 gateways n n/4 gateway addresses
    4 time server n n/4 timeserver addresses
    5 name server n n/4 ien-116 server addresses
    6 domain server n n/4 dns server addresses
    7 log server n n/4 logging server addresses
    8 quotes server n n/4 quotes server addresses
    9 lpr server n n/4 printer server addresses
    10 impress server n n/4 impress server addresses
    11 rlp server n n/4 rlp server addresses
    12 hostname n hostname string
    13 boot file size 2 size of boot file in 512 byte
    chunks
    14 merit dump file client to dump and name
    the file to dump it to
    15 domain name n the dns domain name of the
    client
    16 swap server n swap server addeess
    17 root path n path name for root disk
    18 extension file n path name for more bootp info

    19 forward on/off 1 enable/disable ip forwarding
    20 srcrte on/off 1 enable/disable source routing
    21 policy filter n routing policy filters
    22 max dg assembly 2 max datagram reassembly size
    23 default ip ttl 1 default ip time to live
    24 mtu timeout 4 path mtu aging timeout
    25 mtu plateau n path mtu plateau table

    reynolds & postel [page 88]

    rfc 1700 assigned numbers october 1994

    26 mtu interface 2 interface mtu size
    27 mtu subnet 1 all subnets are local
    28 broadcast address 4 broadcast address
    29 mask discovery 1 perform mask discovery
    30 mask supplier 1 provide mask to others
    31 router discovery 1 perform router discovery
    32 router request 4 router solicitation address
    33 static route n static routing table
    34 trailers 1 trailer encapsulation
    35 arp timeout 4 arp cache timeout
    36 ethernet 1 ethernet encapsulation
    37 default tcp ttl 1 default tcp time to live
    38 keepalive time 4 tcp keepalive interval
    39 keepalive data 1 tcp keepalive garbage
    40 nis domain n nis domain name
    41 nis servers n nis server addresses
    42 ntp servers n ntp server addresses
    43 vendor specific n vendor specific information
    44 netbios name srv n netbios name servers
    45 netbios dist srv n netbios datagram distribution
    46 netbios note type 1 netbios note type
    47 netbios scope n netbios scope
    48 x window font n x window font server
    49 x window manmager n x window display manager
    50 address request 4 requested ip address
    51 address time 4 ip address lease time
    52 overload 1 overloaf "sname" or "file"
    53 dhcp msg type 1 dhcp message type
    54 dhcp server id 4 dhcp server identification
    55 parameter list n parameter request list
    56 dhcp message n dhcp error message
    57 dhcp max msg size 2 dhcp maximum message size
    58 renewal time 4 dhcp renewal (t1) time
    59 rebinding time 4 dhcp rebinding (t2) time
    60 class id n class identifier
    61 client id n client identifier
    62 netware/ip domain n netware/ip domain name
    63 netware/ip option n netware/ip sub options

    64-127 unassigned
    128-154 reserved

    255 end 0 none

    references

    reynolds & postel [page 89]

    rfc 1700 assigned numbers october 1994

    [rfc951] croft, b., and j. gilmore, "bootstrap protocol (bootp)",
    rfc-951, stanford and sun microsytems, september 1985.

    [rfc1531] droms, r., "dynamic host configuration protocol", bucknell
    university, october 1993.

    [rfc1533] alexander, s., and r. droms, "dhcp options and bootp vendor
    extensions", lachman technology, inc., bucknell university,
    october 1993.

    []

    url = ftp://ftp.isi.edu/…iana/assignments/bootp-and-dhcp-
    parameters

    reynolds & postel [page 90]

    rfc 1700 assigned numbers october 1994

    address family numbers

    several protocols deal with multiple address families. the 16-bit
    assignments are listed here.

    number description reference
    ------ ---------------------------------------------------- ---------
    0 reserved
    1 ip (ip version 4)
    2 ip6 (ip version 6)
    3 nsap
    4 hdlc (8-bit multidrop)
    5 bbn 1822
    6 802 (includes all 802 media plus ethernet "canonical format")
    7 e.163
    8 e.164 (smds, frame relay, atm)
    9 f.69 (telex)
    10 x.121 (x.25, frame relay)
    11 ipx
    12 appletalk
    13 decnet iv
    14 banyan vines
    65535 reserved

    []

    url = ftp://ftp.isi.edu/…signments/address-family-numbers

    reynolds & postel [page 91]

    rfc 1700 assigned numbers october 1994

    foobar af numbers

    in the ftp operation over big address records (foobar) protocol
    [rfc1639] there is a field, called "address family" or "af", to
    identify the lower level protocol addresses in use. this is an 8 bit
    field. the first 16 assignments (0-15) of the af value are exactly
    the same as the ip version number. the assignment for values 16-255
    are listed here.

    assigned foobar address families

    decimal keyword address family references
    ------- ------- -------------- ----------
    16 ipx novell ipx
    17-254 unassigned
    255 reserved

    references

    [rfc1639] piscitello, d., "ftp operation over big address records
    (foobar)", core competence, inc., june 1994.

    []

    url = ftp://ftp.isi.edu/…na/assignments/foobar-af-numbers

    reynolds & postel [page 92]

    rfc 1700 assigned numbers october 1994

    directory system names

    in the representation of distinquished names (and possibly other
    contexts) of the x.500 directory system, several unique keywords may
    be necessary. for example, in the string representation of
    distinguished names [rfc1485].

    keyword attribute (x.520 keys)
    ------- ---------------------------------
    cn commonname
    l localityname
    st stateorprovincename
    o organizationname
    ou organizationalunitname
    c countryname

    references

    [rfc1485] hardcastle-kille, s., "a string representation of
    distinguished names (osi-ds 23 (v5))", rfc1485, isode
    consortium, july 1993.

    []

    url = ftp://ftp.isi.edu/…signments/directory-system-names

    reynolds & postel [page 93]

    rfc 1700 assigned numbers october 1994

    publisher identification code

    the rfc "a format for e-mailing bibliographic records" [rfc1357]
    establishs a "publisher-id" code. the iana registry of these codes is
    listed here.

    code publisher reference
    ------ ------------------------------------------------------- ---------
    dummy for testing only [rfc1357]
    test for testing only [rfc1357]
    isi information sciences institute [jbp]
    of the university of southern california
    umcs university of manchester computer science department [txc]

    references

    [rfc1357] cohen, d., editor, "a format for e-mailing bibliographic
    records", rfc 1357, usc/information sciences institute,
    july 1992.

    people

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

    [txc] tim clement <timc@cs.man.ac.uk>

    []

    url = ftp://ftp.isi.edu/…es/iana/assignments/publisher-id

    reynolds & postel [page 94]

    rfc 1700 assigned numbers october 1994

    ospf authentication codes

    the open shotrest path first (ospf) protocols has a provision for
    authentication, and the type of authentication can me indicated by a
    code number. the following are the registered authentication codes.

    code authentication method reference
    ---- --------------------- ---------
    0 no authentication [rfc1583]
    1 simple password authentication [rfc1583]
    2-65535 reserved

    references

    [rfc1583] moy, j., "ospf version 2", rfc 1583, proteon, inc., march
    1994.

    [rfc1584] moy, j., "multicast extensions to ospf", rfc 1584, proteon,
    inc., march 1994.

    [rfc1585] moy, j., "mospf: analysis and experience", rfc 1585,
    proteon, inc., march 1994.

    [rfc1586] desouza, o., and m. rodrigues, "guidelines for running ospf
    over frame relay networks", rfc 1586, at&t bell
    laboratories, march 1994.

    [rfc1587] coltun, r., and v. fuller, "the ospf nssa option", rfc 1587,
    rainbowbridge communications, barrnet, march 1994.

    []

    url = ftp://ftp.isi.edu/…assignments/ospf-authentication-
    codes

    reynolds & postel [page 95]

    rfc 1700 assigned numbers october 1994

    media types

    [rfc1521] specifies that content types, content subtypes, character
    sets, access types, and conversion values for mime mail will be
    assigned and listed by the iana.

    content types and subtypes
    --------------------------

    type subtype description reference
    ---- ------- ----------- ---------
    text plain [rfc1521,nsb]
    richtext [rfc1521,nsb]
    tab-separated-values [paul lindner]

    multipart mixed [rfc1521,nsb]
    alternative [rfc1521,nsb]
    digest [rfc1521,nsb]
    parallel [rfc1521,nsb]
    appledouble [macmime,patrik faltstrom]
    header-set [dave crocker]

    message rfc822 [rfc1521,nsb]
    partial [rfc1521,nsb]
    external-body [rfc1521,nsb]
    news [rfc 1036, henry spencer]

    application octet-stream [rfc1521,nsb]
    postscript [rfc1521,nsb]
    oda [rfc1521,nsb]
    atomicmail [atomicmail,nsb]
    andrew-inset [andrew-inset,nsb]
    slate [slate,terry crowley]
    wita [wang info transfer,larry campbell]
    dec-dx [digital doc trans, larry campbell]
    dca-rft [ibm doc content arch, larry campbell]
    activemessage [ehud shapiro]
    rtf [paul lindner]
    applefile [macmime,patrik faltstrom]
    mac-binhex40 [macmime,patrik faltstrom]
    news-message-id [rfc1036, henry spencer]
    news-transmission [rfc1036, henry spencer]
    wordperfect5.1 [paul lindner]
    pdf [paul lindner]
    zip [paul lindner]
    macwriteii [paul lindner]

    reynolds & postel [page 96]

    rfc 1700 assigned numbers october 1994

    msword [paul lindner]
    remote-printing [rfc1486,mtr]

    image jpeg [rfc1521,nsb]
    gif [rfc1521,nsb]
    ief image exchange format [rfc1314]
    tiff tag image file format [mtr]

    audio basic [rfc1521,nsb]

    video mpeg [rfc1521,nsb]
    quicktime [paul lindner]

    the "media-types" directory contains a subdirectory for each content
    type and each of those directories contains a file for each content
    subtype.

    |-application-
    |-audio-------
    |-image-------
    |-media-types-|-message-----
    |-multipart---
    |-text--------
    |-video-------

    url = ftp://ftp.isi.edu/…tes/iana/assignments/media-types

    character sets
    --------------

    all of the character sets listed the section on character sets are
    registered for use with mime as mime character sets. the
    correspondance between the few character sets listed in the mime
    specification [rfc1521] and the list in that section are:

    type description reference
    ---- ----------- ---------
    us-ascii see ansi_x3.4-1968 below [rfc1521,nsb]
    iso-8859-1 see iso_8859-1:1987 below [rfc1521,nsb]
    iso-8859-2 see iso_8859-2:1987 below [rfc1521,nsb]
    iso-8859-3 see iso_8859-3:1988 below [rfc1521,nsb]
    iso-8859-4 see iso_8859-4:1988 below [rfc1521,nsb]
    iso-8859-5 see iso_8859-5:1988 below [rfc1521,nsb]
    iso-8859-6 see iso_8859-6:1987 below [rfc1521,nsb]
    iso-8859-7 see iso_8859-7:1987 below [rfc1521,nsb]
    iso-8859-8 see iso_8859-8:1988 below [rfc1521,nsb]
    iso-8859-9 see iso_8859-9:1989 below [rfc1521,nsb]

    reynolds & postel [page 97]

    rfc 1700 assigned numbers october 1994

    access types
    ------------

    type description reference
    ---- ----------- ---------
    ftp [rfc1521,nsb]
    anon-ftp [rfc1521,nsb]
    tftp [rfc1521,nsb]
    afs [rfc1521,nsb]
    local-file [rfc1521,nsb]
    mail-server [rfc1521,nsb]

    conversion values
    -----------------

    conversion values or content transfer encodings.

    type description reference
    ---- ----------- ---------
    7bit [rfc1521,nsb]
    8bit [rfc1521,nsb]
    base64 [rfc1521,nsb]
    binary [rfc1521,nsb]
    quoted-printable [rfc1521,nsb]

    mime / x.400 mapping tables

    mime to x.400 table

    mime content-type x.400 body part reference
    ----------------- ------------------ ---------
    text/plain
    charset=us-ascii ia5-text [rfc1494]
    charset=iso-8859-x ebp - generaltext [rfc1494]
    text/richtext no mapping defined [rfc1494]
    application/oda ebp - oda [rfc1494]
    application/octet-stream bilaterally-defined [rfc1494]
    application/postscript ebp - mime-postscript-body [rfc1494]
    image/g3fax g3-facsimile [rfc1494]
    image/jpeg ebp - mime-jpeg-body [rfc1494]
    image/gif ebp - mime-gif-body [rfc1494]
    audio/basic no mapping defined [rfc1494]
    video/mpeg no mapping defined [rfc1494]

    abbreviation: ebp - extended body part

    reynolds & postel [page 98]

    rfc 1700 assigned numbers october 1994

    x.400 to mime table

    basic body parts

    x.400 basic body part mime content-type reference
    --------------------- -------------------- ---------
    ia5-text text/plain;charset=us-ascii [rfc1494]
    voice no mapping defined [rfc1494]
    g3-facsimile image/g3fax [rfc1494]
    g4-class1 no mapping defined [rfc1494]
    teletex no mapping defined [rfc1494]
    videotex no mapping defined [rfc1494]
    encrypted no mapping defined [rfc1494]
    bilaterally-defined application/octet-stream [rfc1494]
    nationally-defined no mapping defined [rfc1494]
    externally-defined see extended body parts [rfc1494]

    x.400 extended body part mime content-type reference
    ------------------------- -------------------- ---------
    generaltext text/plain;charset=iso-8859-x[rfc1494]
    oda application/oda [rfc1494]
    mime-postscript-body application/postscript [rfc1494]
    mime-jpeg-body image/jpeg [rfc1494]
    mime-gif-body image/gif [rfc1494]

    references

    [macmime] work in progress.

    [rfc1036] horton, m., and r. adams, "standard for interchange of
    usenet messages", rfc 1036, at&t bell laboratories,
    center for seismic studies, december 1987.

    [rfc1494] alvestrand, h., and s. thompson, "equivalences between 1988
    x.400 and rfc-822 message bodies", rfc 1494, sintef delab,
    soft*switch, inc., august 1993.

    [rfc1521] borenstien, n., and n. freed, "mime (multipurpose internet
    mail extensions) part one: mechanisms for specifying and
    describing the format of internet message bodies", rfc 1521,
    bellcore, innosoft, september 1993.

    people

    [larry campbell]

    [dave crocker] dave crocker <dcrocker@mordor.stanford.edu>

    reynolds & postel [page 99]

    rfc 1700 assigned numbers october 1994

    [terry crowley]

    [nsb] nathaniel borenstein <nsb@bellcore.com>

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

    [paul lindner]

    [pxf] patrik faltstrom <paf@nada.kth.se>

    [ehud shapiro]

    [henry spencer]

    []

    url = ftp://ftp.isi.edu/…a/assignments/media-types/media-
    types

    reynolds & postel [page 100]

    rfc 1700 assigned numbers october 1994

    character sets

    these are the official names for character sets that may be used in
    the internet and may be referred to in internet documentation. these
    names are expressed in ansi_x3.4-1968 which is commonly called
    us-ascii or simply ascii. the character set most commonly use in the
    internet and used especially in protocol standards is us-ascii, this
    is strongly encouraged. the use of the name us-ascii is also
    encouraged.

    the character set names may be up to 40 characters taken from the
    printable characters of us-ascii. however, no distinction is made
    between use of upper and lower case letters.

    character set reference
    ------------- ---------

    name: ansi_x3.4-1968 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-6
    alias: ansi_x3.4-1986
    alias: iso_646.irv:1991
    alias: ascii
    alias: iso646-us
    alias: us-ascii
    alias: us
    alias: ibm367
    alias: cp367

    name: iso-10646-ucs-2
    source: the 2-octet basic multilingual plane, aka unicode
    this needs to specify network byte order: the standard
    does not specify (it is a 16-bit integer space)

    name: iso-10646-ucs-4
    source: the full code space. (same comment about byte order,
    these are 31-bit numbers.

    name: iso-10646-utf-1
    source: universal transfer format (1), this is the multibyte
    encoding, that subsets ascii-7. it does not have byte
    ordering issues.

    name: iso_646.basic:1983 [rfc1345,kxs2]
    source: ecma registry
    alias: ref

    reynolds & postel [page 101]

    rfc 1700 assigned numbers october 1994

    name: invariant [rfc1345,kxs2]

    name: iso_646.irv:1983 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-2
    alias: irv

    name: bs_4730 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-4
    alias: iso646-gb
    alias: gb
    alias: uk

    name: nats-sefi [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-8-1

    name: nats-sefi-add [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-8-2

    name: nats-dano [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-9-1

    name: nats-dano-add [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-9-2

    name: sen_850200_b [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-10
    alias: fi
    alias: iso646-fi
    alias: iso646-se
    alias: se

    name: sen_850200_c [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-11
    alias: iso646-se2
    alias: se2

    name: ks_c_5601-1987 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-149
    alias: ks_c_5601-1989

    reynolds & postel [page 102]

    rfc 1700 assigned numbers october 1994

    alias: ksc_5601
    alias: korean

    name: iso-2022-kr [rfc1557,choi]
    source: rfc-1557 (see also ks_c_5601-1987)

    name: euc-kr [rfc1557,choi]
    source: rfc-1557 (see also ks_c_5861-1992)

    name: iso-2022-jp [rfc1468,murai]
    source: rfc-1468

    name: iso-2022-jp-2 [rfc1554,ohta]
    source: rfc-1554

    name: jis_c6220-1969-jp [rfc1345,kxs2]
    source: ecma registry
    alias: jis_c6220-1969
    alias: iso-ir-13
    alias: katakana
    alias: x0201-7

    name: jis_c6220-1969-ro [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-14
    alias: jp
    alias: iso646-jp

    name: it [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-15
    alias: iso646-it

    name: pt [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-16
    alias: iso646-pt

    name: es [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-17
    alias: iso646-es

    name: greek7-old [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-18

    name: latin-greek [rfc1345,kxs2]

    reynolds & postel [page 103]

    rfc 1700 assigned numbers october 1994

    source: ecma registry
    alias: iso-ir-19

    name: din_66003 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-21
    alias: de
    alias: iso646-de

    name: nf_z_62-010_(1973) [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-25
    alias: iso646-fr1

    name: latin-greek-1 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-27

    name: iso_5427 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-37

    name: jis_c6226-1978 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-42

    name: bs_viewdata [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-47

    name: inis [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-49

    name: inis-8 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-50

    name: inis-cyrillic [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-51

    name: iso_5427:1981 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-54

    name: iso_5428:1980 [rfc1345,kxs2]
    source: ecma registry

    reynolds & postel [page 104]

    rfc 1700 assigned numbers october 1994

    alias: iso-ir-55

    name: gb_1988-80 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-57
    alias: cn
    alias: iso646-cn

    name: gb_2312-80 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-58
    alias: chinese

    name: ns_4551-1 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-60
    alias: iso646-no
    alias: no

    name: ns_4551-2 [rfc1345,kxs2]
    source: ecma registry
    alias: iso646-no2
    alias: iso-ir-61
    alias: no2

    name: nf_z_62-010 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-69
    alias: iso646-fr
    alias: fr

    name: videotex-suppl [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-70

    name: pt2 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-84
    alias: iso646-pt2

    name: es2 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-85
    alias: iso646-es2

    name: msz_7795.3 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-86

    reynolds & postel [page 105]

    rfc 1700 assigned numbers october 1994

    alias: iso646-hu
    alias: hu

    name: jis_c6226-1983 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-87
    alias: x0208
    alias: jis_x0208-1983

    name: greek7 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-88

    name: asmo_449 [rfc1345,kxs2]
    source: ecma registry
    alias: iso_9036
    alias: arabic7
    alias: iso-ir-89

    name: iso-ir-90 [rfc1345,kxs2]
    source: ecma registry

    name: jis_c6229-1984-a [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-91
    alias: jp-ocr-a

    name: jis_c6229-1984-b [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-92
    alias: iso646-jp-ocr-b
    alias: jp-ocr-b

    name: jis_c6229-1984-b-add [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-93
    alias: jp-ocr-b-add

    name: jis_c6229-1984-hand [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-94
    alias: jp-ocr-hand

    name: jis_c6229-1984-hand-add [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-95
    alias: jp-ocr-hand-add

    reynolds & postel [page 106]

    rfc 1700 assigned numbers october 1994

    name: jis_c6229-1984-kana [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-96

    name: iso_2033-1983 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-98
    alias: e13b

    name: ansi_x3.110-1983 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-99
    alias: csa_t500-1983
    alias: naplps

    name: iso_8859-1:1987 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-100
    alias: iso_8859-1
    alias: iso-8859-1
    alias: latin1
    alias: l1
    alias: ibm819
    alias: cp819

    name: iso_8859-2:1987 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-101
    alias: iso_8859-2
    alias: iso-8859-2
    alias: latin2
    alias: l2

    name: t.61-7bit [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-102

    name: t.61-8bit [rfc1345,kxs2]
    alias: t.61
    source: ecma registry
    alias: iso-ir-103

    name: iso_8859-3:1988 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-109
    alias: iso_8859-3
    alias: iso-8859-3
    alias: latin3

    reynolds & postel [page 107]

    rfc 1700 assigned numbers october 1994

    alias: l3

    name: iso_8859-4:1988 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-110
    alias: iso_8859-4
    alias: iso-8859-4
    alias: latin4
    alias: l4

    name: ecma-cyrillic [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-111

    name: csa_z243.4-1985-1 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-121
    alias: iso646-ca
    alias: csa7-1
    alias: ca

    name: csa_z243.4-1985-2 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-122
    alias: iso646-ca2
    alias: csa7-2

    name: csa_z243.4-1985-gr [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-123

    name: iso_8859-6:1987 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-127
    alias: iso_8859-6
    alias: iso-8859-6
    alias: ecma-114
    alias: asmo-708
    alias: arabic

    name: iso_8859-6-e [rfc1556,iana]
    source: rfc-1556

    name: iso_8859-6-i [rfc1556,iana]
    source: rfc-1556

    name: iso_8859-7:1987 [rfc1345,kxs2]
    source: ecma registry

    reynolds & postel [page 108]

    rfc 1700 assigned numbers october 1994

    alias: iso-ir-126
    alias: iso_8859-7
    alias: iso-8859-7
    alias: elot_928
    alias: ecma-118
    alias: greek
    alias: greek8

    name: t.101-g2 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-128

    name: iso_8859-8:1988 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-138
    alias: iso_8859-8
    alias: iso-8859-8
    alias: hebrew

    name: iso_8859-8-e [rfc1556,nussbacher]
    source: rfc-1556

    name: iso_8859-8-i [rfc1556,nussbacher]
    source: rfc-1556

    name: csn_369103 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-139

    name: jus_i.b1.002 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-141
    alias: iso646-yu
    alias: js
    alias: yu

    name: iso_6937-2-add [rfc1345,kxs2]
    source: ecma registry and iso 6937-2:1983
    alias: iso-ir-142

    name: iec_p27-1 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-143

    name: iso_8859-5:1988 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-144
    alias: iso_8859-5

    reynolds & postel [page 109]

    rfc 1700 assigned numbers october 1994

    alias: iso-8859-5
    alias: cyrillic

    name: jus_i.b1.003-serb [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-146
    alias: serbian

    name: jus_i.b1.003-mac [rfc1345,kxs2]
    source: ecma registry
    alias: macedonian
    alias: iso-ir-147

    name: iso_8859-9:1989 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-148
    alias: iso_8859-9
    alias: iso-8859-9
    alias: latin5
    alias: l5

    name: greek-ccitt [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-150

    name: nc_nc00-10:81 [rfc1345,kxs2]
    source: ecma registry
    alias: cuba
    alias: iso-ir-151
    alias: iso646-cu

    name: iso_6937-2-25 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-152

    name: gost_19768-74 [rfc1345,kxs2]
    source: ecma registry
    alias: st_sev_358-88
    alias: iso-ir-153

    name: iso_8859-supp [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-154
    alias: latin1-2-5

    name: iso_10367-box [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-155

    reynolds & postel [page 110]

    rfc 1700 assigned numbers october 1994

    name: latin6 [rfc1345,kxs2]
    source: ecma registry
    alias: iso-ir-157
    alias: l6

    name: latin-lap [rfc1345,kxs2]
    source: ecma registry
    alias: lap
    alias: iso-ir-158

    name: jis_x0212-1990 [rfc1345,kxs2]
    source: ecma registry
    alias: x0212
    alias: iso-ir-159

    name: ds_2089 [rfc1345,kxs2]
    source: danish standard, ds 2089, february 1974
    alias: ds2089
    alias: iso646-dk
    alias: dk

    name: us-dk [rfc1345,kxs2]

    name: dk-us [rfc1345,kxs2]

    name: jis_x0201 [rfc1345,kxs2]
    alias: x0201

    name: ksc5636 [rfc1345,kxs2]
    alias: iso646-kr

    name: dec-mcs [rfc1345,kxs2]
    source: vax/vms user's manual,
    order number: ai-y517a-te, april 1986.
    alias: dec

    name: hp-roman8 [rfc1345,kxs2]
    source: laserjet iip printer user's manual,
    hp part no 33471-90901, hewlet-packard, june 1989.
    alias: roman8
    alias: r8

    name: macintosh [rfc1345,kxs2]
    source: the unicode standard ver1.0, isbn 0-201-56788-1, oct 1991
    alias: mac

    name: ibm037 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990

    reynolds & postel [page 111]

    rfc 1700 assigned numbers october 1994

    alias: cp037
    alias: ebcdic-cp-us
    alias: ebcdic-cp-ca
    alias: ebcdic-cp-wt
    alias: ebcdic-cp-nl

    name: ibm038 [rfc1345,kxs2]
    source: ibm 3174 character set ref, ga27-3831-02, march 1990
    alias: ebcdic-int
    alias: cp038

    name: ibm273 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp273

    name: ibm274 [rfc1345,kxs2]
    source: ibm 3174 character set ref, ga27-3831-02, march 1990
    alias: ebcdic-be
    alias: cp274

    name: ibm275 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: ebcdic-br
    alias: cp275

    name: ibm277 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: ebcdic-cp-dk
    alias: ebcdic-cp-no

    name: ibm278 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp278
    alias: ebcdic-cp-fi
    alias: ebcdic-cp-se

    name: ibm280 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp280
    alias: ebcdic-cp-it

    name: ibm281 [rfc1345,kxs2]
    source: ibm 3174 character set ref, ga27-3831-02, march 1990
    alias: ebcdic-jp-e
    alias: cp281

    name: ibm284 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990

    reynolds & postel [page 112]

    rfc 1700 assigned numbers october 1994

    alias: cp284
    alias: ebcdic-cp-es

    name: ibm285 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp285
    alias: ebcdic-cp-gb

    name: ibm290 [rfc1345,kxs2]
    source: ibm 3174 character set ref, ga27-3831-02, march 1990
    alias: cp290
    alias: ebcdic-jp-kana

    name: ibm297 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp297
    alias: ebcdic-cp-fr

    name: ibm420 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990,
    ibm nls rm p 11-11
    alias: cp420
    alias: ebcdic-cp-ar1

    name: ibm423 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp423
    alias: ebcdic-cp-gr

    name: ibm424 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp424
    alias: ebcdic-cp-he

    name: ibm437 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp437
    alias: 437

    name: ibm500 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp500
    alias: ebcdic-cp-be
    alias: ebcdic-cp-ch

    name: ibm850 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp850

    reynolds & postel [page 113]

    rfc 1700 assigned numbers october 1994

    alias: 850

    name: ibm851 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp851
    alias: 851

    name: ibm852 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp852
    alias: 852

    name: ibm855 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp855
    alias: 855

    name: ibm857 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp857
    alias: 857

    name: ibm860 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp860
    alias: 860

    name: ibm861 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp861
    alias: 861
    alias: cp-is

    name: ibm862 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp862
    alias: 862

    name: ibm863 [rfc1345,kxs2]
    source: ibm keyboard layouts and code pages, pn 07g4586 june 1991
    alias: cp863
    alias: 863

    name: ibm864 [rfc1345,kxs2]
    source: ibm keyboard layouts and code pages, pn 07g4586 june 1991
    alias: cp864

    name: ibm865 [rfc1345,kxs2]

    reynolds & postel [page 114]

    rfc 1700 assigned numbers october 1994

    source: ibm dos 3.3 ref (abridged), 94x9575 (feb 1987)
    alias: cp865
    alias: 865

    name: ibm868 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp868
    alias: cp-ar

    name: ibm869 [rfc1345,kxs2]
    source: ibm keyboard layouts and code pages, pn 07g4586 june 1991
    alias: cp869
    alias: 869
    alias: cp-gr

    name: ibm870 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp870
    alias: ebcdic-cp-roece
    alias: ebcdic-cp-yu

    name: ibm871 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp871
    alias: ebcdic-cp-is

    name: ibm880 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp880
    alias: ebcdic-cyrillic

    name: ibm891 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp891

    name: ibm903 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp903

    name: ibm904 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp904
    alias: 904

    name: ibm905 [rfc1345,kxs2]
    source: ibm 3174 character set ref, ga27-3831-02, march 1990
    alias: cp905
    alias: ebcdic-cp-tr

    reynolds & postel [page 115]

    rfc 1700 assigned numbers october 1994

    name: ibm918 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp918
    alias: ebcdic-cp-ar2

    name: ibm1026 [rfc1345,kxs2]
    source: ibm nls rm vol2 se09-8002-01, march 1990
    alias: cp1026

    name: ebcdic-at-de [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-at-de-a [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-ca-fr [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-dk-no [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-dk-no-a [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-fi-se [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-fi-se-a [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-fr [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-it [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-pt [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-es [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-es-a [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-es-s [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    reynolds & postel [page 116]

    rfc 1700 assigned numbers october 1994

    name: ebcdic-uk [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: ebcdic-us [rfc1345,kxs2]
    source: ibm 3270 char set ref ch 10, ga27-2837-9, april 1987

    name: unknown-8bit [rfc1428]

    name: mnemonic [rfc1345,kxs2]
    source: rfc 1345, also known as "mnemonic+ascii+38"

    name: mnem [rfc1345,kxs2]
    source: rfc 1345, also known as "mnemonic+ascii+8200"

    name: viscii [rfc1456]
    source: rfc 1456

    name: viqr [rfc1456]
    source: rfc 1456

    name: koi8-r [rfc1489]
    source: rfc 1489, based on gost-19768-74, iso-6937/8,
    inis-cyrillic, iso-5427.

    name: unicode-1-1 [rfc1641]
    source: rfc 1641

    name: unicode-1-1-utf-7 [rfc1642]
    source: rfc 1642

    references

    [rfc1345] simonsen, k., "character mnemonics & character sets",
    rfc 1345, rationel almen planlaegning, rationel almen
    planlaegning, june 1992.

    [rfc1428] vaudreuil, g., "transition of internet mail from
    just-send-8 to 8bit-smtp/mime", rfc1428, cnri, february
    1993.

    [rfc1456] vietnamese standardization working group, "conventions for
    encoding the vietnamese language viscii: vietnamese
    standard code for information interchange viqr: vietnamese
    quoted-readable specification revision 1.1", rfc 1456, may
    1993.

    [rfc1468] murai, j., crispin, m., and e. van der poel, "japanese
    character encoding for internet messages", rfc 1468,

    reynolds & postel [page 117]

    rfc 1700 assigned numbers october 1994

    keio university, panda programming, june 1993.

    [rfc1489] chernov, a., "registration of a cyrillic character set",
    rfc1489, relcom development team, july 1993.

    [rfc1554] ohta, m., and k. handa, "iso-2022-jp-2: multilingual
    extension of iso-2022-jp", rfc1554, tokyo institute of
    technology, etl, december 1993.

    [rfc1556] nussbacher, h., "handling of bi-directional texts in mime",
    rfc1556, israeli inter-university, december 1993.

    [rfc1557] choi, u., chon, k., and h. park, "korean character encoding
    for internet messages", kaist, solvit chosun media,
    december 1993.

    [rfc1641] goldsmith, d., and m. davis, "using unicode with mime",
    rfc1641, taligent, inc., july 1994.

    [rfc1642] goldsmith, d., and m. davis, "utf-7", rfc1642, taligent,
    inc., july 1994.

    people

    [kxs2] keld simonsen <keld.simonsen@dkuug.dk>

    [choi] uhhyung choi <uhhyung@kaist.ac.kr>

    [murai] jun murai <jun@wide.ad.jp>

    [ohta] masataka ohta <mohta@cc.titech.ac.jp>

    [nussbacher] hank nussbacher <hank@vm.tau.ac.il>

    []

    url = ftp://ftp.isi.edu/…/iana/assignments/character-sets

    reynolds & postel [page 118]

    rfc 1700 assigned numbers october 1994

    network management parameters

    for the management of hosts and gateways on the internet a data
    structure for the information has been defined. this data structure
    should be used with any of several possible management protocols, such
    as the "simple network management protocol" (snmp) [rfc1157], or the
    "common management information protocol over tcp" (cmot) [rfc1095].

    the data structure is the "structure and indentification of management
    information for tcp/ip-based internets" (smi) [rfc1155], and the
    "management information base for network management of tcp/ip-based
    internets" (mib-ii) [rfc1213].

    the smi includes the provision for panrameters or codes to indicate
    experimental or private data structures. these parameter assignments
    are listed here.

    the older "simple gateway monitoring protocol" (sgmp) [rfc1028] also
    defined a data structure. the parameter assignments used with sgmp
    are included here for historical completeness.

    the network management object identifiers are under the iso (1), org
    (3), dod (6), internet (1), or 1.3.6.1, branch of the name space.

    the major branches are:

    1 iso
    1.3 org
    1.3.6 dod
    1.3.6.1 internet
    1.3.6.1.1 directory
    1.3.6.1.2 mgmt
    1.3.6.1.2.1 mib-2
    1.3.6.1.2.1.2.2.1.3 iftype
    1.3.6.1.2.1.10 transmission
    1.3.6.1.2.1.10.23 transmission.ppp
    1.3.6.1.2.1.27 application
    1.3.6.1.2.1.28 mta
    1.3.6.1.3 experimental
    1.3.6.1.4 private
    1.3.6.1.4.1 enterprise
    1.3.6.1.5 security
    1.3.6.1.6 snmpv2
    1.3.6.1.7 mail

    smi network management directory codes:

    prefix: iso.org.dod.internet.directory (1.3.6.1.1.)

    reynolds & postel [page 119]

    rfc 1700 assigned numbers october 1994

    decimal name description references
    ------- ---- ----------- ----------
    all reserved reserved for future use [iana]

    smi network management mgmt codes:

    prefix: iso.org.dod.internet.mgmt (1.3.6.1.2.)

    decimal name description references
    ------- ---- ----------- ----------
    0 reserved [iana]
    1 mib [kzm]

    prefix: iso.org.dod.internet.mgmt.mib-2 (1.3.6.1.2.1)

    decimal name description references
    ------- ---- ----------- ----------
    0 reserved reserved [iana]
    1 system system [rfc1213,kzm]
    2 interfaces interfaces [rfc1213,kzm]
    3 at address translation [rfc1213,kzm]
    4 ip internet protocol [rfc1213,kzm]
    5 icmp internet control message [rfc1213,kzm]
    6 tcp transmission control protocol[rfc1213,kzm]
    7 udp user datagram protocol [rfc1213,kzm]
    8 egp exterior gateway protocol [rfc1213,kzm]
    9 cmot cmip over tcp [rfc1213,kzm]
    10 transmission transmission [rfc1213,kzm]
    11 snmp simple network management [rfc1213,kzm]
    12 genericif generic interface extensions
    -- [rfc1229,rfc1239,kzm]
    13 appletalk appletalk networking [rfc1243,sxw]
    14 ospf open shortest path first [rfc1253,fb77]
    15 bgp border gateway protocol [rfc1657]
    16 rmon remote network monitoring [rfc1271,sxw]
    17 bridge bridge objects [rfc1286,exd]
    18 decnetp4 decnet phase 4 [rfc1559, saperia]
    19 character character streams [rfc1658]
    20 snmpparties snmp parties [rfc1353,kzm]
    21 snmpsecrets snmp secrets [rfc1353,kzm]
    22 snmpdot3rptrmgt [rfc1516]
    23 rip-2 routing information protocol [rfc1389]
    24 ident identification protocol [rfc1414]
    25 host host resources [rfc1514]
    26 snmpdot3maumgt 802.3 medium attachment units [rfc1515]
    27 application network services monitoring [rfc1565]
    28 mta mail monitoring [rfc1566]
    29 dsa x.500 directory monitoring [rfc1567]

    reynolds & postel [page 120]

    rfc 1700 assigned numbers october 1994

    30 ianaiftype interface types [rfc1573]
    31 ifmib interface types [rfc1573]
    32 dns domain name system [rfc1611]
    33 upsmib uninterruptible power supplies [rfc1628]
    34 sannaumib sna nau mib [rfc1665]
    35 ethermib ethernet-like generic objects [rfc1650]
    36 sipmib smds inteface objects [rfc1694]
    37 atmmib atm objects [rfc1695]
    38 mdmmib dial-up modem objects [rfc1696]
    39 rdbmsmib relational database objects [rfc1697]

    prefix: iso.org.dod.internet.mgmt.mib-2.interface (1.3.6.1.2.1.2)

    (1.3.6.1.2.1.2.2.1.3)

    iftype definitions

    decimal name description
    ------- ---- -----------
    1 other none of the following [rfc1213]
    2 regular1822 bbn report 1822 [rfc1213]
    3 hdh1822 bbn report 1822 [rfc1213]
    4 ddn-x25 bbn report 1822 [rfc1213]
    5 x25 x.25 [rfc1382]
    6 ethernet-csmacd [rfc1213]
    7 ieee802.3 csmacd--like objects [rf1284,jxc]
    8 ieee802.4 token bus-like objects
    -- [rfc1230,rfc1239,kzm]
    9 ieee802.5 token ring-like objects
    -- [rfc1231,rfc1239,kzm]
    10 iso88026-man [rfc1213]
    11 starlan [rfc1213]
    12 proteon-10mbit [rfc1213]
    13 proteon-80mbit [rfc1213]
    14 hyperchannel [rfc1213]
    15 fddi fddi objects [rfc1285,jdc20]
    16 lapb lap b [rfc1381]
    17 sdlc [rfc1213]
    18 ds1 t1/e1 carrier objects [rfc1406]
    19 e1 obsolete
    20 basicisdn [rfc1213]
    21 primaryisdn [rfc1213]
    22 proppointtopointserial [rfc1213]
    23 ppp point-to-point protocol [rfc1471]
    24 softwareloopback [rfc1213]
    25 eon [rfc1213]
    26 ethernet-3mbit [rfc1213]
    27 nsip [rfc1213]
  • reynolds & postel [page 121]

    rfc 1700 assigned numbers october 1994

    28 slip [rfc1213]
    29 ultra [rfc1213]
    30 ds3 ds3/e3 interface objects [rfc1407]
    31 sip smds interface objects [rfc1304,txc]
    32 frame-relay frame relay objects [rfc1315,cxb]
    33 rs-232 rs-232 objects [rfc1659]
    34 parallel parallel printer objects [rfc1660]
    35 arcnet arc network
    36 arcnet-plus arc network plus
    37 atm atm
    38 miox25 miox25 [rfc1461]
    39 sonet sonet or sdh
    40 x25ple x.25 packet level [rfc1382]
    41 iso88022llc 802.2 llc
    42 localtalk
    43 smds-dxi smds dxi
    44 framerelayservice frame relay dce
    45 v35 v.35
    46 hssi hssi
    47 hippi hippi
    48 modem generic modem
    49 aal5 aal5 over atm
    50 sonetpath
    51 sonetvt
    52 smds-icip smds inter-carrier interface protocol
    53 propvirtual proprietary vitural/internal interface
    54 propmultilink proprietary multi-link multiplexing
    55 ieee802.12 100basevg
    56 fibre-channel fibre channel

    prefix: iso.org.dod.internet.mgmt.mib-2.transmission (1.3.6.1.2.1.10)

    decimal name description
    ------- ---- -----------
    5 x25 x.25 [rfc1382]
    7 ieee802.3 csmacd--like objects [rfc1650]
    8 ieee802.4 token bus-like objects
    -- [rfc1230,rfc1239,kzm]
    9 ieee802.5 token ring-like objects
    -- [rfc1231,rfc1239,kzm]
    15 fddi fddi objects [rfc1285,jdc20]
    16 lapb lap b [rfc1381]
    18 ds1 t1 carrier objects [rfc1406]
    19 e1 e1 carrier objects [rfc1406]
    23 ppp point-to-point protocol [rfc1471]
    30 ds3 ds3/e3 interface objects [rfc1407]
    31 sip smds interface objects [rfc1694]
    32 frame-relay frame relay objects [rfc1315,cxb]

    reynolds & postel [page 122]

    rfc 1700 assigned numbers october 1994

    33 rs-232 rs-232 objects [rfc1659]
    34 parallel parallel printer objects [rfc1660]
    35 arcnet arc network
    36 arcnet-plus arc network plus
    37 atm atm
    38 miox25 miox25 [rfc1461]
    39 sonetmib sonet mib [rfc1595]
    44 frnetservmib frame relay service mib for dce [rfc1596]

    prefix: iso.org.dod.internet.mgmt.mib-2.transmission (1.3.6.1.2.1.10)

    (1.3.6.1.2.1.10.23)

    decimal name description references
    ------- ---- ----------- ----------
    1 ppplcp ppp link control [rfc1471]
    2 pppsecurity ppp security [rfc1472]
    3 pppip ppp ip network control [rfc1473]
    4 pppbridge ppp bridge networl control [rfc1474]

    prefix: iso.org.dod.internet.mgmt.mib-2.application (1.3.6.1.2.1.27)

    (1.3.6.1.2.1.27.2.1.3)

    assocapplicationprotocol object-type
    syntax object identifier
    max-access read-only
    status current
    description
    "an identification of the protocol being used for the
    application. for an osi application, this will be the
    application context. for internet applications, the iana
    maintains a registry of the oids which correspond to
    well-known applications. if the application protocol is
    not listed in the registry, an oid value of the form
    {appltcpprotoid port} or {appludprotoid port} are used for
    tcp-based and udp-based protocols, respectively. in either
    case 'port' corresponds to the primary port number being
    used by the protocol."
    ::= {assocentry 3}

    decimal name description
    ------- ---- -----------
    0 reserved

    (1.3.6.1.2.1.27.3)

    (1.3.6.1.2.1.27.4)

    reynolds & postel [page 123]

    rfc 1700 assigned numbers october 1994

    -- oids of the form {appltcpprotoid port} are intended to be used
    -- for tcp-based protocols that don't have oids assigned by other
    -- means. {appludpprotoid port} serves the same purpose for
    -- udp-based protocols. in either case 'port' corresponds to
    -- the primary port number being used by the protocol. for example,
    -- assuming no other oid is assigned for smtp, an oid of
    -- {appltcpprotoid 25} could be used, since smtp is a tcp-based
    -- protocol that uses port 25 as its primary port.

    prefix: iso.org.dod.internet.mgmt.mib-2.mta (1.3.6.1.2.1.28)

    (1.3.6.1.2.1.28.2.1.24)

    mtagroupmailprotocol object-type
    syntax object identifier
    max-access read-only
    status current
    description
    "an identification of the protocol being used by this group.
    for an group employing osi protocols, this will be the
    application context. for internet applications, the iana
    maintains a registry of the oids which correspond to
    well-known message transfer protocols. if the application
    protocol is not listed in the registry, an oid value of the
    form {appltcpprotoid port} or {appludprotoid port} are used
    for tcp-based and udp-based protocols, respectively. in
    either case 'port' corresponds to the primary port number
    being used by the group. appltcpprotoid and appludpprotoid
    are defined in [5]."
    ::= {mtagroupentry 24}

    decimal name description
    ------- ---- -----------
    0 reserved

    smi network management experimental codes:

    prefix: iso.org.dod.internet.experimental (1.3.6.1.3.)

    decimal name description references
    ------- ---- ----------- ----------
    0 reserved [jkr1]
    1 clns iso clns objects [gs2]
    * 2 t1-carrier t1 carrier objects [fb77]
    * 3 ieee802.3 ethernet-like objects [jxc]
    * 4 ieee802.5 token ring-like objects [exd]
    * 5 decnet-phiv decnet phase iv [jxs2]
    * 6 interface generic interface objects [kzm]

    reynolds & postel [page 124]

    rfc 1700 assigned numbers october 1994

    * 7 ieee802.4 token bus-like objects [kzm]
    * 8 fddi fddi objects [jdc20]
    9 lanmgr-1 lan manager v1 objects [jxg1]
    10 lanmgr-traps lan manager trap objects [jxg1]
    11 views snmp view objects [cxd]
    12 snmp-auth snmp authentication objects [kzm]
    * 13 bgp border gateway protocol [sw159]
    * 14 bridge bridge mib [fb77]
    * 15 ds3 ds3 interface type [txb]
    * 16 sip smds interface protocol [txb]
    * 17 appletalk appletalk networking [sxw]
    * 18 ppp ppp objects [fjk2]
    * 19 character mib character mib [bs221]
    * 20 rs-232 mib rs-232 mib [bs221]
    * 21 parallel mib parallel mib [bs221]
    22 atsign-proxy proxy via community [rxf]
    * 23 ospf ospf mib [fb77]
    24 alert-man alert-man [ls8]
    25 fddi-synoptics fddi-synoptics [dxp1]
    * 26 frame relay frame relay mib [cxb]
    * 27 rmon remote network management mib [sxw]
    28 idpr idpr mib [raw44]
    29 hubmib ieee 802.3 hub mib [dxm5]
    30 ipfwdtblmib ip forwarding table mib [fb77]
    31 latm mib [txb]
    32 sonet mib [txb]
    33 ident [mtr]
    34 mime-mhs [mtr]
    35 maumib ieee 802.3 mau mib [dxm5]
    36 host resources host resources mib [sxw]
    37 isis-mib integrated isis protocol mib [cxg]
    38 chassis chassis mib [jdc20]
    39 ups ups [jdc20]
    40 app-mon application monitoring mib [txk]
    41 atm uni atm [mxa1]
    42 fc fibre channel [jxc4]
    * 43 dns domain name service [rob austein]
    44 x.25 x.25 mib [dean throop]
    45 frame relay serv. frame relay service mib [tracy cox]
    46 madman-applications [ned freed]
    47 madman-mta [ned freed]
    48 madman-dsa [ned freed]
    49 modem [steve waldbusser]
    50 sna nau [deirdre kostick]
    51 sdlc sdlc [jeff hilgeman]
    52 dns domain name service [jon saperia]
    53 network-objects ip info ix x.500 [johannsen]
    54 printmib [joel gyllenskog]

    reynolds & postel [page 125]

    rfc 1700 assigned numbers october 1994

    55 rdbmsmib [robert purvey]
    56 sipmib [tracy brown]
    57 stiimib st-ii protocol mib [hartmut wittig]
    58 802.5 ssr mib 802.5 station source routing mib [kzm]

    * = obsoleted

    smi private codes:

    prefix: iso.org.dod.internet.private (1.3.6.1.4)

    decimal name description references
    ------- ---- ----------- ----------
    0 reserved [jkr1]
    1 enterprise private enterprises [jkr1]

    smi private enterprise codes:

    prefix: iso.org.dod.internet.private.enterprise (1.3.6.1.4.1)

    see the file "enterprise-numbers".

    smi security codes:

    prefix: iso.org.dod.internet.security (1.3.6.1.5)

    decimal name description references
    ------- ---- ----------- ----------
    0 reserved [jkr1]
    1 kerberosv4 kerberos version 4 objects [1,bcn]
    2 kerberosv5 kerberos version 5 objects [2,bcn]

    smi snmpv2 codes:

    prefix: iso.org.dod.internet.snmpv2 (1.3.6.1.6)

    smi mail codes:

    prefix: iso.org.dod.internet.mail (1.3.6.1.7)

    1 mime-mhs

    references

    [1] miller, s.p., b.c. neuman, j.i. schiller, and j.h. saltzer,
    "project athena technical plan section e.2.1: kerberos
    authentication and authorization system", project athena,

    reynolds & postel [page 126]

    rfc 1700 assigned numbers october 1994

    mit, december 1987.

    [2] kohl, j., and b.c. neuman, "the kerberos network
    authentication service (v5)" work in progress, september
    1992.

    [rfc1028] davin, j., j. case, m. fedor, and m. schoffstall, "a simple
    gateway monitoring protocol", rfc 1028, proteon, inc.,
    university of tennessee at knoxville, cornell university,
    rensselaer polytechnic institute, november 1987.

    [rfc1095] warrier, u., and l. besaw, "the common management
    information services and protocol over tcp/ip (cmot)",
    rfc 1095, unisys corp., hewlett-packard, april 1989.

    [rfc1155] rose, m., and k. mccloghrie, "structure and identification
    of management information for tcp/ip-based internets",
    std 16, rfc 1155, performance systems international, hughes
    lan systems, may 1990.

    [rfc1157] case, j., m. fedor, m. schoffstall, and j. davin,
    "a simple network management protocol", std 15, rfc 1157,
    snmp research, performance systems international,
    performance systems international, mit laboratory for
    computer science, may 1990.

    [rfc1213] mccloghrie, k., and m. rose, "management information base
    for network management of tcp/ip-based internets: mib-ii",
    std 17, rfc 1213, hughes lan systems, performance systems
    international, march 1991.

    [rfc1229] mccloghrie, k., editor, "extensions to the generic-interface
    mib", rfc 1229, hughes lan systems, inc., may 1991.

    [rfc1230] mccloghrie, k., and r. fox, "ieee 802.4 token bus mib",
    rfc 1230, hughes lan systems, inc., synoptics, inc.,
    may 1991.

    [rfc1231] mccloghrie, k., fox, r., and e. decker, "ieee 802.5 token
    ring mib", rfc 1231, hughes lan systems, inc., synoptics,
    inc., cisco systems, inc., may 1991.

    [rfc1239] reynolds, j., "reassignment of experimental mibs to
    standard mibs", rfc 1239, usc/information sciences
    institute, isi, june 1991.

    [rfc1243] waldbusser, s., editor, "appletalk management information
    base", rfc 1243, carnegie mellon university, july 1991.

    reynolds & postel [page 127]

    rfc 1700 assigned numbers october 1994

    [rfc1253] baker, f., and r. coltun, "ospf version 2 management
    information base", rfc 1253, acc, computer science center,
    august 1991.

    [rfc1271] waldbusser, s., "remote network monitoring management
    information base", rfc 1271, carnegie mellon university,
    november 1991.

    [rfc1284] cook, j., editor, "definitions of managed objects
    for the ethernet-like interface types", rfc 1284, chipcom
    corporation, december 1991.

    [rfc1285] case, j., "fddi management information base", rfc 1285,
    snmp research, incorporated, january 1992.

    [rfc1286] decker, e., langille, p., rijsinghani, a., and k.
    mccloghrie, "definitions of managed objects for bridges",
    rfc 1286, cisco systems, inc., dec, hughes lan systems,
    inc., december 1991.

    [rfc1304] cox, t., and k. tesnik, editors, "definitions of managed
    objects for the sip interface type", rfc 1304, bell
    communications research, february 1992.

    [rfc1315] brown, c., baker, f., and c. carvalho, "management
    information base for frame relay dtes", rfc 1315, wellfleet
    communications, inc., advanced computer communications,
    april 1992.

    [rfc1353] mccloghrie, k., davin, j., and j. galvin, "definitions of
    managed objects for administration of snmp parties",
    rfc 1353, hughes lan systems, inc., mit laboratory for
    computer science, trusted information systems, inc.,
    july 1992.

    [rfc1381] throop, d., and f. baker, "snmp mib extension for x.25
    lapb", rfc 1381, data general corporation, advanced computer
    communications, november 1992.

    [rfc1382] throop, d., editor, "snmp mib extension for the x.25 packet
    layer", rfc 1382, data general corporation, november 1992.

    [rfc1389] malkin, g., and f. baker, "rip version 2 mib extension", rfc
    1389, xylogics, inc., advanced computer communications,
    january 1993.

    [rfc1406] baker, f., and j. watt, editors, "definitions of managed
    objects for the ds1 and e1 interface types", rfc 1406,

    reynolds & postel [page 128]

    rfc 1700 assigned numbers october 1994

    advanced computer communications, newbridge networks
    corporation, january 1993.

    [rfc1407] cox, t., and k. tesink, "definitions of managed objects
    for the ds3/e3 interface type", rfc 1407, bell
    communications research, january 1993.

    [rfc1414] st. johns, m., and m. rose, "identification mib", rfc 1414,
    us department of defense, dover beach consulting, inc.,
    february 1993.

    [rfc1461] throop, d., "snmp mib extension for multiprotocol
    interconnect over x.25", rfc 1461, data general corporation,
    may 1993.

    [rfc1471] kastenholz, f., "the definitions of managed objects for
    the link control protocol of the point-to-point protocol",
    rfc 1471, ftp software, inc., june 1993.

    [rfc1472] kastenholz, f., "the definitions of managed objects for
    the security protocols of the point-to-point protocol", rfc
    1472, ftp software, inc., june 1993.

    [rfc1473] kastenholz, f., "the definitions of managed objects for
    the ip network control protocol of the point-to-point
    protocol", rfc 1473, ftp software, inc., june 1993.

    [rfc1474] kastenholz, f., "the definitions of managed objects for
    the bridge network control protocol of the point-to-point
    protocol" rfc 1474, ftp software, inc., june 1993.

    [rfc1514] grillo, p., and s. waldbusser, "host resources mib", rfc
    1514, network innovations, intel corporation, carnegie
    mellon university, september 1993.

    [rfc1515] mcmaster, d., mccloghrie, k., and s. roberts, "definitions
    of managed objects for ieee 802.3 medium attachment units
    (maus)", rfc 1515, synoptics communications, inc., hughes
    lan systems, inc., farallon computing, inc., september 1993.

    [rfc1516] mcmaster, d., and k. mccloghrie, "definitions of managed
    objects for ieee 802.3 repeater devices", rfc 1516,
    synoptics communications, inc., hughes lan systems, inc.,
    september 1993.

    [rfc1559] saperia, j., "decnet phase iv mib extensions", rfc 1559,
    digital equipment corporation, december 1993.

    reynolds & postel [page 129]

    rfc 1700 assigned numbers october 1994

    [rfc1565] kille, s., wg chair, and n. freed, editor, "network services
    monitoring mib", rfc 1565, isode consortium and innosoft,
    january 1994.

    [rfc1566] kille, s., wg chair, and n. freed, editor, "mail monitoring
    mib", rfc 1566, isode consortium, innosoft, january 1994.

    [rfc1567] mansfield, g., and s. kille, "x.500 directory monitoring
    mib", rfc 1567, aic systems laboratory, isode consortium,
    january 1994.

    [rfc1573] mccloghrie, k., and f. kastenholz, "evolution of the
    interfaces group of mib-ii", rfc 1573, hughes lan systems,
    ftp software, january 1994.

    [rfc1595] brown, t., and k. tesink, editors, "definitions of managed
    objects for the sonet/sdh interface type", rfc 1595,
    bell communications research, march 1994.

    [rfc1596] brown, t., editor, definitions of managed objects for frame
    relay service", rfc 1596, bell communications research,
    march 1994.

    [rfc1611] austein, r., and j. saperia, "dns server mib extensions",
    rfc 1611, epilogue technology corporation, digital equipment
    corporation, may 1994.

    [rfc1628] case, j., editor, "ups management information base", rfc
    1628, snmp research, incorporated, may 1994.

    [rfc1650] kastenholz, f., "definitions of managed objects for
    the ethernet-like interface types using smiv2", rfc 1650,
    ftp software, inc., august 1994.

    [rfc1657] willis, s., burruss, j., and j. chu, editor, "definitions of
    managed objects for the fourth version of the border gateway
    protocol (bgp-4) using smiv2", rfc 1657, wellfleet
    communications inc., ibm corp., july 1994.

    [rfc1658] stewart, b., "definitions of managed objects for character
    stream devices using smiv2", rfc 1658, xyplex, inc., july
    1994.

    [rfc1659] stewart, b., "definitions of managed objects for rs-232-like
    hardware devices using smiv2", rfc 1659, xyplex, inc., july
    1994.

    [rfc1660] stewart, b., "definitions of managed objects for

    reynolds & postel [page 130]

    rfc 1700 assigned numbers october 1994

    parallel-printer-like hardware devices using smiv2", rfc
    1660, xyplex, inc., july
    1994.

    [rfc1665] kielczewski, z., kostick, d., and k. shih, editors,
    "definitions of managed objects for sna naus using smiv2",
    rfc 1665, eicon technology corporation, bell communications
    research, novell, july 1994.

    [rfc1694] brown, t., and k. tesink, editors, "definitions of managed
    objects for smds interfaces using smiv2", rfc 1694, bell
    communications research, august 1994.

    [rfc1695] ahmed, m., and k. tesink, editors, "definitions of managed
    objects for atm management version 8.0 using smiv2", rfc
    1695, bell communications research, august 1994.

    [rfc1696] barnes, j., brown, l., royston, r., and s. waldbusser,
    "modem management information base (mib) using smiv2", rfc
    1696, xylogics, inc., motorola, us robotics, inc., carnegie
    mellon university, august 1994.

    [rfc1697] brower, d., editor, purvy, b., rdbmsmib working group chair,
    daniel, a., sinykin, m., and j. smith, "relational database
    management system (rdbms) management information base (mib)
    using smiv2", rfc 1697, the ask group, ingres dbms
    development, oracle corporation, informix software, inc.,
    oracle corporation, august 1994.

    people

    [rob austein]

    [bcn] b. clifford neuman <bcn@isi.edu>

    [bs221] bob stewart <stewart@xyplex.com>

    [cxb] caralyn brown <cbrown%wellfleet.com@talcott.harvard.edu>

    [cxd] chuck davin <jrd@ptt.lcs.mit.edu>

    [cxg] chris gunner <gunner@dsmail.lkg.dec.com>

    [dean throop]

    [dxm5] donna mcmaster <mcmaster@synoptics.com>

    [dxp1] david perkins <dperkins@synoptics.com>

    reynolds & postel [page 131]

    rfc 1700 assigned numbers october 1994

    [exd] eric decker <cire@cisco.com>

    [fb77] fred baker <fbaker@acc.com>

    [fjk2]

    [gs2] greg satz <satz@cisco.com>

    [iana] iana <iana@isi.edu>

    [jdc20] jeffrey case <case@utkux1.utk.edu>

    [jkr1] joyce k. reynolds <jkrey@isi.edu>

    [jxc] john cook <cook@chipcom.com>

    [jxg1] jim greuel <jimg%hpcndpc@hplabs.hp.com>

    [jxs2] jon saperia <saperia@tcpjon.enet.dec.com>

    [jeff hilgeman]

    [johannsen]

    [kzm] keith mccloghrie <kzm@hls.com>

    [ls8] louis steinberg <lou@aramis.rutgers.edu>

    [mxa1] masuma ahmed <mxa@mail.bellcore.com>

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

    [raw44] robert a. woodburn <woody@sparta.com>

    [jxc4] john chu <jychu@watson.ibm.com>

    [ned freed]

    [deirdre kostick]

    [joel gyllenskog] joel gyllenskog <jgyllens@hpdmd48.boi.hp.com>

    [robert purvey] robert purvey <bpurvy@us.oracle.com>

    [rxf] richard fox <rfox@synoptics.com>

    [jon saperia] jon saperia <saperia@tcpjon.enet.dec.com>

    reynolds & postel [page 132]

    rfc 1700 assigned numbers october 1994

    [sw159] steven willis <swillis@wellfleet.com>

    [sxw] steve waldbusser <sw01+@andrew.cmu.edu>

    [txb] tracy brown <tacox@mail.bellcore.com>

    [txk] teemu kurki <grus@funet.fi>

    [hartmut wittig]

    []

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

    reynolds & postel [page 133]

    rfc 1700 assigned numbers october 1994

    private enterprise numbers

    smi network management private enterprise codes:

    prefix: iso.org.dod.internet.private.enterprise (1.3.6.1.4.1)

    this file is

    ftp://ftp.isi.edu/…a/assignments/enterprise-numbers

    decimal name references
    ------- ---- ----------
    0 reserved joyce k. reynolds <jkrey@isi.edu>
    1 proteon john a. shriver <jas@proteon.com>
    2 ibm vik chandra <vc@ralvm6.vnet.ibm.com>
    3 cmu steve waldbusser <sw01+@andrew.cmu.edu>
    4 unix keith sklower <sklower@okeeffe.berkeley.edu>
    5 acc art berggreen <art@salt.acc.com>
    6 twg john lunny <jlunny@eco.twg.com> (703) 847-4500
    7 cayman beth miaoulis beth@cayman.com
    8 psi marty schoffstahl schoff@nisc.nyser.net
    9 cisco greg satz satz@cisco.com
    10 nsc geof stone geof@network.com
    11 hp r. dwight schettler rds%hpcndm@hplabs.hp.com
    12 epilogue karl auerbac karl@empirical.com
    13 u of tennessee jeffrey case case@utkux1.utk.edu
    14 bbn robert hinden <hinden@eng.sun.com>
    15 xylogics, inc. john r. loverso loverso@westford.ccur.com
    16 timeplex laura bridge laura@uunet.uu.net
    17 canstar sanand patel sanand@hub.toronto.edu
    18 wellfleet caralyn brown cbrown@wellfleet.com
    19 trw jay frederking jayf@blackhole.ind.trw.com
    20 mit jon rochlis jon@athena.mit.edu
    21 eon michael waters ---none---
    22 spartacus yoav kluger ykluger@hawk.ulowell.edu
    23 novell steve bostock steveb@novell.com
    24 spider systems peter reid peter@spider.co.uk
    25 nsfnet hans-werner braun hwb@mcr.umich.edu
    26 hughes lan systems keith mccloghrie kzm@hls.com
    27 intergraph guy streeter guy@guy.bll.ingr.com
    28 interlan bruce taber taber@europa.interlan.com
    29 vitalink communications
    30 ulana bill anderson wda@mitre-bedford.org
    31 nswc stephen northcutt snorthc@relay-nswc.navy.mil
    32 santa cruz operation keith reynolds keithr@sco.com
    33 xyplex bob stewart stewart@xyplex.com
    34 cray hunaid engineer hunaid@opus.cray.com
    35 bell northern research glenn waters gwaters@bnr.ca

    reynolds & postel [page 134]

    rfc 1700 assigned numbers october 1994

    36 dec ron bhanukitsiri rbhank@decvax.dec.com
    37 touch brad benson ---none---
    38 network research corp. bill versteeg bvs@ncr.com
    39 baylor college of medicine stan barber sob@bcm.tmc.edu
    40 nmfecc-llnl steven hunter hunter@ccc.mfecc.llnl.gov
    41 sri david wolfe ctabka@tsca.istc.sri.com
    42 sun microsystems dennis yaro yaro@sun.com
    43 3com jeremy siegel jzs@nsd.3com.com
    44 cmc dave preston ---none---
    45 synoptics david perkins dperkins@synoptics.com
    46 cheyenne software reijane huai sibal@csd2.nyu.edu
    47 prime computer mike spina wizard%enr.prime.com@relay.cs.net
    48 mcnc/north carolina data network ken whitfield ken@mcnc.org
    49 chipcom john cook cook@chipcom.com
    50 optical data systems josh fielk ---none---
    51 gated jeffrey c. honig jch@gated.cornell.edu
    52 cabletron systems roger dev ---none---
    53 apollo computers jeffrey buffun jbuffum@apollo.com
    54 desktalk systems, inc. david kaufman ---none---
    55 ssds ron strich ---none---
    56 castle rock computing john sancho ---none---
    57 mips computer systems charles marker ii marker@mips.com
    58 tgv, inc. ken adelman adelman@tgv.com
    59 silicon graphics, inc. ronald jacoby rj@sgi.com
    60 university of british columbia don mcwilliam mcwillm@cc.ubc.ca
    61 merit bill norton wbn@merit.edu
    62 fibercom eric rubin err@fibercom.com
    63 apple computer inc jim hayes hayes@apple.com
    64 gandalf henry kaijak ---none---
    65 dartmouth philip koch philip.koch@dartmouth.edu
    66 david systems kathryn de graaf degraaf@davidsys.com
    67 reuter bob zaniolo ---none---
    68 cornell laurie collinsworth ljc1@cornell.edu
    69 lms l. michael sabo sabo@dockmaster.ncsc.mil
    70 locus computing corp. arthur salazar lcc.arthur@seas.ucla.edu
    71 nasa steve schoch schoch@ames.arc.nasa.gov
    72 retix alex martin ---none---
    73 boeing jerry geisler ---none---
    74 at&t rich bantel rgb@mtung.att.com
    75 ungermann-bass didier moretti ---none---
    76 digital analysis corporation
    skip koppenhaver stubby!skip@uunet.uu.net
    77 lan manager doug karl karl-d@osu-20.ircc.ohio-state.edu
    78 netlabs jonathan biggar jon@netlabs.com
    79 icl jon infante ---none---
    80 auspex systems brian a. ehrmantraut bae@auspex.com
    81 lannet company efrat ramati ---none---
    82 network computing devices dave mackie lupine!djm@uunet.uu.net

    reynolds & postel [page 135]

    rfc 1700 assigned numbers october 1994

    83 raycom systems bruce willins ---none---
    84 pirelli focom ltd. sam lau ---none---
    85 datability software systems larry fischer lfischer@dss.com
    86 network application technology y.c. wang ---none---
    87 link (lokales informatik-netz karlsruhe)
    guenther schreiner snmp-admin@ira.uka.de
    88 nyu bill russell russell@cmcl2.nyu.edu
    89 rnd rina nethaniel ---none---
    90 intercon systems corporation amanda walker amanda@intercon.com
    91 coral network corporation jason perreault jason@coral.com
    92 webster computer corporation robert r. elz kre@munnari.oz.au
    93 frontier technologies corporation
    prakash ambegaonkar ---none---
    94 nokia data communications douglas egan ---none---
    95 allen-bradely company
    bill king abvax!calvin.icd.ab.com!wrk@uunet.uu.net
    96 cern
    jens t. rasmussen jenst%cernvax.cern.ch@cunyvm.cuny.edu
    97 sigma network systems, inc.
    ken virgile signet!ken@xylogics.com
    98 emerging technologies, inc.
    dennis e. baasch etinc!dennis@uu.psi.com
    99 snmp research jeffrey case case@utkux1.utk.edu
    100 ohio state university
    shamim ahmed ahmed@nisca.ircc.ohio-state.edu
    101 ultra network technologies julie dmytryk
    julie_dmytryk.mkt@usun.ultra.com
    102 microcom annmarie freitas ---none---
    103 martin marietta astronautic group david rageth dave@mmc.com
    104 micro technology mike erlinger mike@lexcel.com
    105 process software corporation bernie volz volz@process.com
    106 data general corporation
    joanna karwowska karwowska@dg-rtp.dg.com
    107 bull company anthony berent berent@rdgeng.enet.dec.com
    108 emulex corporation jeff freeman ---none---
    109 warwick university computing services
    israel drori raanan@techunix.technion.ac.il
    110 network general corporation
    james davidson ngc!james@uunet.uu.net
    111 oracle john hanley jhanley@oracle.com
    112 control data corporation nelluri l. reddy reddy@uc.msc.umn.edu
    113 hughes aircraft company keith mccloghrie kzm@hls.com
    114 synernetics, inc. jas parmar jas@synnet.com
    115 mitre bede mccall bede@mitre.org
    116 hitachi, ltd. hirotaka usuda ---none---
    117 telebit mark s. lewis mlewis@telebit.com
    118 salomon technology services paul maurer ii ---none---
    119 nec corporation yoshiyuki akiyama

    reynolds & postel [page 136]

    rfc 1700 assigned numbers october 1994

    kddlab!ccs.mt.nec.co.jp!y-akiyam@uunet.uu.net
    120 fibermux michael sung msung@ccrelay.fibermux.com
    121 ftp software inc. stev knowles stev@vax.ftp.com
    122 sony takashi hagiwara hagiwara@sm.sony.co.jp
    123 newbridge networks corporation james watt ---none---
    124 racal-milgo information systems maurice r. turcotte
    mailrus!uflorida!rm1!dnmrt%rmatl@uunet.uu.net
    125 cr systems soren h. sorensen ---none---
    126 dset corporation dan shia dset!shia@uunet.uu.net
    127 computone bill versteeg bvs@ncr.com
    128 tektronix, inc. dennis thomas dennist@tektronix.tek.com
    129 interactive systems corporation
    steve alexander stevea@i88.isc.com
    130 banyan systems inc.
    deepak taneja eepak=taneja%eng%banyan@thing.banyan.com
    131 sintrom datanet limited
    132 bell canada mark fabbi markf@gpu.utcs.utoronto.ca
    133 crosscomm corporation reuben sivan crossc!rsivan@uunet.uu.net
    134 rice university catherine foulston cathyf@rice.edu
    135 t3plus networking, inc. harley frazee harley@io.t3plus.com
    136 concurrent computer corporation
    john r. loverso loverso@westford.ccur.com
    137 basser paul o'donnell paulod@cs.su.oz.au
    138 luxcom
    139 artel jon ziegler ziegler@artel.com
    140 independence technologies, inc. (iti)
    gerard berthet gerard@indetech.com
    141 frontier software development narendra popat ---none---
    142 digital computer limited osamu fujiki ---none---
    143 eyring, inc. ron holt ron@eyring.com
    144 case communications peter kumik ---none---
    145 penril datacomm, inc. keith hogan keith%penril@uunet.uu.net
    146 american airlines bill keatley ---none---
    147 sequent computer systems scott hahn sdh@sequent.com
    148 bellcore kaj tesink kaj@nvuxr.cc.bellcore.com
    149 konkord communications ken jones konkord!ksj@uunet.uu.net
    150 university of washington
    christopher wheeler cwheeler@cac.washignton.edu
    151 develcon sheri mayhew zaphod!sherim@herald.usask.ca
    152 solarix systems paul afshar paul@solar1.portal.com
    153 unifi communications corp. yigal hochberg yigal@unifi.com
    154 roadnet dale shelton ---none---
    155 network systems corp.
    nadya k. el-afandi nadya@khara.network.com
    156 ene (european network engineering) peter cox ---none---
    157 dansk data elektronik a/s per bech hansen pbh@dde.dk
    158 morning star technologies karl fox karl@morningstar.com
    159 dupont eop oscar rodriguez ---none---

    reynolds & postel [page 137]

    rfc 1700 assigned numbers october 1994

    160 legato systems, inc. jon kepecs kepecs@legato.com
    161 motorola sps vince enriquez enriquez@sps.mot.com
    162 european space agency (esa)
    eduardo eduato%esoc.bitnet@cunyvm.cuny.edu
    163 bim bernard lemercier bl@sunbim.be
    164 rad data communications ltd. oft israel ---none---
    165 intellicom paul singh ---none---
    166 shiva corporation phil budne phil@shiva.com
    167 fujikura america debbie reed ---none---
    168 xlnt designs inc (xdi) mike anello mike@xlnt.com
    169 tandem computers rex davis ---none---
    170 bicc david a. brown fzbicdb@uk.ac.ucl
    171 d-link systems, inc. henry p. nagai ---none---
    172 amp, inc. rick downs ---none---
    173 netlink mauro zallocco ---none---
    174 c. itoh electronics larry davis ---none---
    175 sumitomo electric industries (sei)
    kent tsuno tsuno@sumitomo.com
    176 dhl systems, inc.
    david b. gurevich dgurevic@rhubarb.ssf-sys.dhl.com
    177 network equipment technologies mark tom marktom@tom.net.com
    178 aptec computer systems larry burton ssds!larryb@uunet.uu.net
    179 schneider & koch & co, datensysteme gmbh thomas ruf tom@rsp.de
    180 hill air force base russell g. wilson rwilson@oodis01.af.mil
    181 adc kentrox bruce kropp ktxc8!bruce@uunet.uu.net
    182 japan radio co. nagayuki kojima nkojima@lab.nihonmusen.co.jp
    183 versitron matt harris ---none---
    184 telecommunication systems hugh lockhart ---none---
    185 interphase gil widdowson ---none---
    186 toshiba corporation mike asagami toshiba@mothra.nts.uci.edu
    187 clearpoint research corp.
    188 ascom andrew smith andrew@hasler.ascom.ch
    189 fujitsu america chung lam ---none---
    190 netcom solutions, inc. dale cabell---none---
    191 ncr cheryl krupczak clefor@secola.columbia.ncr.com
    192 dr. materna gmbh torsten beyer tb@materna.de
    193 ericsson business communications gunnar nilsson ---none---
    194 metaphor computer systems paul rodwick ---none---
    195 patriot partners paul rodwick ---none---
    196 the software group limited (tsg)
    ragnar paulson tsgfred!ragnar@uunet.uu.net
    197 kalpana, inc. anil bhavnani ---none---
    198 university of waterloo
    r. j. white snmp-tech@watmath.waterloo.edu
    199 ccl/itri
    ming-perng chen n100cmp0%twnitri1.bitnet@cunyvm.cuny.edu
    200 coeur postel professor kynikos special consultant
    201 mitsubish cable industries, ltd. masahiko hori ---none---

    reynolds & postel [page 138]

    rfc 1700 assigned numbers october 1994

    202 smc lance sprung ---none---
    203 crescendo communication, inc. prem jain prem@cres.com
    204 goodall software engineering doug goodall goodall@crl.com
    205 intecom brad parke ---none---
    206 victoria university of wellington
    jonathan stone jonathan@isor.vuw.ac.nz
    207 allied telesis, inc.
    scott holley scott_clinton_holley@cup.portal.com
    208 dowty network systems a/s hartvig ekner hj@dowtyns.dk
    209 protools glen arp ---none---
    210 nippon telegraph and telephone corp.
    toshiharu sugawara sugawara%wink.ntt.jp@relay.cs.net
    211 fujitsu limited ippei hayashi hayashi@sysrap.cs.fujitsu.co.jp
    212 network peripherals inc. creighton chong cchong@fastnet.com
    213 netronix, inc. jacques roth ---none---
    214 university of wisconsin - madison
    dave windorski david.windorski@mail.admin.wisc.edu
    215 networth, inc. craig scott ---none---
    216 tandberg data a/s harald hoeg haho%huldra.uucp@nac.no
    217 technically elite concepts, inc.
    russell s. dietz russell_dietz@mcimail.com
    218 labtam australia pty. ltd.
    michael podhorodecki michael@labtam.oz.au
    219 republic telcom systems, inc.
    steve harris rtsc!harris@boulder.colorado.edu
    220 adi systems, inc. paul liu ---none---
    221 microwave bypass systems, inc. tad artis ---none---
    222 pyramid technology corp. richard rein rein@pyramid.com
    223 unisys_corp lawrence brow ---none---
    224 lanoptics ltd., israel
    israel drori raanan@techunix.technion.ac.il
    225 nkk corporation j. yoshida ---none---
    226 mtrade uk ltd. peter delchiappo ---none---
    227 acals patrick cheng pcheng@dill.ind.trw.com
    228 astec, inc. hiroshi fujii fujii@astec.co.jp
    229 delmarva power john k. scoggin, jr. scoggin@delmarva.com
    230 telematics international, inc. kevin smith ---none---
    231 siemens nixdorf informations syteme ag
    gunther kroenert ---none---
    232 compaq
    233 netmanage, inc. william dunn netmanage@cup.portal.com
    234 ncsu computing center david joyner david@unity.ncsu.edu
    235 empirical tools and technologies
    karl auerbach karl@empirical.com
    236 samsung group hong k. paik paik@samsung.com
    237 takaoka electric mfg. co., ltd.
    hidekazu hagiwara hagiwara@takaoka.takaoka-electric.co.jp
    238 netrix systems corporation eldon s. mast esm@netrix.com

    reynolds & postel [page 139]

    rfc 1700 assigned numbers october 1994

    239 windata bob rosenbaum ---none---
    240 rc international a/s carl h. dreyer chd@rci.dk
    241 netexp research henk boetzkes ---none---
    242 internode systems pty ltd
    simon hackett simon@ucs.adelaide.edu.au
    243 netcs informationstechnik gmbh
    oliver korfmacher okorf@bunt.netcs.com
    244 lantronix rich lyman rich@alecto.gordian.com
    245 avatar consultants
    kory hamzeh ames!avatar.com!kory@harvard.harvard.edu
    246 furukawa electoric co. ltd.
    shoji fukutomi kddlab!polo.furukawa.co.jp!fuku@uunet.uu.net
    247 aeg electrcom r. nurnberg ---none---
    248 richard hirschmann gmbh & co.
    heinz nisi mia@intsun.rus.uni-stuttgart.de
    249 g2r inc. khalid hireche ---none---
    250 university of michigan
    tim howes tim.howes@terminator.cc.umich.edu
    251 netcomm, ltd. w.r. maynard-smith ---none---
    252 sable technology corporation rodney thayer ---none---
    253 xerox edwards e. reed ipcontact.cin_ops@xerox.com
    254 conware computer consulting gmbh
    michael sapich sapich@conware.de
    255 compatible systems corp. john gawf gawf@compatible.com
    256 scitec communications systems ltd. stephen lewis ---none---
    257 transarc corporation pat barron pat_barron@transarc.com
    258 matsushita electric industrial co., ltd.
    nob mizuno mizuno@isl.mei.co.jp
    259 accton technology don rooney ---none---
    260 star-tek, inc. carl madison carl@startek.com
    261 codenoll tech. corp. dan willie ---none---
    262 formation, inc. carl marcinik ---none---
    263 seiko instruments, inc. (sii) yasuyoshi watanabe ---none---
    264 rce (reseaux de communication d'entreprise s.a.)
    etienne baudras-chardigny ---none---
    265 xenocom, inc. sean welch welch@raven.ulowell.edu
    266 kabelrheydt hubert theissen ---none---
    267 systech computer corporation
    brian petry systech!bpetry@uunet.uu.net
    268 visual brian o'shea bos@visual.com
    269 sdd (scandinavian airlines data denmark a/s)
    per futtrup ---none---
    270 zenith electronics corporation david lin ---none---
    271 telecom finland petri jokela ---none---
    272 bintec computersystems marc sheldon ms@bintec.de
    273 eunet germany marc sheldon ms@germany.eu.net
    274 picturetel corporation oliver jones oj@pictel.com
    275 michigan state university lih-er wey weyle@msu.edu

    reynolds & postel [page 140]

    rfc 1700 assigned numbers october 1994

    276 gte telecom incorporated grant gifford ---none---
    277 cascade communications corp.
    chikong shue alpo!chi@uunet.uu.net
    278 hitachi cable, ltd. takahiro asai ---none---
    279 olivetti marco framba framba@orc.olivetti.com
    280 vitacom corporation parag rastogi parag@cup.portal.com
    281 inmos graham hudspith gwh@inmos.co.uk
    282 aic systems laboratories ltd. glenn mansfield glenn@aic.co.jp
    283 cameo communications, inc. alan brind ---none---
    284 diab data ab mats lindstrom mli@diab.se
    285 olicom a/s lars povlsen krus@olicom.dk
    286 digital-kienzle computersystems hans jurgen dorr ---none---
    287 cselt(centro studi e laboratori telecomunicazioni)
    paolo coppo coppo@cz8700.cselt.stet.it
    288 electronic data systems mark holobach holobach@tis.eds.com
    289 mcdata corporation glenn levitt gpl0363@mcmail.mcdata.com
    290 harris corporation david rhein davidr@ssd.csd.harris.com
    291 technology dynamics, inc. chip standifer tdynamics@mcimail.com
    292 datahouse information systems ltd. kim le ---none---
    293 dsir network group tony van der peet srghtvp@grv.dsir.govt.nz
    294 texas instruments blair sanders blair_sanders@mcimail.com
    295 plaintree systems inc. paul chefurka chefurka@plntree.uucp
    296 hedemann software development
    stefan hedemann 100015.2504@compuserve.com
    297 fuji xerox co., ltd. hiroshi kume
    kume%kspb%fuji_xerox@tcpgw.netg.ksp.fujixerox.co.jp
    298 asante technology hsiang ming ma ---none---
    299 stanford university
    rl "bob" morgan morgan@jessica.stanford.edu
    300 digital link jimmy tu jimmy@dl.com
    301 raylan corporation mark s. lewis mlewis@telebit.com
    302 datacraft alan lloyd alan@datacraft.oz
    303 hughes keith mccloghrie kzm@hls.com
    304 farallon computing, inc. steven sweeney ---none---
    305 ge information services steve bush sfb@ncoast.org
    306 gambit computer communications zohar seigal ---none---
    307 livingston enterprises, inc.
    steve willens steve@livingston.com
    308 star technologies jim miner miner@star.com
    309 micronics computers inc. darren croke dc@micronics.com
    310 basis, inc. heidi stettner heidi@mtxinu.com
    311 microsoft john m. ballard jballard@microsoft.com
    312 us west advance technologies
    donna hopkins dmhopki@uswat.uswest.com
    313 university college london shaw c. chuang s.chuang@cs.ucl.ac.uk
    314 eastman kodak company w. james colosky wjc@tornado.kodak.com
    315 network resources corporation kathy weninger ---none---
    316 atlas telecom bruce kropp ktxc8!bruce@uunet.uu.net

    reynolds & postel [page 141]

    rfc 1700 assigned numbers october 1994

    317 bridgeway umberto vizcaino ---none---
    318 american power conversion corp.
    peter c. yoest apc!yoest@uunet.uu.net
    319 doe atmospheric radiation measurement project
    paul krystosek krystosk@eid.anl.gov
    320 versteeg codeworks bill versteeg bvs@ncr.com
    321 verilink corp bill versteeg bvs@ncr.com
    322 sybus corportation mark t. dauscher mdauscher@sybus.com
    323 tekelec bob grady ---none---
    324 nasa ames research cente nick cuccia cuccia@nas.nasa.gov
    325 simon fraser university robert urquhart quipu@sfu.ca
    326 fore systems, inc. eric cooper ecc@fore.com
    327 centrum communications, inc. vince liu ---none---
    328 next computer, inc.
    lennart lovstrand lennart_lovstrand@next.com
    329 netcore, inc. skip morton ---none---
    330 northwest digital systems brian dockter ---none---
    331 andrew corporation ted tran ---none---
    332 digiboard dror kessler dror@digibd.com
    333 computer network technology corp. bob meierhofer ---none---
    334 lotus development corp. bill flanagan bflanagan@lotus.com
    335 micom communication corporation
    donna beatty sysad@prime.micom.com
    336 ascii corporation toshiharu ohno tony-o@ascii.co.jp
    337 puredata research tony baxter tony@puredata.com
    338 ntt data yasuhiro kohata kohata@rd.nttdata.jp
    339 empros systems international david taylor dtaylor@ems.cdc.ca
    340 kendall square research (ksr) dave hudson tdh@uunet.uu.net
    341 martin marietta energy systems gary haney haneyg@ornl.gov
    342 network innovations pete grillo pl0143@mail.psi.net
    343 intel corporation brady orand borand@pcocd2.intel.com
    344 proxar ching-fa hwang cfh@proxar.com
    345 epson research center richard schneider rschneid@epson.com
    346 fibernet george sandoval ---none---
    347 box hill systems corporation tim jones tim@boxhill.com
    348 american express travel related services
    jeff carton jcarton@amex-trs.com
    349 compu-shack tomas vocetka opler%csearn.bitnet@cunyvm.cuny.edu
    350 parallan computer, inc. charles dulin ---none---
    351 stratacom clyde iwamoto cki@strata.com
    352 open networks engineering, inc. russ blaesing rrb@one.com
    353 atm forum keith mccloghrie kzm@hls.com
    354 ssd management, inc. bill rose ---none---
    355 automated network management, inc. carl vanderbeek ---none--
    356 magnalink communications corporation
    david e. kaufman ---none---
    357 til systems, ltd. garry mccracken ---none---
    358 skyline technology, inc. don weir ---none---

    reynolds & postel [page 142]

    rfc 1700 assigned numbers october 1994

    359 nu-mega technologies, inc. dirk smith ---none---
    360 morgan stanley & co. inc.
    victor kazdoba vsk@katana.is.morgan.com
    361 integrated business network michael bell ---none---
    362 l & n technologies, ltd. steve loring ---none---
    363 cincinnati bell information systems, inc.
    deron meranda dmeranda@cbis.com
    364 oscom international
    farhad fozdar f_fozdar@fennel.cc.uwa.edu.au
    365 micrognosis paul andon pandon@micrognosis.co.uk
    366 datapoint corporation lee ziegenhals lcz@sat.datapoint.com
    367 ricoh co. ltd.
    toshio watanabe watanabe@godzilla.rsc.spdd.ricoh.co.jp
    368 axis communications ab martin gren martin@axis.se
    369 pacer software wayne tackabury wft@pacersoft.com
    370 axon networks inc. robin iddon axon@cix.clink.co.uk
    371 brixton systems, inc. peter s. easton easton@brixton.com
    372 gsi etienne demailly etienne.demailly@gsi.fr
    373 tatung co., ltd.
    chih-yi chen tccism1%twnttit.bitnet@pucc.princeton.edu
    374 dis research ltd. ray compton rayc@command.com
    375 quotron systems, inc.
    richard p. stubbs richard@atd.quotron.com
    376 dassault electronique
    olivier j. caleff caleff@dassault-elec.fr
    377 corollary, inc. james l. gula gula@corollary.com
    378 seel, ltd. ken ritchie ---none---
    379 lexcel mike erlinger mike@lexcel.com
    380 sophisticated technologies, inc.
    bill parducci 70262.1267@compuserve.com
    381 ost a. pele ---none---
    382 megadata pty ltd. andrew mcrae andrew@megadata.mega.oz.au
    383 llnl livermore computer center
    dan nessett nessett@ocfmail.ocf.llnl.gov
    384 dynatech communications graham welling s8000!gcw@uunet.uu.net
    385 symplex communications corp. cyrus azar ---none---
    386 tribe computer works ken fujimoto fuji@tribe.com
    387 taligent, inc. lorenzo aguilar lorenzo@taligent.com
    388 symbol technologies, inc.
    john kramer +1-408-369-2679 jkramer@psd.symbol.com
    389 lancert mark hankin ---none---
    390 alantec paul v. fries pvf@alantec.com
    391 ridgeback solutions
    errol ginsberg bacchus!zulu!errol@uu2.psi.com
    392 metrix, inc. d. venkatrangan venkat@metrix.com
    393 excutive systems/xtree company
    dale cabell cabell@smtp.xtree.com
    394 nrl communication systems branch

    reynolds & postel [page 143]

    rfc 1700 assigned numbers october 1994

    r. k. nair nair@itd.nrl.navy.mil
    395 i.d.e. corporation rob spade ---none---
    396 matsushita electric works, ltd.
    claude huss claude@trc.mew.mei.co.jp
    397 megapac ian george ---none---
    398 pilkington communication systems dave atkinson ---none---
    399 hitachi computer products (america), inc.
    masha golosovker masha@hicomb.hi.com
    400 meteo france remy giraud remy.giraud@meteo.fr
    401 prc inc. jim noble noble_jim@prc.com
    402 wal*mart stores, inc. mike fitzgerel mlfitzg@wal-mart.com
    403 nissin electric company, ltd. aki komatsuzaki (408) 737-0274
    404 distributed support information standard
    mike migliano <mike@uwm.edu>
    405 smds interest group (sig)
    elysia c. tan <ecmt1@sword.bellcore.com>
    406 solcom systems ltd. hugh evans 0506 873855
    407 bell atlantic colin desa socrates!bm5ld15@bagout.bell-atl.com
    408 advanced multiuser technologies corporation
    409 mitsubishi electric corporation
    yoshitaka ogawa <ogawa@nkai.cow.melco.co.jp>
    410 c.o.l. systems, inc. frank castellucci (914) 277-4312
    411 university of auckland
    nevil brownlee < n.brownlee@aukuni.ac.nz>
    412 desktop management task force (dmtf)
    dave perkins <dperkins@synoptics.com>
    413 klever computers, inc. tom su 408-735-7723 kci@netcom.com
    414 amdahl corporation steve young sy@uts.admahl.com
    415 jtec pty, ltd. jan bartel (02) 809 6933
    416 matra communcation hong-loc nguyen (33.1) 34.60.85.25
    417 hal computer systems michael a. petonic petonic@hal.com
    418 lawrence berkeley laboratory russ wright wright@lbl.gov
    419 dale computer corporation dean craven 1-800-336-7483
    420 iptc, universitaet of tuebingen
    andreas j. haug <ahaug@mailserv.zdv.uni-tuebingen.de>
    421 bytex corporation
    mary ann burt <bytex!ws054!maryann@uunet.uu.net>
    422 cogwheel, inc. brian ellis bri@cogwheel.com
    423 lanwan technologies thomas liu (408) 986-8899
    424 thomas-conrad corporation karen boyd 512-836-1935
    425 txport bill versteeg bvs@ver.com
    426 compex, inc. andrew corlett bda@orion.oac.uci.edu
    427 evergreen systems, inc. bill grace (415) 897-8888
    428 hnv, inc. james r. simons jrs@denver.ssds.com
    429 u.s. robotics, inc. chris rozman chrisr@usr.com
    430 canada post corporation walter brown +1 613 722-8843
    431 open systems solutions, inc. david ko davidk@ossi.com
    432 toronto stock exchange paul kwan (416) 947-4284

    reynolds & postel [page 144]

    rfc 1700 assigned numbers october 1994

    433 mamakostranssys consulting
    louis a. mamakos louie@transsys.com
    434 eicon vartan narikian vartan@eicon.qc.ca
    435 jupiter systems russell leefer rml@jupiter.com
    436 ssti philip calas (33) 61 44 19 51
    437 grand junction networks randy ryals randyr@grandjunction.com
    438 anasazi, inc. chad larson (chad@anasazi.com)
    439 edward d. jones and company john caruso (314) 851-3422
    440 amnet, inc. richard mak mak@amnet.com
    441 chase research kevin gage ---none---
    442 peer networks randy presuhn randy@peer.com
    443 gateway communications, inc. ed fudurich ---none---
    444 peregrine systems eric olinger eric@peregrine.com
    445 daewoo telecom seeyoung oh oco@scorpio.dwt.co.kr
    446 norwegian telecom research paul hoff paalh@brage.nta.no
    447 wiltel anil prasad anil_prasad@wiltel.com
    448 ericsson-camtec satish popat ---none---
    449 codex thomas mcginty ---none---
    450 basis heidi stettner heidi@mtxinu.com
    451 age logic syd logan syd@age.com
    452 inde electronics gordon day gday@inde.ubc.ca
    453 isode consortium steve kille s.kille@isode.com
    454 j.i. case mike oswald mike@helios.uwsp.edu
    455 trillium jeff lawrence j_lawrence@trillium.com
    456 bacchus inc. errol ginsberg bacchus!zulu!errol@uu2.psi.com
    457 mcc doug rosenthal rosenthal@mcc.com
    458 stratus computer dave snay dks@sw.stratus.com
    459 quotron richard p. stubbs richard@atd.quotron.com
    460 beame & whiteside carl beame beame@ns.bws.com
    461 cellular technical services greg hummel ---none---
    462 shore microsystems, inc. gordon elam (309) 229-3009
    463 telecommunications techniques corp. tom nisbet nisbet@tt.com
    464 dnpap (technical university delft)
    jan van oorschot <bjan.voorschot@dnpap.et.tudelft.nl>
    465 plexcom, inc. bruce miller (805) 522-3333
    466 tylink stavros mohlulis (508) 285-0033
    467 brookhaven national laboratory
    dave stampf drs@bach.ccd.bnl.gov
    468 computer communication systems
    gerard laborde <gerard.laborde@sp1.y-net.fr>
    469 norand corp. rose gorrell 319-269-3100
    470 mux-lap philippe labrosse 514-735-2741
    471 premisys communications, inc
    mike macfaden <premisys!mike@fernwood.mpk.ca.us>
    472 bell south telecommunications johnny walker 205-988-7105
    473 j. stainsbury plc steve parker 44-71-921-7550
    474 ki research inc toni barckley 410-290-0355x220
    475 wandel and goltermann technologies

    reynolds & postel [page 145]

    rfc 1700 assigned numbers october 1994

    david walters 919-941-5730x4203 <walter@wg.com>
    476 emerson computer power
    roger draper 714-457-3638 rdraper@cerf.net
    477 network software associates jeffery chiao 714-768-4013
    478 procter and gamble peter marshall 513-983-1100x5988
    479 meridian technology corporation
    kenneth b. denson <kdenson@magic.meridiantc.com>
    480 qms, inc. bill lott lott@imagen.com
    481 network express tom jarema 313-761-5051 itoh@msen.com
    482 lancity corporation pam yassini pam@lancity.com
    483 dayna communications, inc.
    sanchaita datta datta@signus.utah.edu
    484 kn-x ltd. sam lau 44 943 467007
    485 sync research, inc. alan bartky (714) 588-2070
    486 premnet ken huang huangk@rimail.interlan.com
    487 siac peter ripp (212) 383-9061
    488 new york stock exchange peter ripp (212) 383-9061
    489 american stock exchange peter ripp (212) 383-9061
    490 fcr software, inc. brad parker brad@fcr.com
    491 national medical care, inc. robert phelan (617) 466-9850
    492 dialogue communication systemes, s.a.
    klaus handke +(49) 30 802 24 97
    493 nortele bjorn kvile +47 2 48 89 90
    494 madge networks, inc.
    duncan greatwood dgreatwo@madge.mhs.compuserve.com
    495 memotec communications graham higgins ghiggins@teleglobe.com
    496 cton nick hennenfent nicholas@cton.com
    497 leap technology, inc. george economou george@leap.com
    498 general datacomm, inc. william meltzer meltzer@gdc.com
    499 ace communications, ltd. danny on 972-3-570-1423
    500 automatic data processing (adp) alex rosin (201) 714-3982
    501 programa spritel alberto martinez
    martinez_alberto_spritel@euskom.spritel.es
    502 adacom aial haorch 972-4-899-899
    503 metrodata ltd nick brown 100022.767@compuserve.com
    504 ellemtel telecommunication systems laboratories
    richard g bruvik richard.bruvik@eua.ericsson.se
    505 arizona public service duane booher dbooher@apsc.com
    506 netwiz, ltd., emanuel wind eumzvir@techunix.technion.ac.il
    507 science and engineering research council (serc) paul kummer
    p.kummer@daresbury.ac.uk
    508 the first boston corporation kevin chou
    csfb1!dbadmin4!kchou@uunet.uu.net
    509 hadax electronics inc. marian kramarczyk
    73477.2731@compuserve.com
    510 vtkk markku lamminluoto lamminluoto@vtkes1.vtkk.fi
    511 north hills israel ltd. carmi cohen carmi@north.hellnet.org
    512 tecsiel r. burlon sr@teculx.tecsiel.it

    reynolds & postel [page 146]

    rfc 1700 assigned numbers october 1994

    513 bayerische motoren werke (bmw) ag michael connolly
    mconnolly@net.bmw.de
    514 cnet technologies nelson su 408-954-8000
    515 mci kurt robohm krobohm@mcimail.com
    516 human engineering ag (heag) urs brunner
    ubrunner@clients.switch.ch
    517 filenet corporation joe raby raby@filenet.com
    518 nft-ericsson kjetil donasen +47 2 84 24 00
    519 dun & bradstreet vic smagovic 908-464-2079
    520 intercomputer communications brian kean 513-745-0500x244
    521 defense intelligence agency
    barry atkinson dia-dms@ddn-conus.ddn.mil
    522 telesystems slw inc. joe magony 416-441-9966
    523 apt communications david kloper 301-831-1182
    524 delta airlines jim guy 404-715-2948
    525 california microwave kevin braun 408-720-6520
    526 avid technology inc steve olynyk 508-640-3328
    527 integro advanced computer systems
    pascal turbiez +33-20-08-00-40
    528 rpti chris shin 886-2-918-3006
    529 ascend communications inc. marc hyman 510-769-6001
    530 eden computer systems inc. louis brando 305-591-7752
    531 kawasaki-steel corp
    tomoo watanabe nrd@info.kawasaki-steel.co.jp
    532 barclays malcolm houghton +44 202 671 212
    533 b.u.g., inc. isao tateishi tateishi@bug.co.jp
    534 exide electronics brian hammill hamill@dolphin.exide.com
    535 superconducting supercollider lab.
    carl w. kalbfleisch cwk@irrational.ssc.gov
    536 triticom jim bales (612) 937-0772
    537 universal instruments corp.
    tom dinnel ba06791%bingvaxa.bitnet@cunyvm.cuny.edu
    538 information resources, inc. jeff gear jjg@infores.com
    539 applied innovation, inc. dean dayton dean@aicorp.cmhnet.org
    540 crypto ag roland luthi luthi@iis.ethz.ch
    541 infinite networks, ltd. sean harding +44 923 710 277
    542 rabbit software bill kwan kwan@rabbit.com
    543 apertus technologies stuart stanley stuarts@apertus.com
    544 equinox systems, inc. monty norwood 1-800-275-3500 x293
    545 hayes microcomputer products
    chris roussel hayes!hayes.com!croussel@uunet.uu.net
    546 empire technologies inc. cheryl krupczak cheryl@cc.gatech.edu
    547 glaxochem, ltd. andy wilson 0229 52261547
    548 kpy network partners, corp.
    gordon vickers sccs@pizza.netcom.com
    549 agent technology, inc. ibi dhilla idhilla@genesis.nred.ma.us
    550 dornier gmbh arens heinrech 49-7545-8 ext 9337
    551 telxon corporation frank ciotti frankc@teleng.telxon.com

    reynolds & postel [page 147]

    rfc 1700 assigned numbers october 1994

    552 entergy corporation louis cureau 504-364-7630
    553 garrett communications inc. igor khasin (408) 980-9752
    554 agile networks, inc. dave donegan ddonegan@agile.com
    555 larscom sameer jayakar 415-969-7572
    556 stock equipment karl klebenow 216-543-6000
    557 itt corporation kevin m. mccauley kmm@vaxf.acdnj.itt.com
    558 universal data systems, inc.
    howard cunningham 70400.3671@compuserve.com
    559 sonix communications, ltd. david webster +44 285 641 651
    560 paul freeman associates, inc.
    pete wilson pwilson@world.std.com
    561 john s. barnes, corp. michael lynch 704-878-4107
    562 northern telecom, ltd.
    glenn waters 613-763-3933 <gwaters@bnr.ca>
    563 cap debris patrick preuss ppr@lfs.hamburg.cap-debris.de
    564 telco systems nac harry hirani harry@telco-nac.com
    565 tosco refining co fred sanderson 510-602-4358
    566 russell info sys atul desai 714-362-4040
    567 university of salford richard letts r.j.letts@salford.ac.uk
    568 netquest corp. jerry jacobus netquest@tigger.jvnc.net
    569 armon networking ltd. yigal jacoby yigal@armon.hellnet.org
    570 ia corporation didier fort didier.fort@lia.com
    571 au-system communicaton ab torbjorn ryding 8-7267572
    572 goldstar information & communications, ltd.
    soo n. kim ksn@giconet.gsic.co.kr
    573 sectra ab tommy pedersen tcp@sectra.se
    574 oneac corporation bill elliot oneacwre@aol.com
    575 tree technologies michael demjanenko (716) 688-4640
    576 gte government systems henry hernandez (617) 455-2942
    577 denmac systems, inc. andy denenberg (708) 291-7760
    578 interlink computer sciences, inc.
    mike mazurek mfm@interlink.com
    579 bridge information systems, inc. stephen harvey (314) 567-8482
    580 leeds and northrup australia (lna) nigel cook nigelc@lna.oz.au
    581 bha computer david hislop rob@bha.oz.au
    582 newport systems solutions, inc.
    pauline chen paulinec@netcom.com
    583 atrium technologies narender reddy vangati vnr@atrium.com
    584 robotiker maribel narganes maribel@teletek.es
    585 peerlogic inc. ratinder ahuja ratinder@peerlogic.com
    586 digital transmittion systems bill versteeg bvs@ver.com
    587 far point communications bill versteeg bvs@ver.com
    588 xircom bill versteeg bvs@ver.com
    589 mead data central stephanie bowman steph@meaddata.com
    590 royal bank of canada n. lim (416) 348-5197
    591 advantis, inc. janet brehm 813 878-4298
    592 chemical banking corp. paul mcdonnell pmcdonnl@world.std.com
    593 eagle technology ted haynes (408) 441-4043

    reynolds & postel [page 148]

    rfc 1700 assigned numbers october 1994

    594 british telecom ray smyth rsmyth@bfsec.bt.co.uk
    595 radix bv p. groenendaal project2@radix.nl
    596 tainet communication system corp.
    joseph chen +886-2-6583000 (r.o.c.)
    597 comtek services inc. steve harris (703) 506-9556
    598 fair issac steve pasadis apple.com!fico!sxp (415) 472-2211
    599 ast research inc. bob beard bobb@ast.com
    600 soft*star s.r.l. ing. enrico badella softstar@pol88a.polito.it
    601 bancomm joe fontes jwf@bancomm.com
    602 trusted information systems, inc.
    james m. galvin galvin@tis.com
    603 harris & jeffries, inc. deepak shahane hjinc@cerf.net
    604 axel technology corp. henry ngai (714) 455-1688
    605 gn navtel, inc. joe magony 416-479-8090
    606 cap debis patrick preuss +49 40 527 28 366
    607 lachman technology, inc. steve alexander stevea@lachman.com
    608 galcom networking ltd.
    zeev greenblatt galnet@vax.trendline.co.il
    609 bazis m. van luijt martin@bazis.nl
    610 synaptel eric remond remond@synaptel.fr
    611 investment management services, inc.
    j. laurens troost rens@stimpys.imsi.com
    612 taiwan telecommunication lab
    dennis tseng louis%twnmoctl.bitnet@pucc.princeton.edu
    613 anagram corporation michael demjanenko (716) 688-4640
    614 univel john nunneley jnunnele@univel.com
    615 university of california, san diego
    arthur bierer abierer@ucsd.edu
    616 compuserve ed isaacs, brian biggs sysadm@csi.compuserve.com
    617 telstra - otc australia
    peter hanselmann peterhan@turin.research.otc.com.au
    618 westinghouse electric corp.
    ananth kupanna ananth@access.digex.com
    619 dga ltd. tom l. willis twillis@pintu.demon.co.uk
    620 elegant communications inc.
    robert story robert.story@elegant.com
    621 experdata claude lubin clubin@expdat.gna.org
    622 unisource business networks sweden ab
    goran sterner gsr@tip.net
    623 molex, inc. steven joffe molex@mcimail.com
    624 quay financial software mick fleming mickf@quay.ie
    625 vmx inc. joga ryali joga@vmxi.cerfnet.com
    626 hypercom, inc. noor chowdhury (602) 548-2113
    627 university of guelph kent percival percival@ccs.uoguelph.ca
    628 dialogika juergen jungfleisch 0 68 97 9 35-0
    629 nbase switch communication
    sergiu rotenstein 75250.1477@compuserve.com
    630 anchor datacomm b.v. erik snoek sdrierik@diamond.sara.nl

    reynolds & postel [page 149]

    rfc 1700 assigned numbers october 1994

    631 pacdata john reed johnr@hagar.pacdata.com
    632 university of colorado evi nemeth evi@cs.colorado.edu
    633 tricom communications limited
    robert barrett 0005114429@mcimail.com
    634 santix software gmbh
    michael santifaller santi%mozart@santix.guug.de
    635 fastcomm communications corp.
    bill flanagan 70632.1446@compuserve.com
    636 the georgia institute of technology
    michael mealling michael.mealling@oit.gatech.edu
    637 alcatel data networks
    douglas e. johnson doug.e.johnson@adn.sprint.com
    638 gtech brian ruptash bar@gtech.com
    639 unocal corporation peter ho ho@unocal.com
    640 first pacific network randy hamilton 408-703-2763
    641 lexmark international don wright don@lexmark.com
    642 qnix computer sang weon, yoo swyoo@qns.qnix.co.kr
    643 jigsaw software concepts (pty) ltd.
    willem van biljon wvb@itu2.sun.ac.za
    644 vir, inc. mark cotton (215) 364-7955
    645 sfa datacomm inc. don lechthaler lech@world.std.com
    646 seiko telecommunication systems, inc.
    lyn t. robertson (503) 526-5638
    647 unified management andy barnhouse (612) 561-4944
    648 radlinx ltd. ady lifshes ady%rndi@uunet.uu.net
    649 microplex systems ltd. henry lee hyl@microplex.com
    650 objecta elektronik & data ab johan finnved jf@objecta.se
    651 phoenix microsystems bill versteeg bvs@ver.com
    652 distributed systems international, inc.
    ron mackey rem@dsiinc.com
    653 evolving systems, inc. judith c. bettinger judy@evolving.com
    654 sat gmbh walter eichelburg 100063.74@compuserve.com
    655 celan technology, inc. mark liu 886--35-772780
    656 landmark systems corp.
    steve sonnenberg steves@socrates.umd.edu
    657 netone systems co., ltd.
    yongkui shao syk@new-news.netone.co.jp
    658 loral data systems jeff price jprice@cps070.lds.loral.com
    659 cellware broadband technology michael roth mike@cellware.de
    660 mu-systems gaylord miyata miyata@world.std.com
    661 imc networks corp. jerry roby (714) 724-1070
    662 octel communications corp. alan newman (408) 321-5182
    663 rit technologies ltd. ghiora drori drori@dcl.hellnet.org
    664 adtran jeff wells 205-971-8000
    665 powerplay technologies, inc. ray caruso rayman@csn.org
    666 oki electric industry co., ltd.
    shigeru urushibara uru@cs1.cs.oki.co.jp
    667 specialix international jeremy rolls jeremyr@specialix.co.uk
  • reynolds & postel [page 150]

    rfc 1700 assigned numbers october 1994

    668 inesc (instituto de engenharia de sistemas e computadores)
    pedro ramalho carlos prc@inesc.pt
    669 globalnet communications real barriere (514) 651-6164
    670 product line engineer svec computer corp.
    rich huang msumgr@enya.cc.fcu.edu.tw
    671 printer systems corp. bill babson bill@prsys.com
    672 contec micro electronics usa david sheih (408) 434-6767
    673 unix integration services chris howard chris@uis.com
    674 dell computer corporation steven blair sblair@dell.com
    675 whittaker electronic systems michael mccune mccune@cerf.net
    676 qpsx communications david pascoe davidp@qpsx.oz.au
    677 loral wdl mike aronson mike_aronson@msgate.wdl.loral.com
    678 federal express corp. randy hale (901) 369-2152
    679 e-comms inc. harvey teale (206) 857-3399
    680 software clearing house tom caris ca@sch.com
    681 antlow computers ltd. c. r. bates 44-635-871829
    682 emcom corp. mike swartz emcom@cerf.net
    683 extended systems, inc.
    al youngwerth alberty@tommy.extendsys.com
    684 sola electric mike paulsen (708) 439-2800
    685 esix systems, inc. anthony chung esix@esix.tony.com
    686 3m/mmm chris amley ccamley@mmm.com
    687 cylink corp. ed chou ed@cylink.com
    688 znyx advanced systems division, inc.
    alan deikman aland@netcom.com
    689 texaco, inc. jeff lin linj@texaco.com
    690 mccaw cellular communication corp. tri phan tri.phan@mccaw.com
    691 asp computer product inc. elise moss 71053.1066@compuserve.com
    692 hiperformance systems mike brien +27-11-806-1000
    693 regionales rechenzentrum
    sibylle schweizer unrz54@daphne.rrze.uni-erlangen.de
    694 sap ag dr. uwe hommel +49 62 27 34 0
    695 electrospace system inc.
    dr. joseph cleveland e03353@esitx.esi.org
    696 ( unassigned )
    697 multiport software reuben sivan 72302.3262@compuserve.com
    698 combinet, inc. samir sawhney samir@combinet.com
    699 tscc carl wist carlw@tscc.com
    700 teleos communications inc. bill nayavich wln@teleoscom.com
    701 alta research amy saperstein (305) 428-8535
    702 independence blue cross bill eshbach esh@ibx.com
    703 adacom station interconnectivity ltd.
    itay kariv +9 72 48 99 89 9
    704 miror systems frank kloes +27 12 911 0003
    705 merlin gerin adam stolinski (714) 557-1637 x249
    706 owen-corning fiberglas tom mann mann.td@ocf.compuserve.com
    707 talking networks inc. terry braun tab@lwt.mtxinu.com
    708 cubix corporation rebekah marshall (702) 883-7611

    reynolds & postel [page 151]

    rfc 1700 assigned numbers october 1994

    709 formation inc. bob millis bobm@formail.formation.com
    710 lannair ltd. pablo brenner pablo@lannet.com
    711 lightstream corp. chris chiotasso chris@lightstream.com
    712 lanart corp. doron i. gartner doron@lanart.com
    713 university of stellenbosch graham phillips phil@cs.sun.ac.za
    714 wyse technology bill rainey bill@wyse.com
    715 dsc communications corp. colm bergin cbergin@cpdsc.com
    716 netec thomas krichel netec@uts.mcc.ac.uk
    717 breltenbach software engineering hilmar tuneke +02 92 49 70 00
    718 victor company of japan,limited
    atsushi sakamoto 101176.2703@compuserve.com
    719 japan direx corporation teruo tomiyama +81 3 3498 5050
    720 necsy network control systems s.p.a. piero fiozzo fip@necsy.it
    721 isdn systems corp. jeff milloy p00633@psilink.com
    722 zero-one technologies, ltd. curt chen + 88 62 56 52 32 33
    723 radix technologies, inc. steve giles giless@delphi.com
    724 national institute of standards and technology
    jim west west@mgmt3.ncsl.nist.gov
    725 digital technology inc. chris gianattasio gto@lanhawk.com
    726 castelle corp. waiming mok wmm@castelle.com
    727 presticom inc. martin dube 76270.2672@compuserve.com
    728 showa electric wire & cable co., ltd.
    robert o'grady kfn@tanuki.twics.co.jp
    729 spectragraphics jack hinkle hinkle@spectra.com
    730 connectware inc. rick downs rxd4@acsysinc.com
    731 wind river systems emily hipp hipp@wrs.com
    732 radway international ltd. doron kolton 0005367977@mcimail.com
    733 system management arts, inc. alexander dupuy dupuy@smarts.com
    734 persoft, inc. steven m. entine entine@pervax.persoft.com
    735 xnet technology inc. esther chung estchung@xnet-tech.com
    736 unison-tymlabs dean andrews ada@unison.com
    737 micro-matic research patrick lemli 73677.2373@compuserve.com
    738 b.a.t.m. advance technologies
    nahum killim bcrystal@actcom.co.il
    739 university of copenhagen kim h|glund shotokan@diku.dk
    740 network security systems, inc.
    carleton smith rpitt@nic.cerf.net
    741 jna telecommunications sean cody seanc@jna.com.au
    742 encore computer corporation tony shafer tshafer@encore.com
    743 central intelligent agency carol jobusch 703 242-2485
    744 isc (gb) limited mike townsend miket@cix.compulink.co.uk
    745 digital communication associates ravi shankar shankarr@dca.com
    746 cybermedia inc. unni warrier unni@cs.ucla.edu
    747 distributed systems international, inc.
    ron mackey rem@dsiinc.com
    748 peter radig edp-consulting peter radig +49 69 9757 6100
    749 vicorp interactive systems phil romine phil@vis.com
    750 inet inc. bennie lopez brl@inetinc.com

    reynolds & postel [page 152]

    rfc 1700 assigned numbers october 1994

    751 argonne national laboratory michael shaffer mashaffer@anl.gov
    752 tek logix peter palsall 905 625-4121
    753 north western university phil draughon jpd@nwu.edu
    754 astarte fiber networks james garnett garnett@catbelly.com
    755 diederich & associates, inc.
    douglas capitano dlcapitano@delphi.com
    756 florida power corporation bob england rengland@fpc.com
    757 ask/ingres howard dernehl howard@ingres.com
    758 open network enterprise spada stefano +39 39 245-8101
    759 the home depot keith porter ktp01@homedepot.com
    760 pan dacom telekommunikations jens andresen +49 40 644 09 71
    761 nettek steve kennedy steve@gbnet.com
    762 karlnet corp. doug kall kbridge@osu.edu
    763 efficient networks, inc. thirl johnson (214) 991-3884
    764 fiberdata jan fernquist +46 828 8383
    765 lanser emil smilovici (514) 485-7104
    766 telebit communications a/s peder chr. norgaard pcn@tbit.dk
    767 hilan gmbh markus pestinger markus@lahar.ka.sub.org
    768 network computing inc.
    fredrik noon fnoon@ncimail.mhs.compuserve.com
    769 walgreens company denis renaud (708) 818-4662
    770 internet initiative japan inc. toshiharu ohno tony-o@iij.ad.jp
    771 gp van niekerk ondernemings
    gerrit van niekerk gvanniek@dos-lan.cs.up.ac.za
    772 dsp & telecoms research group
    patrick mcgleenon p.mcgleenon@ee.queens-belfast.ac.uk
    773 securities industry automation corporation
    chiu szeto cszeto@prism.poly.edu
    774 synaptics david gray david@synaptics.ie
    775 data switch corporation joe welfeld jwelfeld@dasw.com
    776 telindus distribution karel van den bogaert kava@telindus.be
    777 maxm systems corporation gary greathouse ggreathouse@maxm.com
    778 fraunhofer gesellschaft
    jan gottschick jan.gottschick@isst.fhg.de
    779 eqs business services ken roberts kroberts@esq.com
    780 cnet technology inc. repus hsiung idps17@shts.seed.net.tw
    781 datentechnik gmbh thomas pischinger +43 1 50100 266
    782 network solutions inc. dave putman davep@netsol.com
    783 viaman software vikram duvvoori info@viman.com
    784 schweizerische bankgesellschaft zuerich
    roland bernet roland.bernet@zh014.ubs.ubs.ch
    785 university of twente - tios aiko pras pras@cs.utwente.nl
    786 simplesoft inc. sudhir pendse sudhir@netcom.com
    787 stony brook, inc. ken packert p01006@psilink.com
    788 unified systems solutions, inc.
    steven morgenthal smorgenthal@attmail.com
    789 network appliance corporation
    varun mehta varun@butch.netapp.com

    reynolds & postel [page 153]

    rfc 1700 assigned numbers october 1994

    790 ornet data communication technologies ltd.
    haim kurz haim@ornet.co.il
    791 computer associates international
    glenn gianino giagl01@usildaca.cai.com
    792 multipoint network inc. michael nguyen mike@multipoint.com
    793 nynex science & technology lily lau llau@nynexst.com
    794 commercial link systems wiljo heinen wiljo@freeside.cls.de
    795 adaptec inc. tom battle tab@lwt.mtxinu.com
    796 softswitch charles springer cjs@ssw.com
    797 link technologies, inc. roy chu royc@wyse.com
    798 iis olry rappaport iishaifa@attmail.com
    799 mobile solutions inc. dale shelton dshelton@srg.srg.af.mil
    800 xylan corp. burt cyr burt@xylan.com
    801 airtech software forge limited
    callum paterson tsf@cix.compulink.co.uk
    802 national semiconductor maurice turcotte mturc@atlanta.nsc.com
    803 video lottery technologies angelo lovisa ange@awd.cdc.com
    804 national semiconductor corp waychi doo wcd@berlioz.nsc.com
    805 applications management corp
    terril (terry) steichen tjs@washington.ssds.com
    806 travelers insurance company eric miner ustrv67v@ibmmail.com
    807 taiwan international standard electronics ltd.
    b. j. chen bjchen@taisel.com.tw
    808 us patent and trademark office rick randall randall@uspto.gov
    809 hynet, ltd. amir fuhrmann amf@teleop.co.il
    810 aydin, corp. rick veher (215) 657-8600
    811 addtron technology co., ltd. tommy tasi +8 86-2-4514507
    812 fannie mae david king s4ujdk@fnma.com
    813 multinet services hubert martens martens@multinet.de
    814 gecko mbh holger dopp hdo@gecko.de
    815 memorex telex mike hill hill@raleng.mtc.com
    816 advanced communications networks (acn) sa
    antoine boss +41 38 247434
    817 telekurs ag jeremy brookfield bkj@iris.f2.telekurs.ch
    818 victron bv jack stiekema jack@victron.nl
    819 cf6 company francois caron +331 4696 0060
    820 walker richer and quinn inc.
    rebecca higgins rebecca@elmer.wrq.com
    821 saturn systems paul parker paul_parker@parker.fac.cs.cmu.edu
    822 mitsui marine and fire insurance co. ltd.
    kijuro ikeda +813 5389 8111
    823 loop telecommunication international, inc.
    charng-show li +886 35 787 696
    824 telenex corporation james krug (609) 866-1100
    825 bus-tech, inc. charlie zhang chun@eecs.cory.berkley.edu
    826 atrie fred b.r. tuang cmp@fddi3.ccl.itri.org.tw
    827 gallagher & robertson a/s arild braathen arild@gar.no
    828 networks northwest, inc. john j. hansen jhansen@networksnw.com

    reynolds & postel [page 154]

    rfc 1700 assigned numbers october 1994

    829 conner peripherials richard boyd rboyd@mailserver.conner.com
    830 elf antar france p. noblanc +33 1 47 44 45 46
    831 lloyd internetworking glenn mcgregor glenn@lloyd.com
    832 datatec industries, inc. chris wiener cwiener@datatec.com
    833 taicom scott tseng cmp@fddi3.ccl.itri.org.tw
    834 brown's operating system services ltd.
    alistair bell alistair@ichthya.demon.co.uk
    835 milan technology corp. gopal hegde gopal@milan.com
    836 netedge systems, inc. dave minnich dave_minnich@netedge.com
    837 netframe systems george mathew george_mathew@netframe.com
    838 xedia corporation colin kincaid colin%madway.uucp@dmc.com
    839 pepsi niraj katwala niraj@netcom.com
    840 tricord systems, inc. mark dillon mdillon@tricord.mn.org
    841 proxim inc. russ reynolds proxim@netcom.com
    842 applications plus, inc. joel estes joele@hp827.applus.com
    843 pacific bell aijaz asif saasif@srv.pacbell.com
    844 supernet sharon barkai sharon@supernet.com
    845 tps-teleprocessing systems manfred gorr gorr@tpscad.tps.de
    846 technology solutions company niraj katwala niraj@netcom.com
    847 computer site technologies tim hayes (805) 967-3494
    848 netport software john bartas jbartas@sunlight.com
    849 alon systems menachem szus 70571.1350@compuserve.com
    850 tripp lite lawren markle 72170.460@compuserve.com
    851 netcomm limited
    paul ripamonti paulri@msmail.netcomm.pronet.com
    852 precision systems, inc. (psi)
    fred griffin cheryl@empiretech.com
    853 objective systems integrators ed reeder ed.reeder@osi.com
    854 simpact associates inc.
    robert patterson bpatterson@dcs.simpact.com
    855 systems enhancement corporation
    steve held 71165.2156@compuserve.com
    856 information integration, inc. gina sun iiii@netcom.com
    857 cetrel s.c. louis reinard ssc-re@cetrel.lu
    858 viatech development
    theodore j. collins iii ted.collins@vtdev.mn.org
    859 olivetti north america tom purcell tomp@mail.spk.olivetti.com
    860 wilma nikolaus schaller hns@ldv.e-technik.tu-muenchen.de
    861 ilx systems inc. peter mezey peterm@ilx.com
    862 total peripherals inc. mark ustik (508) 393-1777
    863 sunnetworks consultant john brady jbrady@fedeast.east.sun.com
    864 arkhon technologies, inc. joe wang rkhon@nic.cerf.net
    865 computer sciences corporation
    george m. dands dands@sed.csc.com
    866 philips.trt thibault muchery +33 14128 7000
    867 katron technologies inc. robert kao +88 627 991 064
    868 transition engineering inc.
    hemant trivedi hemant@transition.com

    reynolds & postel [page 155]

    rfc 1700 assigned numbers october 1994

    869 altos engineering applications, inc.
    wes weber or dave erhart altoseng@netcom.com
    870 nicecom ltd. arik ramon arik@nicecom.nice.com
    871 fiskars/deltec carl smith (619) 291-2973
    872 avm gmbh andreas stockmeier stocki@avm-berlin.de
    873 comm vision richard havens (408) 923 0301 x22
    874 institute for information industry
    peter pan peterpan@pdd.iii.org.tw
    875 legent corporation gary strohm gstrohm@legent.com
    876 network automation doug jackson +64 6 285 1711
    877 nettech marshall sprague marshall@nettech.com
    878 coman data communications ltd.
    zvi sasson coman@nms.cc.huji.ac.il
    879 skattedirektoratet karl olav wroldsen +47 2207 7162
    880 client-server technologies timo metsaportti timo@itf.fi
    881 societe internationale de telecommunications aeronautiques
    chuck noren chuck.noren@es.atl.sita.int
    882 maximum strategy inc. paul stolle pstolle@maxstrat.com
    883 integrated systems, inc. michael zheng mz@isi.com
    884 e-systems, melpar rick silton rsilton@melpar.esys.com
    885 reliance comm/tec mark scott 73422.1740@compuserve.com
    886 summa four inc. paul nelson (603) 625-4050
    887 j & l information systems rex jackson (818) 709-1778
    888 forest computer inc. dave black dave@forest.com
    889 palindrome corp. jim gast jgast@palindro.mhs.compuserve.com
    890 zyxel communications corp. harry chou howie@csie.nctu.edu.tw
    891 network managers (uk) ltd, mark d dooley mark@netmgrs.co.uk
    892 sensible office systems inc. pat townsend (712) 276-0034
    893 informix software anthony daniel anthony@informix.com
    894 dynatek communications howard linton (703) 490-7205
    895 versalynx corp. dave fisler (619) 536-8023
    896 potomac scheduling communications company
    david labovitz del@access.digex.net
    897 sybase inc. dave meldrum meldrum@sybase.com
    898 divicom inc. eyal opher eyal@divi.com
    899 datus elektronische informationssysteme gmbh
    hubert mertens marcus@datus.uucp
    900 matrox electronic systems limited
    marc-andre joyal marc-andre.joyal@matrox.com
    901 digital products, inc. ross dreyer rdreyer@digprod.com
    902 scitex corp. ltd. yoav chalfon yoav_h@ird.scitex.com
    903 rad vision oleg pogorelik radvis@vax.trendline.co.il
    904 tran network systems paul winkeler paulw@revco.com
    905 scorpion logic sean harding +09 2324 5672
    906 inotech inc. eric jacobs (703) 641-0469
    907 controlled power co. yu chin 76500,3160@compuserve.com
    908 elsag bailey incorporate derek mckearney mckearney@bailey.com
    909 j.p. morgan chung szeto szeto_chung@jpmorgan.com

    reynolds & postel [page 156]

    rfc 1700 assigned numbers october 1994

    910 clear communications corp. kurt hall khall@clear.com
    911 general technology inc. perry rockwell (407) 242-2733
    912 adax inc. jory gessow jory@adax.com
    913 mtel technologies, inc. jon robinson 552-3355@mcimail.com
    914 underscore, inc. jeff schnitzer jds@underscore.com
    915 sercomm corp. ben lin +8 862-577-5400
    916 baxter healthcare corporation
    joseph sturonas sturonaj@mpg.mcgawpark.baxter.com
    917 tellus technology ron cimorelli (510) 498-8500
    918 continuous electron beam accelerator facility
    paul banta banta@cebaf.gov
    919 canoga perkins margret siska (818) 718-6300
    920 r.i.s technologies fabrice lacroix +33 7884 6400
    921 infonex corp. kazuhiro watanabe kazu@infonex.co.jp
    922 wordperfect corp. douglas eddy eddy@wordperfect.com
    923 nrad russ carleton roccor@netcom.com
    924 hong kong telecommunications ltd. k. s. luk +8 52 883 3183
    925 signature systems doug goodall goodall@crl.com
    926 alpha technologies ltd. guy pothiboon (604) 430-8908
    927 pairgain technologies, inc. ken huang kenh@pairgain.com
    928 sonic systems sudhakar ravi sudhakar@sonicsys.com
    929 steinbrecher corp. kary robertson krobertson@delphi.com
    930 centillion networks, inc. derek pitcher derek@lanspd.com
    931 network communication corp.
    tracy clark ncc!central!tracyc@netcomm.attmail.com
    932 sysnet a.s. carstein seeberg case@sysnet.no
    933 telecommunication systems lab gerald maguire maguire@it.kth.se
    934 qmi scott brickner (410) 573-0013
    935 phoenixtec power co., ltd. an-hsiang tu +8 862 646 3311
    936 hirakawa hewtech corp. h. ukaji lde02513@niftyserve.or.jp
    937 no wires needed b.v. arnoud zwemmer roana@cs.utwente.nl
    938 primary access kerstin lodman lodman@priacc.com
    939 enterprises.fdsw dag framstad dag.framstad@fdsw.no
    940 grabner & kapfer gnbr vinzenz grabner zen@wsr.ac.att
    941 nemesys research ltd. michael dixon mjd@nemesys.co.uk
    942 pacific communication sciences, inc. (psci)
    yvonne kammer mib-contact@pcsi.com
    943 level one communications, inc.
    moshe kochinski moshek@level1.com
    944 fast track, inc. andrew h. dimmick adimmick@world.std.com
    945 andersen consulting, om/ni practice
    greg tilford p00919@psilink.com
    946 bay technologies pty ltd. paul simpson pauls@baytech.com.au
    947 integrated network corp. daniel joffe wandan@integnet.com
    948 epoch, inc. david haskell deh@epoch.com
    949 wang laboratories inc. pete reilley pvr@wiis.wang.com
    950 polaroid corp. sari germanos sari@temerity.polaroid.com
    951 sunrise sierra gerald olson (510) 443-1133

    reynolds & postel [page 157]

    rfc 1700 assigned numbers october 1994

    952 silcon group bjarne bonvang +45 75 54 22 55
    953 coastcom donald pickerel dpickere@netcom.com
    954 4th dimension software ltd.
    thomas segev/ely hofner autumn@zeus.datasrv.co.il
    955 seiko systems inc. kiyoshi ishida ishi@ssi.co.jp
    956 perform jean-hugues robert +33 42 27 29 32
    957 tv/com international jean tellier (619) 675-1376
    958 network integration, inc.
    scott c. lemon slemon@nii.mhs.compuserve.com
    959 sola electric, a unit of general signal
    bruce rhodes 72360,2436@compuserve.com
    960 gradient technologies, inc. geoff charron geoff@gradient.com
    961 tokyo electric co., ltd. a. akiyama +81 558 76 9606
    962 codonics, inc. joe kulig jjk@codonics.com
    963 delft technical university mark schenk m.schenk@ced.tudelft.nl
    964 carrier access corp. roger koenig tomquick@carrier.com
    965 eoncorp barb wilson wilsonb@eon.com
    966 naval undersea warfare center
    mark lovelace lovelace@mp34.nl.nuwc.navy.mil
    967 awa limited mike williams +61 28 87 71 11
    968 distinct corp. tarcisio pedrotti tarci@distinct.com
    969 national technical university of athens
    theodoros karounos karounos@phgasos.ntua.gr
    970 bgs systems, inc. amr hafez amr@bgs.com
    971 mccaw wireless data inc. brian bailey bbailey@airdata.com
    972 bekaert koen de vleeschauwer kdv@bekaert.com
    973 epic data inc. vincent lim vincent_lim@epic.wimsey.com
    974 prodigy services co. ed ravin elr@wp.prodigy.com
    975 first pacific networks (fpn) randy hamilton randy@fpn.com
    976 xylink ltd. bahman rafatjoo 100117.665@compuserve.com
    977 relia technologies corp. fred chen fredc@relia1.relia.com.tw
    978 legacy storage systems inc.
    james hayes james@lss-chq.mhs.compuserve.com
    979 digicom, spa claudio biotti +39 3312 0 0122
    980 ark telecom alan demars alan@arktel.com
    981 national security agency (nsa)
    cynthia stewart maedeen@romulus.ncsc.mil
    982 southwestern bell corporation
    brian bearden bb8840@swuts.sbc.com
    983 virtual design group, inc.
    chip standifer 70650.3316@compuserve.com
    984 rhone poulenc olivier pignault +33 1348 2 4053
    985 swiss bank corporation neil todd toddn@gb.swissbank.com
    986 atea n.v. walter van brussel p81710@banyan.atea.be
    987 computer communications specialists, inc.
    carolyn zimmer cczimmer@crl.com
    988 object quest, inc. michael l. kornegay mlk@bir.com
    989 dcl system international, ltd. gady amit gady-a@dcl-see.co.il

    reynolds & postel [page 158]

    rfc 1700 assigned numbers october 1994

    990 soliton systems k.k. masayuki yamai +81 33356 6091
    991 u s software don dunstan ussw@netcom.com
    992 systems research and applications corporation
    todd herr herrt@smtplink.sra.com
    993 university of florida todd hester todd@circa.ufl.edu
    994 dantel, inc. john litster (209) 292-1111
    995 multi-tech systems, inc. dale martenson (612) 785-3500 x519
    996 softlink ltd. moshe leibovitch softlink@zeus.datasrv.co.il
    997 prosum christian bucari +33.1.4590.6231
    998 march systems consultancy, ltd.
    ross wakelin r.wakelin@march.co.uk
    999 hong technology, inc. walt milnor brent@oceania.com
    1000 internet assigned numbers authority iana@isi.edu
    1001 peco energy co. rick rioboli u002rdr@peco.com
    1002 united parcel service steve pollini nrd1sjp@nrd.ups.com
    1003 storage dimensions, inc. michael torhan miketorh@xstor.com
    1004 itv technologies, inc. jacob chen itv@netcom.com
    1005 tcpsi victor san jose victor.sanjose@sp1.y-net.es
    1006 promptus communications, inc. paul fredette (401) 683-6100
    1007 norman data defense systems
    kristian a. bognaes norman@norman.no
    1008 pilot network services, inc. rob carrade carrade@pilot.net
    1009 integrated systems solutions corporation
    chris cowan cc@austin.ibm.com
    1010 sisro kamp alexandre 100074.344@compuserve.com
    1011 netvantage kevin bailey speed@kaiwan.com
    1012 marconi s.p.a. giuseppe grasso gg@relay.marconi.it
    1013 surecom mike s. t. hsieh +886.25.92232
    1014 royal hong kong jockey club
    edmond lee 100267.3660@compuserve.com
    1015 gupta howard cohen hcohen@gupta.com
    1016 tone software corporation neil p. harkins (714) 991-9460
    1017 opus telecom pace willisson pace@blitz.com
    1018 cogsys ltd. niall teasdale niall@hedgehog.demon.co.uk
    1019 komatsu, ltd. akifumi katsushima +81 463.22.84.30
    1020 roi systems, inc michael wong (801) 942-1752
    1021 lightning instrumentation sa mike o'dowd odowd@lightning.ch
    1022 timestep corp. stephane lacelle slacelle@newbridge.com
    1023 intelsat ivan giron i.giron@intelsat.int
    1024 network research corporation japan, ltd.
    tsukasa ueda 100156.2712@compuserve.com
    1025 relational development, inc. steven smith rdi@ins.infonet.net
    1026 emerald systems, corp. robert a. evans jr. (619) 673-2161 x5120
    1027 mitel, corp. tom quan tq@software.mitel.com
    1028 software ag peter cohen sagpc@sagus.com
    1029 millennet, inc. manh do (510) 770-9390
    1030 nk-exa corp. ken'ichi hayami hayami@dst.nk-exa.co.jp
    1031 bmc software chris sharp csharp@patrol.com

    reynolds & postel [page 159]

    rfc 1700 assigned numbers october 1994

    1032 starfire enterprises, inc. lew gaiter lg@starfire.com
    1033 hybrid networks, inc. doug muirhead dougm@hybrid.com
    1034 quantum software gmbh thomas omerzu omerzu@quantum.de
    1035 openvision technologies limited
    andrew lockhart alockhart@openvision.co.uk
    1036 healthcare communications, inc. (hci)
    larry streepy streepy@healthcare.com
    1037 sait systems hai dotu +3223.7053.11
    1038 sat mleczko alain +33.1.4077.1156
    1039 compusci inc., bob berry bberry@compusci.com
    1040 aim technology ganesh rajappan ganeshr@aim.com
    1041 ciesin kalpesh unadkat kalpesh@ciesin.org
    1042 systems & technologies international
    howard smith ghamex@aol.com
    1043 israeli electric company (iec) yoram harlev yoram@yor.iec.co.il
    1044 phoenix wireless group, inc.
    gregory m. buchanan buchanan@pwgi.com
    1045 swl bill kight wkightgrci.com (410) 290.7245
    1046 ncube greg thompson gregt@ncube.com
    1047 cerner, corp. dennis avondet (816) 221.1024 x2432
    1048 andersen consulting mark lindberg mlindber@andersen.com
    1049 lincoln telephone company bob morrill root@si6000.ltec.com
    1050 acer jay tao jtao@altos.com
    1051 cedros juergen haakert +49.2241.9701.80
    1052 airaccess ido ophir 100274.365@compuserve.com
    1053 expersoft corporation david curtis curtis@expersoft.com
    1054 eskom sanjay lakhani h00161@duvi.eskom.co.za
    1055 sbe, inc. vimal vaidya vimal@sbei.com
    1056 ebs, inc. emre gundogan baroque@ebs.com
    1057 american computer and electronics, corp.
    tom abraham tha@acec.com
    1058 syndesis limited wil macaulay wil@syndesis.com
    1059 isis distributed systems, inc. ken chapman kchapman@isis.com
    1060 priority call management greg schumacher gregs@world.std.com
    1061 koelsch & altmann gmbh
    christian schreyer 100142.154@compuserve.com
    1062 wipro infotech ltd. chandrashekar kapse kapse@wipinfo.soft.net
    1063 controlware uli blatz ublatz@cware.de
    1064 mosaic software w.van biljon willem@mosaic.co.za
    1065 canon information systems
    victor villalpando vvillalp@cisoc.canon.com
    1066 americaonline andrew r. scholnick andrew@aol.net
    1067 whitetree network technologies, inc.
    carl yang cyang@whitetree.com
    1068 xetron corp. dave alverson davea@xetron.com
    1069 target concepts, inc. bill price bprice@tamu.edu
    1070 dmh software yigal hochberg 72144.3704@compuserve.com
    1071 innosoft international, inc. jeff allison jeff@innosoft.com

    reynolds & postel [page 160]

    rfc 1700 assigned numbers october 1994

    1072 controlware gmbh uli blatz ublatz@cware.de
    1073 telecommunications industry association (tia)
    mike youngberg mikey@synacom.com
    1074 boole & babbage rami rubin rami@boole.com
    1075 system engineering support, ltd. vince taylor +44 454.614.638
    1076 surfnet ton verschuren ton.verschuren@surfnet.nl
    1077 openconnect systems, inc. mark rensmeyer mrensme@oc.com
    1078 pdts (process data technology and systems)
    martin gutenbrunner gut@pdts.mhs.compuserve.com
    1079 cornet, inc. nat kumar (703) 658-3400
    1080 netstar, inc. john k. renwick jkr@netstar.com
    1081 semaphore communications, corp. jimmy soetarman (408) 980-7766
    1082 casio computer co., ltd. shouzo ohdate ohdate@casio.co.jp
    1083 csir frikkie strecker fstreck@marge.mikom.csir.co.za
    1084 apogee communications olivier caleff caleff@apogee-com.fr
    1085 information management company michael d. liss mliss@imc.com
    1086 wordlink, inc. mike aleckson (314) 878-1422
    1087 peer avinash s. rao arao@cranel.com
    1088 telstra corp. michael scollay michaels@ind.tansu.com.au
    1089 net x, inc. sridhar kodela techsupp@netx.unicomp.net
    1090 pnc plc gordon tees +44 716.061.200

    to request an assignment of an enterprise number send the complete
    company name, address, and phone number; and the contact's person
    complete name, address, phone number, and email mailbox in an email
    message to <iana-mib@isi.edu>.

    []

    url = ftp://ftp.isi.edu/…a/assignments/enterprise-numbers

    reynolds & postel [page 161]

    rfc 1700 assigned numbers october 1994

    sgmp vendor specific codes: [obsolete]

    prefix: 1,255,

    decimal name references
    ------- ---- ----------
    0 reserved [jkr1]
    1 proteon [js18]
    2 ibm [jxr]
    3 cmu [sxw]
    4 unix [ms9]
    5 acc [ab20]
    6 twg [mtr]
    7 cayman [bxm2]
    8 nysernet [ms9]
    9 cisco [gs2]
    10 bbn [rh6]
    11 unassigned [jkr1]
    12 mit [jr35]
    13-254 unassigned [jkr1]
    255 reserved [jkr1]

    []

    url = ftp://ftp.isi.edu/…ssignments/sgmp-vendor-specific-
    codes

    reynolds & postel [page 162]

    rfc 1700 assigned numbers october 1994

    address resolution protocol parameters

    the address resolution protocol (arp) specified in [rfc826] has
    several parameters. the assigned values for these parameters are
    listed here.

    reverse address resolution protocol operation codes

    the reverse address resolution protocol (rarp) specified in [rfc903]
    uses the "reverse" codes below.

    dynamic reverse arp

    the dynamic reverse address resolution protocol (drarp) uses the
    "drarp" codes below. for further information, contact: david brownell
    (suneast!helium!db@sun.com).

    inverse address resoulution protocol

    the inverse address resolution protocol (iarp) specified in [rfc1293]
    uses the "inarp" codes below.

    assignments:

    number operation code (op) reference
    ------ -------------------------- ---------
    1 request [rfc826]
    2 reply [rfc826]
    3 request reverse [rfc903]
    4 reply reverse [rfc903]
    5 drarp-request [david brownell]
    6 drarp-reply [david brownell]
    7 drarp-error [david brownell]
    8 inarp-request [rfc1293]
    9 inarp-reply [rfc1293]
    10 arp-nak [mark laubach]

    number hardware type (hrd) references
    ------ ----------------------------------- ----------
    1 ethernet (10mb) [jbp]
    2 experimental ethernet (3mb) [jbp]
    3 amateur radio ax.25 [pxk]
    4 proteon pronet token ring [jbp]
    5 chaos [gxp]
    6 ieee 802 networks [jbp]
    7 arcnet [jbp]
    8 hyperchannel [jbp]
    9 lanstar [tu]

    reynolds & postel [page 163]

    rfc 1700 assigned numbers october 1994

    10 autonet short address [mxb1]
    11 localtalk [jkr1]
    12 localnet (ibm pcnet or sytek localnet) [jxm]
    13 ultra link [rxd2]
    14 smds [gxc1]
    15 frame relay [agm]
    16 asynchronous transmission mode (atm) [jxb2]
    17 hdlc [jbp]
    18 fibre channel [yakov rekhter]
    19 asynchronous transmission mode (atm) [mark laubach]
    20 serial line [jbp]
    21 asynchronous transmission mode (atm) [mxb1]

    protocol type (pro)

    use the same codes as listed in the section called "ethernet numbers
    of interest" (all hardware types use this code set for the protocol
    type).

    references

    [rfc826] plummer, d., "an ethernet address resolution protocol or
    converting network protocol addresses to 48-bit ethernet
    addresses for transmission on ethernet hardware", std 37, rfc
    826, mit-lcs, november 1982.

    [rfc903] finlayson, r., mann, t., mogul, j., and m. theimer, "a
    reverse address resolution protocol", std 38, rfc 903,
    stanford university, june 1984.

    [rfc1293] bradley, t., and c. brown, "inverse address resolution
    protocol", rfc 1293, wellfleet communications, inc.,
    january 1992.

    people

    [agm] andy malis <malis_a@timeplex.com>

    [gxc1] george clapp <meritec!clapp@bellcore.bellcore.com>

    [gxp] gill pratt <gill%mit-ccc@mc.lcs.mit.edu>

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

    [jkr1] joyce k. reynolds <jkrey@isi.edu>

    reynolds & postel [page 164]

    rfc 1700 assigned numbers october 1994

    [jxm] joseph murdock <---none--->

    [mxb1] mike burrows <burrows@src.dec.com>

    [pxk] philip koch <philip.koch@dartmouth.edu>

    [rxd2] rajiv dhingra <rajiv@ultra.com>

    [tu] tom unger <tom@citi.umich>

    [david brownell]

    [mark laubach]

    [yakov rekhter] <yakov@ibm.com>

    []

    url = ftp://ftp.isi.edu/…/iana/assignments/arp-parameters

    reynolds & postel [page 165]

    rfc 1700 assigned numbers october 1994

    ieee 802 numbers of interest

    some of the networks of all classes are ieee 802 networks. these
    systems may use a link service access point (lsap) field in much the
    same way the milnet uses the "link" field. further, there is an
    extension of the lsap header called the sub-network access protocol
    (snap).

    the ieee likes to describe numbers in binary in bit transmission
    order, which is the opposite of the big-endian order used throughout
    the internet protocol documentation.

    assignments:

    link service access point description references
    ------------------------- ----------- ----------
    ieee internet
    binary binary decimal
    00000000 00000000 0 null lsap [ieee]
    01000000 00000010 2 indiv llc sublayer mgt [ieee]
    11000000 00000011 3 group llc sublayer mgt [ieee]
    00100000 00000100 4 sna path control [ieee]
    01100000 00000110 6 reserved (dod ip) [rfc768,jbp]
    01110000 00001110 14 proway-lan [ieee]
    01110010 01001110 78 eia-rs 511 [ieee]
    01111010 01011110 94 isi ip [jbp]
    01110001 10001110 142 proway-lan [ieee]
    01010101 10101010 170 snap [ieee]
    01111111 11111110 254 iso clns is 8473 [rfc926,jxj]
    11111111 11111111 255 global dsap [ieee]

    these numbers (and others) are assigned by the ieee standards office.
    the address is:

    ieee registration authority
    c/o iris ringel
    ieee standards dept
    445 hoes lane, p.o. box 1331
    piscataway, nj 08855-1331
    phone +1 908 562 3813
    fax: +1 908 562 1571

    the fee is $1000 and it takes 10 working days after receipt of the
    request form and fee. they will not do anything via fax or phone.

    at an ad hoc special session on "ieee 802 networks and arp", held
    during the tcp vendors workshop (august 1986), an approach to a

    reynolds & postel [page 166]

    rfc 1700 assigned numbers october 1994

    consistent way to send dod-ip datagrams and other ip related protocols
    (such as the address resolution protocol (arp)) on 802 networks was
    developed, using the snap extension (see [rfc1042]).

    references

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

    [rfc926] international standards organization, "protocol for providing
    the connectionless-mode network services", rfc 926, iso,
    december 1984.

    [rfc1042] postel, j., and j. reynolds, "a standard for the
    transmission of ip datagrams over ieee 802 networks", std
    43, rfc 1042, usc/information sciences institute, february
    1988.

    people

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

    [jxj] <mystery contact>

    []

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

    reynolds & postel [page 167]

    rfc 1700 assigned numbers october 1994

    ether types

    many of the networks of all classes are ethernets (10mb) or
    experimental ethernets (3mb). these systems use a message "type"
    field in much the same way the arpanet uses the "link" field.

    if you need an ether type, contact:

    xerox systems institute
    3400 hillview ave.
    po box 10034
    palo alto, ca 94303

    phone: 415-813-7164
    contact: fonda lix pallone

    the following list of ethertypes is contributed unverified information
    from various sources.

    assignments:

    ethernet exp. ethernet description references
    ------------- ------------- ----------- ----------
    decimal hex decimal octal
    000 0000-05dc - - ieee802.3 length field [xerox]
    257 0101-01ff - - experimental [xerox]
    512 0200 512 1000 xerox pup (see 0a00) [8,xerox]
    513 0201 - - pup addr trans (see 0a01)[xerox]
    0400 nixdorf [xerox]
    1536 0600 1536 3000 xerox ns idp [133,xerox]
    0660 dlog [xerox]
    0661 dlog [xerox]
    2048 0800 513 1001 internet ip (ipv4) [105,jbp]
    2049 0801 - - x.75 internet [xerox]
    2050 0802 - - nbs internet [xerox]
    2051 0803 - - ecma internet [xerox]
    2052 0804 - - chaosnet [xerox]
    2053 0805 - - x.25 level 3 [xerox]
    2054 0806 - - arp [88,jbp]
    2055 0807 - - xns compatability [xerox]
    2076 081c - - symbolics private [dcp1]
    2184 0888-088a - - xyplex [xerox]
    2304 0900 - - ungermann-bass net debugr[xerox]
    2560 0a00 - - xerox ieee802.3 pup [xerox]
    2561 0a01 - - pup addr trans [xerox]
    2989 0bad - - banyan systems [xerox]
    4096 1000 - - berkeley trailer nego [xerox]
    4097 1001-100f - - berkeley trailer encap/ip[xerox]

    reynolds & postel [page 168]

    rfc 1700 assigned numbers october 1994

    5632 1600 - - valid systems [xerox]
    16962 4242 - - pcs basic block protocol [xerox]
    21000 5208 - - bbn simnet [xerox]
    24576 6000 - - dec unassigned (exp.) [xerox]
    24577 6001 - - dec mop dump/load [xerox]
    24578 6002 - - dec mop remote console [xerox]
    24579 6003 - - dec decnet phase iv route[xerox]
    24580 6004 - - dec lat [xerox]
    24581 6005 - - dec diagnostic protocol [xerox]
    24582 6006 - - dec customer protocol [xerox]
    24583 6007 - - dec lavc, sca [xerox]
    24584 6008-6009 - - dec unassigned [xerox]
    24586 6010-6014 - - 3com corporation [xerox]
    28672 7000 - - ungermann-bass download [xerox]
    28674 7002 - - ungermann-bass dia/loop [xerox]
    28704 7020-7029 - - lrt [xerox]
    28720 7030 - - proteon [xerox]
    28724 7034 - - cabletron [xerox]
    32771 8003 - - cronus vln [131,dt15]
    32772 8004 - - cronus direct [131,dt15]
    32773 8005 - - hp probe [xerox]
    32774 8006 - - nestar [xerox]
    32776 8008 - - at&t [xerox]
    32784 8010 - - excelan [xerox]
    32787 8013 - - sgi diagnostics [axc]
    32788 8014 - - sgi network games [axc]
    32789 8015 - - sgi reserved [axc]
    32790 8016 - - sgi bounce server [axc]
    32793 8019 - - apollo computers [xerox]
    32815 802e - - tymshare [xerox]
    32816 802f - - tigan, inc. [xerox]
    32821 8035 - - reverse arp [48,jxm]
    32822 8036 - - aeonic systems [xerox]
    32824 8038 - - dec lanbridge [xerox]
    32825 8039-803c - - dec unassigned [xerox]
    32829 803d - - dec ethernet encryption [xerox]
    32830 803e - - dec unassigned [xerox]
    32831 803f - - dec lan traffic monitor [xerox]
    32832 8040-8042 - - dec unassigned [xerox]
    32836 8044 - - planning research corp. [xerox]
    32838 8046 - - at&t [xerox]
    32839 8047 - - at&t [xerox]
    32841 8049 - - experdata [xerox]
    32859 805b - - stanford v kernel exp. [xerox]
    32860 805c - - stanford v kernel prod. [xerox]
    32861 805d - - evans & sutherland [xerox]
    32864 8060 - - little machines [xerox]
    32866 8062 - - counterpoint computers [xerox]

    reynolds & postel [page 169]

    rfc 1700 assigned numbers october 1994

    32869 8065 - - univ. of mass. @ amherst [xerox]
    32870 8066 - - univ. of mass. @ amherst [xerox]
    32871 8067 - - veeco integrated auto. [xerox]
    32872 8068 - - general dynamics [xerox]
    32873 8069 - - at&t [xerox]
    32874 806a - - autophon [xerox]
    32876 806c - - comdesign [xerox]
    32877 806d - - computgraphic corp. [xerox]
    32878 806e-8077 - - landmark graphics corp. [xerox]
    32890 807a - - matra [xerox]
    32891 807b - - dansk data elektronik [xerox]
    32892 807c - - merit internodal [hwb]
    32893 807d-807f - - vitalink communications [xerox]
    32896 8080 - - vitalink translan iii [xerox]
    32897 8081-8083 - - counterpoint computers [xerox]
    32923 809b - - appletalk [xerox]
    32924 809c-809e - - datability [xerox]
    32927 809f - - spider systems ltd. [xerox]
    32931 80a3 - - nixdorf computers [xerox]
    32932 80a4-80b3 - - siemens gammasonics inc. [xerox]
    32960 80c0-80c3 - - dca data exchange cluster[xerox]
    80c4 banyan systems [xerox]
    80c5 banyan systems [xerox]
    32966 80c6 - - pacer software [xerox]
    32967 80c7 - - applitek corporation [xerox]
    32968 80c8-80cc - - intergraph corporation [xerox]
    32973 80cd-80ce - - harris corporation [xerox]
    32975 80cf-80d2 - - taylor instrument [xerox]
    32979 80d3-80d4 - - rosemount corporation [xerox]
    32981 80d5 - - ibm sna service on ether [xerox]
    32989 80dd - - varian associates [xerox]
    32990 80de-80df - - integrated solutions trfs[xerox]
    32992 80e0-80e3 - - allen-bradley [xerox]
    32996 80e4-80f0 - - datability [xerox]
    33010 80f2 - - retix [xerox]
    33011 80f3 - - appletalk aarp (kinetics)[xerox]
    33012 80f4-80f5 - - kinetics [xerox]
    33015 80f7 - - apollo computer [xerox]
    33023 80ff-8103 - - wellfleet communications [xerox]
    33031 8107-8109 - - symbolics private [xerox]
    33072 8130 - - hayes microcomputers [xerox]
    33073 8131 - - vg laboratory systems [xerox]
    8132-8136 bridge communications [xerox]
    33079 8137-8138 - - novell, inc. [xerox]
    33081 8139-813d - - kti [xerox]
    8148 logicraft [xerox]
    8149 network computing devices[xerox]
    814a alpha micro [xerox]

    reynolds & postel [page 170]

    rfc 1700 assigned numbers october 1994

    33100 814c - - snmp [jkr1]
    814d biin [xerox]
    814e biin [xerox]
    814f technically elite concept[xerox]
    8150 rational corp [xerox]
    8151-8153 qualcomm [xerox]
    815c-815e computer protocol pty ltd[xerox]
    8164-8166 charles river data system[xerox]
    817d-818c protocol engines [xerox]
    818d motorola computer [xerox]
    819a-81a3 qualcomm [xerox]
    81a4 arai bunkichi [xerox]
    81a5-81ae rad network devices [xerox]
    81b7-81b9 xyplex [xerox]
    81cc-81d5 apricot computers [xerox]
    81d6-81dd artisoft [xerox]
    81e6-81ef polygon [xerox]
    81f0-81f2 comsat labs [xerox]
    81f3-81f5 saic [xerox]
    81f6-81f8 vg analytical [xerox]
    8203-8205 quantum software [xerox]
    8221-8222 ascom banking systems [xerox]
    823e-8240 advanced encryption syste[xerox]
    827f-8282 athena programming [xerox]
    8263-826a charles river data system[xerox]
    829a-829b inst ind info tech [xerox]
    829c-82ab taurus controls [xerox]
    82ac-8693 walker richer & quinn [xerox]
    8694-869d idea courier [xerox]
    869e-86a1 computer network tech [xerox]
    86a3-86ac gateway communications [xerox]
    86db sectra [xerox]
    86de delta controls [xerox]
    34543 86df - - atomic [jbp]
    86e0-86ef landis & gyr powers [xerox]
    8700-8710 motorola [xerox]
    8a96-8a97 invisible software [xerox]
    36864 9000 - - loopback [xerox]
    36865 9001 - - 3com(bridge) xns sys mgmt[xerox]
    36866 9002 - - 3com(bridge) tcp-ip sys [xerox]
    36867 9003 - - 3com(bridge) loop detect [xerox]
    65280 ff00 - - bbn vital-lanbridge cache[xerox]
    ff00-ff0f isc bunker ramo [xerox]

    the standard for transmission of ip datagrams over ethernets and
    experimental ethernets is specified in [rfc894] and [rfc895]
    respectively.
  • reynolds & postel [page 171]

    rfc 1700 assigned numbers october 1994

    note: ethernet 48-bit address blocks are assigned by the ieee.

    ieee registration authority
    c/o iris ringel
    ieee standards department
    445 hoes lane, p.o. box 1331
    piscataway, nj 08855-1331
    phone +1 908 562 3813
    fax: +1 908 562 1571

    iana ethernet address block

    the iana owns an ethernet address block which may be used for
    multicast address asignments or other special purposes.

    the address block in ieee binary is: 0000 0000 0000 0000 0111 1010

    in the normal internet dotted decimal notation this is 0.0.94 since
    the bytes are transmitted higher order first and bits within bytes are
    transmitted lower order first (see "data notation" in the
    introduction).

    ieee csma/cd and token bus bit transmission order: 00 00 5e

    ieee token ring bit transmission order: 00 00 7a

    appearance on the wire (bits transmitted from left to right):

    0 23 47
    | | |
    1000 0000 0000 0000 0111 1010 xxxx xxx0 xxxx xxxx xxxx xxxx
    | |
    multicast bit 0 = internet multicast
    1 = assigned by iana for
    other uses

    appearance in memory (bits transmitted right-to-left within octets,
    octets transmitted left-to-right):

    0 23 47
    | | |
    0000 0001 0000 0000 0101 1110 0xxx xxxx xxxx xxxx xxxx xxxx
    | |
    multicast bit 0 = internet multicast

    reynolds & postel [page 172]

    rfc 1700 assigned numbers october 1994

    1 = assigned by iana for other uses

    the latter representation corresponds to the internet standard
    bit-order, and is the format that most programmers have to deal with.
    using this representation, the range of internet multicast addresses
    is:

    01-00-5e-00-00-00 to 01-00-5e-7f-ff-ff in hex, or

    1.0.94.0.0.0 to 1.0.94.127.255.255 in dotted decimal

    ethernet vendor address components

    ethernet hardware addresses are 48 bits, expressed as 12 hexadecimal
    digits (0-9, plus a-f, capitalized). these 12 hex digits consist of
    the first/left 6 digits (which should match the vendor of the ethernet
    interface within the station) and the last/right 6 digits which
    specify the interface serial number for that interface vendor.

    ethernet addresses might be written unhyphenated (e.g., 123456789abc),
    or with one hyphen (e.g., 123456-789abc), but should be written
    hyphenated by octets (e.g., 12-34-56-78-9a-bc).

    these addresses are physical station addresses, not multicast nor
    broadcast, so the second hex digit (reading from the left) will be
    even, not odd.

    at present, it is not clear how the ieee assigns ethernet block
    addresses. whether in blocks of 2**24 or 2**25, and whether
    multicasts are assigned with that block or separately. a portion of
    the vendor block address is reportedly assigned serially, with the
    other portion intentionally assigned randomly. if there is a global
    algorithm for which addresses are designated to be physical (in a
    chipset) versus logical (assigned in software), or globally-assigned
    versus locally-assigned addresses, some of the known addresses do not
    follow the scheme (e.g., aa0003; 02xxxx).

    00000c cisco
    00000e fujitsu
    00000f next
    000010 sytek
    00001d cabletron
    000020 diab (data intdustrier ab)
    000022 visual technology
    00002a trw

    reynolds & postel [page 173]

    rfc 1700 assigned numbers october 1994

    000032 gpt limited (reassigned from gec computers ltd)
    00005a s & koch
    00005e iana
    000065 network general
    00006b mips
    000077 mips
    00007a ardent
    000089 cayman systems gatorbox
    000093 proteon
    00009f ameristar technology
    0000a2 wellfleet
    0000a3 network application technology
    0000a6 network general (internal assignment, not for products)
    0000a7 ncd x-terminals
    0000a9 network systems
    0000aa xerox xerox machines
    0000b3 cimlinc
    0000b7 dove fastnet
    0000bc allen-bradley
    0000c0 western digital
    0000c5 farallon phone net card
    0000c6 hp intelligent networks operation (formerly eon systems)
    0000c8 altos
    0000c9 emulex terminal servers
    0000d7 dartmouth college (ned router)
    0000d8 3com? novell? ps/2
    0000dd gould
    0000de unigraph
    0000e2 acer counterpoint
    0000ef alantec
    0000fd high level hardvare (orion, uk)
    000102 bbn bbn internal usage (not registered)
    0020af 3com ???
    001700 kabel
    008064 wyse technology / link technologies
    00802b imac ???
    00802d xylogics, inc. annex terminal servers
    00808c frontier software development
    0080c2 ieee 802.1 committee
    0080d3 shiva
    00aa00 intel
    00dd00 ungermann-bass
    00dd01 ungermann-bass
    020701 racal interlan
    020406 bbn bbn internal usage (not registered)
    026086 satelcom megapac (uk)
    02608c 3com ibm pc; imagen; valid; cisco
    02cf1f cmc masscomp; silicon graphics; prime exl

    reynolds & postel [page 174]

    rfc 1700 assigned numbers october 1994

    080002 3com (formerly bridge)
    080003 acc (advanced computer communications)
    080005 symbolics symbolics lisp machines
    080008 bbn
    080009 hewlett-packard
    08000a nestar systems
    08000b unisys
    080011 tektronix, inc.
    080014 excelan bbn butterfly, masscomp, silicon graphics
    080017 nsc
    08001a data general
    08001b data general
    08001e apollo
    080020 sun sun machines
    080022 nbi
    080025 cdc
    080026 norsk data (nord)
    080027 pcs computer systems gmbh
    080028 ti explorer
    08002b dec
    08002e metaphor
    08002f prime computer prime 50-series lhc300
    080036 intergraph cae stations
    080037 fujitsu-xerox
    080038 bull
    080039 spider systems
    080041 dca digital comm. assoc.
    080045 ???? (maybe xylogics, but they claim not to know this number)
    080046 sony
    080047 sequent
    080049 univation
    08004c encore
    08004e bicc
    080056 stanford university
    080058 ??? decsystem-20
    08005a ibm
    080067 comdesign
    080068 ridge
    080069 silicon graphics
    08006e concurrent masscomp
    080075 dde (danish data elektronik a/s)
    08007c vitalink translan iii
    080080 xios
    080086 imagen/qms
    080087 xyplex terminal servers
    080089 kinetics appletalk-ethernet interface
    08008b pyramid
    08008d xyvision xyvision machines

    reynolds & postel [page 175]

    rfc 1700 assigned numbers october 1994

    080090 retix inc bridges
    484453 hds ???
    800010 at&t
    aa0000 dec obsolete
    aa0001 dec obsolete
    aa0002 dec obsolete
    aa0003 dec global physical address for some dec machines
    aa0004 dec local logical address for systems running
    decnet

    ethernet multicast addresses

    an ethernet multicast address consists of the multicast bit, the
    23-bit vendor component, and the 24-bit group identifier assigned by
    the vendor. for example, dec is assigned the vendor component
    08-00-2b, so multicast addresses assigned by dec have the first
    24-bits 09-00-2b (since the multicast bit is the low-order bit of the
    first byte, which is "the first bit on the wire").

    ethernet type
    address field usage

    multicast addresses:

    01-00-5e-00-00-00- 0800 internet multicast [rfc1112]
    01-00-5e-7f-ff-ff
    01-00-5e-80-00-00- ???? internet reserved by iana
    01-00-5e-ff-ff-ff
    01-80-c2-00-00-00 -802- spanning tree (for bridges)
    09-00-02-04-00-01? 8080? vitalink printer
    09-00-02-04-00-02? 8080? vitalink management
    09-00-09-00-00-01 8005 hp probe
    09-00-09-00-00-01 -802- hp probe
    09-00-09-00-00-04 8005? hp dtc
    09-00-1e-00-00-00 8019? apollo domain
    09-00-2b-00-00-00 6009? dec mumps?
    09-00-2b-00-00-01 8039? dec dsm/dtp?
    09-00-2b-00-00-02 803b? dec vaxeln?
    09-00-2b-00-00-03 8038 dec lanbridge traffic monitor (ltm)
    09-00-2b-00-00-04 ???? dec map end system hello
    09-00-2b-00-00-05 ???? dec map intermediate system hello
    09-00-2b-00-00-06 803d? dec csma/cd encryption?
    09-00-2b-00-00-07 8040? dec netbios emulator?
    09-00-2b-00-00-0f 6004 dec local area transport (lat)
    09-00-2b-00-00-1x ???? dec experimental
    09-00-2b-01-00-00 8038 dec lanbridge copy packets

    reynolds & postel [page 176]

    rfc 1700 assigned numbers october 1994

    (all bridges)
    09-00-2b-01-00-01 8038 dec lanbridge hello packets
    (all local bridges)
    1 packet per second, sent by the
    designated lanbridge
    09-00-2b-02-00-00 ???? dec dna lev. 2 routing layer routers?
    09-00-2b-02-01-00 803c? dec dna naming service advertisement?
    09-00-2b-02-01-01 803c? dec dna naming service solicitation?
    09-00-2b-02-01-02 803e? dec dna time service?
    09-00-2b-03-xx-xx ???? dec default filtering by bridges?
    09-00-2b-04-00-00 8041? dec local area sys. transport (last)?
    09-00-2b-23-00-00 803a? dec argonaut console?
    09-00-4e-00-00-02? 8137? novell ipx
    09-00-56-00-00-00- ???? stanford reserved
    09-00-56-fe-ff-ff
    09-00-56-ff-00-00- 805c stanford v kernel, version 6.0
    09-00-56-ff-ff-ff
    09-00-77-00-00-01 ???? retix spanning tree bridges
    09-00-7c-02-00-05 8080? vitalink diagnostics
    09-00-7c-05-00-01 8080? vitalink gateway?
    0d-1e-15-ba-dd-06 ???? hp
    ab-00-00-01-00-00 6001 dec maintenance operation protocol
    (mop) dump/load assistance
    ab-00-00-02-00-00 6002 dec maintenance operation protocol
    (mop) remote console
    1 system id packet every 8-10 minutes,
    by every:
    dec lanbridge
    dec deuna interface
    dec delua interface
    dec deqna interface
    (in a certain mode)
    ab-00-00-03-00-00 6003 decnet phase iv end node hello
    packets 1 packet every 15 seconds,
    sent by each decnet host
    ab-00-00-04-00-00 6003 decnet phase iv router hello packets
    1 packet every 15 seconds, sent by
    the decnet router
    ab-00-00-05-00-00 ???? reserved dec through
    ab-00-03-ff-ff-ff
    ab-00-03-00-00-00 6004 dec local area transport (lat) - old
    ab-00-04-00-xx-xx ???? reserved dec customer private use
    ab-00-04-01-xx-yy 6007 dec local area vax cluster groups
    sys. communication architecture (sca)
    cf-00-00-00-00-00 9000 ethernet configuration test protocol
    (loopback)

    broadcast address:

    reynolds & postel [page 177]

    rfc 1700 assigned numbers october 1994

    ff-ff-ff-ff-ff-ff 0600 xns packets, hello or gateway search?
    6 packets every 15 seconds, per xns
    station
    ff-ff-ff-ff-ff-ff 0800 ip (e.g. rwhod via udp) as needed
    ff-ff-ff-ff-ff-ff 0804 chaos
    ff-ff-ff-ff-ff-ff 0806 arp (for ip and chaos) as needed
    ff-ff-ff-ff-ff-ff 0bad banyan
    ff-ff-ff-ff-ff-ff 1600 valid packets, hello or gateway
    search?
    1 packets every 30 seconds, per valid
    station
    ff-ff-ff-ff-ff-ff 8035 reverse arp
    ff-ff-ff-ff-ff-ff 807c merit internodal (inp)
    ff-ff-ff-ff-ff-ff 809b ethertalk

    references

    [rfc894] hornig, c., "a standard for the transmission of ip datagrams
    over ethernet networks, std 41, rfc 894, symbolics,
    april 1984.

    [rfc895] postel, j., "a standard for the transmission of ip datagrams
    over experimental ethernet networks, std 42, rfc 895,
    usc/information sciences institute, april 1984.

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

    people

    [axc] andrew cherenson <arc@sgi.com>

    [dcp1] david plummer <dcp@scrc-quabbin.arpa>

    [dt15] daniel tappan <tappan@bbn.com>

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

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

    [jkr1] joyce k. reynolds <jkrey@isi.edu>

    [jxm] joseph murdock <---none--->

    [xerox] fonda pallone (415-813-7164)

    reynolds & postel [page 178]

    rfc 1700 assigned numbers october 1994

    []

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

    reynolds & postel [page 179]

    rfc 1700 assigned numbers october 1994

    x.25 type numbers

    ccitt defines the high order two bits of the first octet of call user
    data as follows:

    00 - used for other ccitt recomendations (such as x.29)
    01 - reserved for use by "national" administrative
    authorities
    10 - reserved for use by international administrative authoorities
    11 - reserved for arbitrary use between consenting dtes

    call user data (hex) protocol reference
    ------------------- -------- ---------

    01 pad [gs2]
    c5 blacker front-end descr dev [agm]
    cc ip [rfc877,agm]*
    cd iso-ip [agm]
    cf ppp [rfc1598]
    dd network monitoring [agm]

    *note: iso sc6/wg2 approved assignment in iso 9577 (january 1990).

    references

    [rfc877] korb, j., "a standard for the transmission of ip datagrams
    over public data networks", rfc 877, purdue university,
    september 1983.

    [rfc1598] simpson, w., "pppin x.25", rfc 1598, daydreamer, march 1994.

    people

    [agm] andy malis <malis_a@timeplex.com>

    [gs2] greg satz <satz@cisco.com>

    []

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

    reynolds & postel [page 180]

    rfc 1700 assigned numbers october 1994

    public data network numbers

    one of the internet class a networks is the international system of
    public data networks. this section lists the mapping between the
    internet addresses and the public data network addresses (x.121).

    assignments:

    internet public data net description references
    -------------- ----------------- ----------- ----------
    014.000.000.000 reserved [jbp]
    014.000.000.001 3110-317-00035 00 purdue-tn [tn]
    014.000.000.002 3110-608-00027 00 uwisc-tn [tn]
    014.000.000.003 3110-302-00024 00 udel-tn [tn]
    014.000.000.004 2342-192-00149 23 ucl-vtest [pk]
    014.000.000.005 2342-192-00300 23 ucl-tg [pk]
    014.000.000.006 2342-192-00300 25 uk-satnet [pk]
    014.000.000.007 3110-608-00024 00 uwisc-ibm [ms56]
    014.000.000.008 3110-213-00045 00 rand-tn [mo2]
    014.000.000.009 2342-192-00300 23 ucl-cs [pk]
    014.000.000.010 3110-617-00025 00 bbn-van-gw [jd21]
    014.000.000.011 2405-015-50300 00 chalmers [uxb]
    014.000.000.012 3110-713-00165 00 rice [pam6]
    014.000.000.013 3110-415-00261 00 decwrl [pam6]
    014.000.000.014 3110-408-00051 00 ibm-sj [sxa3]
    014.000.000.015 2041-117-01000 00 shape [jfw]
    014.000.000.016 2628-153-90075 00 dfvlr4-x25 [gb7]
    014.000.000.017 3110-213-00032 00 isi-van-gw [jd21]
    014.000.000.018 2624-522-80900 52 fgan-siemens-x25 [gb7]
    014.000.000.019 2041-170-10000 00 shape-x25 [jfw]
    014.000.000.020 5052-737-20000 50 uqnet [axh]
    014.000.000.021 3020-801-00057 50 dmc-crc1 [vxt]
    014.000.000.022 2624-522-80329 02 fgan-fganffmvax-x25 [gb7]
    014.000.000.023 2624-589-00908 01 ecrc-x25 [pxd]
    014.000.000.024 2342-905-24242 83 uk-mod-rsre [jxe2]
    014.000.000.025 2342-905-24242 82 uk-van-rsre [axm]
    014.000.000.026 2624-522-80329 05 dfvlrsun-x25 [gb7]
    014.000.000.027 2624-457-11015 90 seletfmsun-x25 [bxd]
    014.000.000.028 3110-408-00146 00 cdc-svl [ram57]
    014.000.000.029 2222-551-04400 00 sun-cnuce [abb2]
    014.000.000.030 2222-551-04500 00 icnucevm-cnuce [abb2]
    014.000.000.031 2222-551-04600 00 spare-cnuce [abb2]
    014.000.000.032 2222-551-04700 00 icnucevx-cnuce [abb2]
    014.000.000.033 2222-551-04524 00 cisco-cnuce [abb2]
    014.000.000.034 2342-313-00260 90 spider-gw [ad67]

    reynolds & postel [page 181]

    rfc 1700 assigned numbers october 1994

    014.000.000.035 2342-313-00260 91 spider-exp [ad67]
    014.000.000.036 2342-225-00101 22 praxis-x25a [txr]
    014.000.000.037 2342-225-00101 23 praxis-x25b [txr]
    014.000.000.038 2403-712-30250 00 diab-taby-gw [fxb]
    014.000.000.039 2403-715-30100 00 diab-lkp-gw [fxb]
    014.000.000.040 2401-881-24038 00 diab-taby1-gw [fxb]
    014.000.000.041 2041-170-10060 00 stc [tc27]
    014.000.000.042 2222-551-00652 60 cnuce [tc27]
    014.000.000.043 2422-510-05900 00 tollpost-globe as [oxg]
    014.000.000.044 2422-670-08900 00 tollpost-globe as [oxg]
    014.000.000.045 2422-516-01000 00 tollpost-globe as [oxg]
    014.000.000.046 2422-450-00800 00 tollpost-globe as [oxg]
    014.000.000.047 2422-610-00200 00 tollpost-globe as [oxg]
    014.000.000.048 2422-310-00300 00 tollpost-globe as [oxg]
    014.000.000.049 2422-470-08800 00 tollpost-globe as [oxg]
    014.000.000.050 2422-210-04600 00 tollpost-globe as [oxg]
    014.000.000.051 2422-130-28900 00 tollpost-globe as [oxg]
    014.000.000.052 2422-310-27200 00 tollpost-globe as [oxg]
    014.000.000.053 2422-250-05800 00 tollpost-globe as [oxg]
    014.000.000.054 2422-634-05900 00 tollpost-globe as [oxg]
    014.000.000.055 2422-670-08800 00 tollpost-globe as [oxg]
    014.000.000.056 2422-430-07400 00 tollpost-globe as [oxg]
    014.000.000.057 2422-674-07800 00 tollpost-globe as [oxg]
    014.000.000.058 2422-230-16900 00 tollpost-globe as [oxg]
    014.000.000.059 2422-518-02900 00 tollpost-globe as [oxg]
    014.000.000.060 2422-370-03100 00 tollpost-globe as [oxg]
    014.000.000.061 2422-516-03400 00 tollpost-globe as [oxg]
    014.000.000.062 2422-616-04400 00 tollpost-globe as [oxg]
    014.000.000.063 2422-650-23500 00 tollpost-globe as [oxg]
    014.000.000.064 2422-330-02500 00 tollpost-globe as [oxg]
    014.000.000.065 2422-350-01900 00 tollpost-globe as [oxg]
    014.000.000.066 2422-410-00700 00 tollpost-globe as [oxg]
    014.000.000.067 2422-539-06200 00 tollpost-globe as [oxg]
    014.000.000.068 2422-630-07200 00 tollpost-globe as [oxg]
    014.000.000.069 2422-470-12300 00 tollpost-globe as [oxg]
    014.000.000.070 2422-470-13000 00 tollpost-globe as [oxg]
    014.000.000.071 2422-170-04600 00 tollpost-globe as [oxg]
    014.000.000.072 2422-516-04300 00 tollpost-globe as [oxg]
    014.000.000.073 2422-530-00700 00 tollpost-globe as [oxg]
    014.000.000.074 2422-650-18800 00 tollpost-globe as [oxg]
    014.000.000.075 2422-450-24500 00 tollpost-globe as [oxg]
    014.000.000.076 2062-243-15631 00 dpt-bxl-ddc [lz15]
    014.000.000.077 2062-243-15651 00 dpt-bxl-ddc2 [lz15]
    014.000.000.078 3110-312-00431 00 dpt-chi [lz15]
    014.000.000.079 3110-512-00135 00 dpt-sat-eng [lz15]
    014.000.000.080 2080-941-90550 00 dpt-par [lz15]
    014.000.000.081 4545-511-30600 00 dpt-pbsc [lz15]
    014.000.000.082 4545-513-30900 00 dpt-hongkong [lz15]

    reynolds & postel [page 182]

    rfc 1700 assigned numbers october 1994

    014.000.000.083 4872-203-55000 00 ueci-taipei [lz15]
    014.000.000.084 2624-551-10400 20 dpt-hanovr [lz15]
    014.000.000.085 2624-569-00401 99 dpt-fnkfrt [lz15]
    014.000.000.086 3110-512-00134 00 dpt-sat-supt [lz15]
    014.000.000.087 4602-3010-0103 20 du-x25a [jk64]
    014.000.000.088 4602-3010-0103 21 fdu-x25b [jk64]
    014.000.000.089 2422-150-33700 00 tollpost-globe as [oxg]
    014.000.000.090 2422-271-07100 00 tollpost-globe as [oxg]
    014.000.000.091 2422-516-00100 00 tollpost-globe as [oxg]
    014.000.000.092 2422-650-18800 00 norsk informas. [oxg]
    014.000.000.093 2422-250-30400 00 tollpost-globe as [oxg]
    014.000.000.094 leissner data ab [pxf1]
    014.000.000.095 leissner data ab [pxf1]
    014.000.000.096 leissner data ab [pxf1]
    014.000.000.097 leissner data ab [pxf1]
    014.000.000.098 leissner data ab [pxf1]
    014.000.000.099 leissner data ab [pxf1]
    014.000.000.100 leissner data ab [pxf1]
    014.000.000.101 leissner data ab [pxf1]
    014.000.000.102 leissner data ab [pxf1]
    014.000.000.103 leissner data ab [pxf1]
    014.000.000.104 leissner data ab [pxf1]
    014.000.000.105 leissner data ab [pxf1]
    014.000.000.106 leissner data ab [pxf1]
    014.000.000.107 leissner data ab [pxf1]
    014.000.000.108 leissner data ab [pxf1]
    014.000.000.109 leissner data ab [pxf1]
    014.000.000.110 leissner data ab [pxf1]
    014.000.000.111 leissner data ab [pxf1]
    014.000.000.112 leissner data ab [pxf1]
    014.000.000.113 leissner data ab [pxf1]
    014.000.000.114 leissner data ab [pxf1]
    014.000.000.115 leissner data ab [pxf1]
    014.000.000.116 leissner data ab [pxf1]
    014.000.000.117 leissner data ab [pxf1]
    014.000.000.118 leissner data ab [pxf1]
    014.000.000.119 leissner data ab [pxf1]
    014.000.000.120 leissner data ab [pxf1]
    014.000.000.121 leissner data ab [pxf1]
    014.000.000.122 leissner data ab [pxf1]
    014.000.000.123 leissner data ab [pxf1]
    014.000.000.124 leissner data ab [pxf1]
    014.000.000.125 leissner data ab [pxf1]
    014.000.000.126 leissner data ab [pxf1]
    014.000.000.127 leissner data ab [pxf1]
    014.000.000.128 leissner data ab [pxf1]
    014.000.000.129 2422-150-17900 00 tollpost-globe as [oxg]
    014.000.000.130 2422-150-42700 00 tollpost-globe as [oxg]

    reynolds & postel [page 183]

    rfc 1700 assigned numbers october 1994

    014.000.000.131 2422-190-41900 00 t-g airfreight as [oxg]
    014.000.000.132 2422-616-16100 00 tollpost-globe as [oxg]
    014.000.000.133 2422-150-50700-00 tollpost-globe int. [oxg]
    014.000.000.134 2422-190-28100-00 intersped as [oxg]

    014.000.000.135-014.255.255.254 unassigned [jbp]
    014.255.255.255 reserved [jbp]

    the standard for transmission of ip datagrams over the public data
    network is specified in rfc-1356 [69].

    references

    [rfc877] korb, j., "a standard for the transmission of ip datagrams
    over public data networks", rfc 877, purdue university,
    september 1983.

    people

    [abb2] a. blasco bonito <blasco@icnucevm.cnuce.cnr.it>

    [ad67] andy davis <andy@spider.co.uk>

    [axh] arthur harvey <harvey@gah.enet.dec.com>

    [axm] alex martin <---none--->

    [bxd] brian dockter <---none--->

    [fxb] <mystery contact>

    [gb7] gerd beling <gbeling@isi.edu>

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

    [jd21] jonathan dreyer <dreyer@ccv.bbn.com>

    [jfw] jon f. wilkes <wilkes@ccint1.rsre.mod.uk>

    [jk64] mystery contact!

    [jxe2] jeanne evans <jme%rsre.mod.uk@cs.ucl.ac.uk>

    [lz15] lee ziegenhals <lcz@sat.datapoint.com>

    [ms56] marvin solomon <solomon@cs.wisc.edu>

    reynolds & postel [page 184]

    rfc 1700 assigned numbers october 1994

    [mo2] michael o'brien <obrien@aerospace.aero.org>

    [oxg] oyvind gjerstad <ogj%tglobe2.uucp@nac.no>

    [pam6] paul mcnabb <pam@purdue.edu>

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

    [pxd] peter delchiappo <---none--->

    [pxf1] per futtrup <---none--->

    [ram57] rex mann <---none--->

    [sxa3] sten andler <---none--->

    [tn] thomas narten <narten@purdue.edu>

    [tc27] thomas calderwood <tcalderw@bbn.com>

    [txr] tim rylance <praxis!tkr@uunet.uu.net>

    [uxb] <mystery contact>

    [vxt] v. taylor <vktaylor@ncs.dnd.ca>

    []

    url = ftp://ftp.isi.edu/…assignments/public-data-network-
    numbers

    reynolds & postel [page 185]

    rfc 1700 assigned numbers october 1994

    milnet link numbers

    the word "link" here refers to a field in the original milnet host/imp
    interface leader. the link was originally defined as an 8-bit field.
    later specifications defined this field as the "message-id" with a
    length of 12 bits. the name link now refers to the high order 8 bits of
    this 12-bit message-id field. the host/imp interface is defined in bbn
    report 1822 [bbn1822].

    the low-order 4 bits of the message-id field are called the sub-link.
    unless explicitly specified otherwise for a particular protocol, there
    is no sender to receiver significance to the sub-link. the sender may
    use the sub-link in any way he chooses (it is returned in the rfnm by
    the destination imp), the receiver should ignore the sub-link.

    link assignments:

    decimal description references
    ------- ----------- ----------
    0-63 bbncc monitoring [mb]
    64-149 unassigned [jbp]
    150 xerox ns idp [ethernet,xerox]
    151 unassigned [jbp]
    152 parc universal protocol [pup,xerox]
    153 tip status reporting [jgh]
    154 tip accounting [jgh]
    155 internet protocol [regular] [rfc791,jbp]
    156-158 internet protocol [experimental] [rfc791,jbp]
    159 figleaf link [jbw1]
    160 blacker local network protocol [dm28]
    161-194 unassigned [jbp]
    195 iso-ip [rfc926,rxm]
    196-247 experimental protocols [jbp]
    248-255 network maintenance [jgh]

    milnet logical addresses

    the milnet facility for "logical addressing" is described in [rfc878]
    and [rfc1005]. a portion of the possible logical addresses are
    reserved for standard uses.

    there are 49,152 possible logical host addresses. of these, 256 are
    reserved for assignment to well-known functions. assignments for
    well-known functions are made by the iana. assignments for other

    reynolds & postel [page 186]

    rfc 1700 assigned numbers october 1994

    logical host addresses are made by the nic.

    logical address assignments:

    decimal description references
    ------- ----------- ----------
    0 reserved [jbp]
    1 the bbn core gateways [mb]
    2-254 unassigned [jbp]
    255 reserved [jbp]

    milnet x.25 address mappings

    all milnet hosts are assigned addresses by the defense data network
    (ddn). the address of a milnet host may be obtained from the network
    information center (nic), represented as an ascii text string in what
    is called "host table format". this section describes the process by
    which milnet x.25 addresses may be derived from addresses in the nic
    host table format.

    a nic host table address consists of the ascii text string
    representations of four decimal numbers separated by periods,
    corresponding to the four octeted of a thirty-two bit internet
    address. the four decimal numbers are referred to in this section as
    "n", "h' "l", and "i". thus, a host table address may be represented
    as: "n.h.l.i". each of these four numbers will have either one, two,
    or three decimal digits and will never have a value greater than 255.
    for example, in the host table, address: "10.2.0.124", n=10, h=2, l=0,
    and i=124. to convert a host table address to a milnet x.25 address:

    1. if h < 64, the host table address corresponds to the x.25
    physical address:

    zzzz f iiihhzz (ss)

    where:

    zzzz = 0000 as required

    f = 0 because the address is a physical address;

    iii is a three decimal digit respresentation of
    "i", right-adjusted and padded with leading

    reynolds & postel [page 187]

    rfc 1700 assigned numbers october 1994

    zeros if required;

    hh is a two decimal digit representation of "h",
    right-adjusted and padded with leading zeros
    if required;

    zz = 00 and

    (ss) is optional

    in the example given above, the host table address 10.2.0.124
    corresponds to the x.25 physical address 000001240200.

    2. if h > 64 or h = 64, the host table address corresponds to the
    x.25 logical address

    zzzz f rrrrrzz (ss)

    where:

    zzzz = 0000 as required

    f = 1 because the address is a logical address;

    rrrrr is a five decimal digit representation of
    the result "r" of the calculation

    r = h * 256 + i

    (note that the decimal representation of
    "r" will always require five digits);

    zz = 00 and

    (ss) is optional

    thus, the host table address 10.83.0.207 corresponds to the x.25
    logical address 000012145500.

    in both cases, the "n" and "l" fields of the host table address are
    not used.

    references

    [bbn1822] bbn, "specifications for the interconnection of a host and

    reynolds & postel [page 188]

    rfc 1700 assigned numbers october 1994

    an imp", report 1822, bolt beranek and newman, cambridge,
    massachusetts, revised, december 1981.

    [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.

    [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.

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

    [rfc878] malis, andrew, "the arpanet 1822l host access protocol",
    rfc 878, bbn communications corp., december 1983.

    [rfc926] international standards organization, "protocol for providing
    the connectionless-mode network services", rfc 926, iso,
    december 1984.

    [rfc1005] khanna, a., and a. malis, "the arpanet ahip-e host access
    protocol (enhanced ahip)", rfc 1005, bbn communications
    corp., may 1987.

    people

    [dm28] dennis morris <morrisd@imo-uvax.dca.mil>

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

    [jbw1] joseph walters, jr. <jwalters@bbn.com>

    [jgh] jim herman <herman@ccj.bbn.com>

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

    reynolds & postel [page 189]

    rfc 1700 assigned numbers october 1994

    [rxm] robert myhill <myhill@ccs.bbn.com>

    [xerox] fonda pallone <---none--->

    []

    url = ftp://ftp.isi.edu/…na/assignments/milnet-parameters

    reynolds & postel [page 190]

    rfc 1700 assigned numbers october 1994

    xns protocol types

    assigned well-known socket numbers

    routing information 1
    echo 2
    router error 3
    experimental 40-77

    assigned internet packet types

    routing information 1
    echo 2
    error 3
    packet exchange 4
    sequenced packet 5
    pup 12
    dod ip 13
    experimental 20-37

    []

    url = ftp://ftp.isi.edu/…a/assignments/xns-protocol-types

    reynolds & postel [page 191]

    rfc 1700 assigned numbers october 1994

    internet / xns protocol mappings

    below are two tables describing the arrangement of protocol fields or
    type field assignments so that one could send xns datagrams on the
    milnet or internet datagrams on 10mb ethernet, and also protocol and
    type fields so one could encapsulate each kind of datagram in the
    other.

    upper| dod ip | pup | ns ip |
    lower | | | |
    --------------|--------|--------|--------|
    | type | type | type |
    3mb ethernet | 1001 | 1000 | 3000 |
    | octal | octal | octal |
    --------------|--------|--------|--------|
    | type | type | type |
    10 mb ethernet| 0800 | 0200 | 0600 |
    | hex | hex | hex |
    --------------|--------|--------|--------|
    | link | link | link |
    milnet | 155 | 152 | 150 |
    | decimal| decimal| decimal|
    --------------|--------|--------|--------|

    upper| dod ip | pup | ns ip |
    lower | | | |
    --------------|--------|--------|--------|
    | |protocol|protocol|
    dod ip | x | 12 | 22 |
    | | decimal| decimal|
    --------------|--------|--------|--------|
    | | | |
    pup | ? | x | ? |
    | | | |
    --------------|--------|--------|--------|
    | type | type | |
    ns ip | 13 | 12 | x |
    | decimal| decimal| |
    --------------|--------|--------|--------|

    []

    reynolds & postel [page 192]

    rfc 1700 assigned numbers october 1994

    url = ftp://ftp.isi.edu/…/iana/assignments/ip-xns-mapping

    reynolds & postel [page 193]

    rfc 1700 assigned numbers october 1994

    pronet 80 type numbers

    below is the current list of pronet 80 type numbers. note: a protocol
    that is on this list does not necessarily mean that there is any
    implementation of it on pronet.

    of these, protocols 1, 14, and 20 are the only ones that have ever
    been seen in arp packets.

    for reference, the header is (one byte/line):

    destination hardware address
    source hardware address
    data link header version (2)
    data link header protocol number
    data link header reserved (0)
    data link header reserved (0)

    some protocols have been known to tuck stuff in the reserved fields.

    those who need a protocol number on pronet-10/80 should contact john
    shriver (jas@proteon.com).

    1 ip
    2 ip with trailing headers
    3 address resolution protocol
    4 proteon hdlc
    5 vax debugging protocol (mit)
    10 novell netware (ipx and pre-ipx) (old format,
    3 byte trailer)
    11 vianetix
    12 pup
    13 watstar protocol (university of waterloo)
    14 xns
    15 diganostics
    16 echo protocol (link level)
    17 banyan vines
    20 decnet (deuna emulation)
    21 chaosnet
    23 ieee 802.2 or iso 8802/2 data link
    24 reverse address resolution protocol
    29 tokenview-10
    31 appletalk lap data packet
    33 cornell boot server location protocol
    34 novell netware ipx (new format, no trailer,
    new xor checksum)

    reynolds & postel [page 194]

    rfc 1700 assigned numbers october 1994

    []

    url = ftp://ftp.isi.edu/…ssignments/pronet80-type-numbers

    reynolds & postel [page 195]

    rfc 1700 assigned numbers october 1994

    novell sap numbers of interest

    for the convenience of the internet community the iana maitains a list
    of novell service access point (sap) numbers. this list is kept
    up-to-date- by contributions from the community. please send
    corrections and additions to iana@isi.edu.

    novell saps
    ====== ====

    decimal hex sap description
    ======= ==== ===============

    0 0000 unknown
    1 0001 user
    2 0002 user group
    3 0003 print queue or print group
    4 0004 file server (slist source)
    5 0005 job server
    6 0006 gateway
    7 0007 print server or silent print server
    8 0008 archive queue
    9 0009 archive server
    10 000a job queue
    11 000b administration
    15 000f novell ti-rpc
    23 0017 diagnostics
    32 0020 netbios
    33 0021 nas sna gateway
    35 0023 nacs async gateway or asynchronous gateway
    36 0024 remote bridge or routing service
    38 0026 bridge server or asynchronous bridge server
    39 0027 tcp/ip gateway server
    40 0028 point to point (eicon) x.25 bridge server
    41 0029 eicon 3270 gateway
    42 002a chi corp ???
    44 002c pc chalkboard
    45 002d time synchronization server or asynchronous timer
    46 002e sap archive server or sms target service agent
    69 0045 di3270 gateway
    71 0047 advertising print server
    75 004b btrieve vap/nlm 5.0
    76 004c netware sql vap/nlm server
    77 004d xtree network version netware xtree
    80 0050 btrieve vap 4.11
    82 0052 quicklink (cubix)
    83 0053 print queue user
    88 0058 multipoint x.25 eicon router

    reynolds & postel [page 196]

    rfc 1700 assigned numbers october 1994

    96 0060 stlb/nlm ???
    100 0064 arcserve
    102 0066 arcserve 3.0
    114 0072 wan copy utility
    122 007a tes-netware for vms
    146 0092 watcom debugger or emerald tape backup server
    149 0095 dda obgyn ???
    152 0098 netware access server (asynchronous gateway)
    154 009a netware for vms ii or named pipe server
    155 009b netware access server
    158 009e portable netware server or sunlink nvt
    161 00a1 powerchute apc ups nlm
    170 00aa lawserve ???
    172 00ac compaq ida status monitor
    256 0100 pipe stail ???
    258 0102 lan protect bindery
    259 0103 oracle database server
    263 0107 netware 386 or rspx remote console
    271 010f novell sna gateway
    274 0112 print server (hp)
    276 0114 csa mux (f/communications executive)
    277 0115 csa lca (f/communications executive)
    278 0116 csa cm (f/communications executive)
    279 0117 csa sma (f/communications executive)
    280 0118 csa dba (f/communications executive)
    281 0119 csa nma (f/communications executive)
    282 011a csa ssa (f/communications executive)
    283 011b csa status (f/communications executive)
    286 011e csa appc (f/communications executive)
    294 0126 sna test ssa profile
    298 012a csa trace (f/communications executive)
    304 0130 communications executive
    307 0133 nns domain server or netware naming services domain
    309 0135 netware naming services profile
    311 0137 netware 386 print queue or nns print queue
    321 0141 lan spool server (vap, intel)
    338 0152 irmalan gateway
    340 0154 named pipe server
    360 0168 intel pickit comm server or intel cas talk server
    369 171 unknown???
    371 0173 compaq
    372 0174 compaq snmp agent
    373 0175 compaq
    384 0180 xtree server or xtree tools
    394 18a unknown??? running on a novell server
    432 01b0 garp gateway (net research)
    433 01b1 binfview (lan support group)
    447 01bf intel landesk manager

    reynolds & postel [page 197]

    rfc 1700 assigned numbers october 1994

    458 01ca axtec ???
    459 01cb netmode ???
    460 1cc unknown??? sheva netmodem???
    472 01d8 castelle faxpress server
    474 01da castelle lanpress print server
    476 1dc castille fax/xerox 7033 fax server/excel lan fax
    496 01f0 legato ???
    501 01f5 legato ???
    563 0233 nms agent or netware management agent
    567 0237 nms ipx discovery or lantern read/write channel
    568 0238 nms ip discovery or lantern trap/alarm channel
    570 023a labtern
    572 023c maverick ???
    574 23e unknown??? running on a novell server
    575 023f used by eleven various novell servers
    590 024e remote something ???
    618 026a network management (nms) service console
    619 026b time synchronization server (netware 4.x)
    632 0278 directory server (netware 4.x)
    772 0304 novell saa gateway
    776 0308 com or vermed 1 ???
    778 030a gallacticom bbs
    780 030c intel netport 2 or hp jetdirect or hp quicksilver
    800 0320 attachmate gateway
    807 0327 microsoft diagnostiocs ???
    821 0335 multitech systems multisynch comm server
    853 0355 arcada backup exec
    858 0358 mslcd1 ???
    865 0361 netinelo ???
    894 037e twelve novell file servers in the pc3m family
    895 037f virusafe notify
    902 0386 hp bridge
    903 0387 hp hub
    916 0394 netware saa gateway
    923 039b lotus notes
    951 03b7 certus anti virus nlm
    964 03c4 arcserve 4.0 (cheyenne)
    967 03c7 lanspool 3.5 (intel)
    990 03de gupta sequel base server or netware sql
    993 03e1 univel unixware
    996 03e4 univel unixware
    1020 03fc intel netport
    1021 03fd print server queue ???
    1034 40a ipnserver??? running on a novell server
    1035 40b unknown???
    1037 40d lverrman??? running on a novell server
    1038 40e lvlic??? running on a novell server
    1040 410 unknown??? running on a novell server

    reynolds & postel [page 198]

    rfc 1700 assigned numbers october 1994

    1044 0414 kyocera
    1065 0429 site lock virus (brightworks)
    1074 0432 ufhelp r ???
    1075 433 sunoptics snmp agent???
    1100 044c backup ???
    1111 457 canon gp55??? running on a canon gp55 network printer
    1115 045b dell scsi array (dsa) monitor
    1200 04b0 cd-net (meridian)
    1217 4c1 unknown???
    1299 513 emulux nqa??? something from emulex
    1312 0520 site lock checks
    1321 0529 site lock checks (brightworks)
    1325 052d citrix os/2 app server
    1344 536 milan ???
    1408 0580 mcafee's netshield anti-virus
    1569 621 ?? something from emulex
    1571 623 unknown??? running on a novell server
    1900 076c xerox
    2857 0b29 site lock
    3113 0c29 site lock applications
    3116 0c2c licensing server
    9088 2380 lai site lock
    9100 238c meeting maker
    18440 4808 site lock server or site lock metering vap/nlm
    21845 5555 site lock user
    25362 6312 tapeware
    28416 6f00 rabbit gateway (3270)
    30467 7703 modem??
    32770 8002 netport printers (intel) or lanport
    32776 8008 wordperfect network version
    34238 85be cisco enhanced interior routing protocol (eigrp)
    34952 8888 wordperfect network version or quick network management
    36864 9000 mcafee's netshield anti-virus
    38404 9604 ?? csa-nt_mon
    61727 f11f site lock metering vap/nlm
    61951 f1ff site lock
    62723 f503 ?? sca-nt
    65535 ffff any service or wildcard

    this file is

    ftp://ftp.isi.edu/…a/assignments/novell-sap-numbers

    []

    url = ftp://ftp.isi.edu/…a/assignments/novell-sap-numbers

    reynolds & postel [page 199]

    rfc 1700 assigned numbers october 1994

    point-to-point protocol field assignments

    ppp dll protocol numbers

    the point-to-point protocol (ppp) data link layer [146,147,175]
    contains a 16 bit protocol field to identify the the encapsulated
    protocol. the protocol field is consistent with the iso 3309 (hdlc)
    extension mechanism for address fields. all protocols must be
    assigned such that the least significant bit of the most significant
    octet equals "0", and the least significant bit of the least
    significant octet equals "1".

    assigned ppp dll protocol numbers

    value (in hex) protocol name

    0001 padding protocol
    0003 to 001f reserved (transparency inefficient)
    0021 internet protocol
    0023 osi network layer
    0025 xerox ns idp
    0027 decnet phase iv
    0029 appletalk
    002b novell ipx
    002d van jacobson compressed tcp/ip
    002f van jacobson uncompressed tcp/ip
    0031 bridging pdu
    0033 stream protocol (st-ii)
    0035 banyan vines
    0037 reserved (until 1993)
    0039 appletalk eddp
    003b appletalk smartbuffered
    003d multi-link
    003f netbios framing
    0041 cisco systems
    0043 ascom timeplex
    0045 fujitsu link backup and load balancing (lblb)
    0047 dca remote lan
    0049 serial data transport protocol (ppp-sdtp)
    004b sna over 802.2
    004d sna
    004f ip6 header compression
    006f stampede bridging
    007d reserved (control escape) [rfc1661]
    007f reserved (compression inefficient) [rfc1662]
    00cf reserved (ppp nlpid)
    00fb compression on single link in multilink group
    00fd 1st choice compression

    reynolds & postel [page 200]

    rfc 1700 assigned numbers october 1994

    00ff reserved (compression inefficient)

    0201 802.1d hello packets
    0203 ibm source routing bpdu
    0205 dec lanbridge100 spanning tree
    0231 luxcom
    0233 sigma network systems

    8001-801f not used - reserved [rfc1661]
    8021 internet protocol control protocol
    8023 osi network layer control protocol
    8025 xerox ns idp control protocol
    8027 decnet phase iv control protocol
    8029 appletalk control protocol
    802b novell ipx control protocol
    802d reserved
    802f reserved
    8031 bridging ncp
    8033 stream protocol control protocol
    8035 banyan vines control protocol
    8037 reserved till 1993
    8039 reserved
    803b reserved
    803d multi-link control protocol
    803f netbios framing control protocol
    807d not used - reserved [rfc1661]
    8041 cisco systems control protocol
    8043 ascom timeplex
    8045 fujitsu lblb control protocol
    8047 dca remote lan network control protocol (rlncp)
    8049 serial data control protocol (ppp-sdcp)
    804b sna over 802.2 control protocol
    804d sna control protocol
    804f ip6 header compression control protocol
    006f stampede bridging control protocol
    80cf not used - reserved [rfc1661]
    80fb compression on single link in multilink group control
    80fd compression control protocol
    80ff not used - reserved [rfc1661]

    c021 link control protocol
    c023 password authentication protocol
    c025 link quality report
    c027 shiva password authentication protocol
    c029 callback control protocol (cbcp)
    c081 container control protocol [ken]
    c223 challenge handshake authentication protocol
    c281 proprietary authentication protocol [ken]

    reynolds & postel [page 201]

    rfc 1700 assigned numbers october 1994

    c26f stampede bridging authorization protocol
    c481 proprietary node id authentication protocol [ken]

    protocol field values in the "0xxx" to "3xxx" range identify the
    network-layer protocol of specific datagrams, and values in the "8xxx"
    to "bxxx" range identify datagrams belonging to the associated network
    control protocol (ncp), if any.

    it is recommended that values in the "02xx" to "1exx" and "xx01" to
    "xx1f" ranges not be assigned, as they are compression inefficient.

    protocol field values in the "4xxx" to "7xxx" range are used for
    protocols with low volume traffic which have no associated ncp.

    protocol field values in the "cxxx" to "exxx" range identify datagrams
    as control protocols (such as lcp).

    ppp lcp and ipcp codes

    the point-to-point protocol (ppp) link control protocol (lcp), [146]
    the compression control protocol (ccp), internet protocol control
    protocol (ipcp), [147] and other control protocols, contain an 8 bit
    code field which identifies the type of packet. these codes are
    assigned as follows:

    code packet type
    ---- -----------
    1 configure-request
    2 configure-ack
    3 configure-nak
    4 configure-reject
    5 terminate-request
    6 terminate-ack
    7 code-reject
    8 * protocol-reject
    9 * echo-request
    10 * echo-reply
    11 * discard-request
    12 * identification
    13 * time-remaining
    14 + reset-request
    15 + reset-reply

    * lcp only
    + ccp only

    ppp lcp configuration option types

    reynolds & postel [page 202]

    rfc 1700 assigned numbers october 1994

    the point-to-point protocol (ppp) link control protocol (lcp)
    specifies a number of configuration options [146] which are
    distinguished by an 8 bit type field. these types are assigned as
    follows:

    type configuration option
    ---- --------------------
    1 maximum-receive-unit
    2 async-control-character-map
    3 authentication-protocol
    4 quality-protocol
    5 magic-number
    6 reserved
    7 protocol-field-compression
    8 address-and-control-field-compression
    9 fcs-alternatives
    10 self-describing-pad
    11 numbered-mode
    12 multi-link-procedure
    13 callback
    14 connect-time
    15 compound-frames
    16 nominal-data-encapsulation
    17 multilink-mrru
    18 multilink-short-sequence-number-header-format
    19 multilink-endpoint-discriminator
    20 proprietary [ken]
    21 dce-identifier [schneider]

    ppp lcp fcs-alternatives

    the point-to-point protocol (ppp) link control protocol (lcp)
    fcs-alternatives configuration option contains an 8-bit options field
    which identifies the fcs used. these are assigned as follows:

    bit fcs
    ---- ----------
    1 null fcs
    2 ccitt 16-bit fcs
    4 ccitt 32-bit fcs

    ppp lcp callback operation fields

    the point-to-point protocol (ppp) link control protocol (lcp) callback
    configuration option contains an 8-bit operations field which
    identifies the format of the message. these are assigned as follows:

    reynolds & postel [page 203]

    rfc 1700 assigned numbers october 1994

    operation description
    --------- ---------------------------
    0 location determined by user authentication.
    1 dialing string.
    2 location identifier.
    3 e.164 number.
    4 x.500 distinguished name.
    5 unassigned
    6 location is determined during cbcp negotiation.

    ppp ipcp configuration option types

    the point-to-point protocol (ppp) internet protocol control protocol
    (ipcp) specifies a number of configuration options [147] which are
    distinguished by an 8 bit type field. these types are assigned as
    follows:

    type configuration option
    ---- --------------------
    1 ip-addresses (deprecated)
    2 ip-compression-protocol
    3 ip-address

    ppp atcp configuration option types

    the point-to-point protocol (ppp) apple talk control protocol (atcp)
    specifies a number of configuration options [rfc-1378] which are
    distinguished by an 8 bit type field. these types are assigned as
    follows:

    type configuration option
    ---- --------------------
    1 appletalk-address
    2 routing-protocol
    3 suppress-broadcasts
    4 at-compression-protocol
    5 reserved
    6 server-information
    7 zone-information
    8 default-router-address

    ppp osinlcp configuration option types

    the point-to-point protocol (ppp) osi network layer control protocol
    (osinlcp) specifies a number of configuration options [rfc-1377] which
    are distinguished by an 8 bit type field. these types are assigned as
    follows:

    reynolds & postel [page 204]

    rfc 1700 assigned numbers october 1994

    type configuration option
    ---- --------------------
    1 align-npdu

    ppp bridging configuration option types

    the point-to-point protocol (ppp) bridging control protocol (bcp)
    specifies a number of configuration options which are distinguished by
    an 8 bit type field. these types are assigned as follows:

    type configuration option
    ---- --------------------
    1 bridge-identification
    2 line-identification
    3 mac-support
    4 tinygram-compression
    5 lan-identification
    6 mac-address
    7 spanning-tree-protocol

    ppp bridging mac types

    the point-to-point protocol (ppp) bridging control protocol (bcp)
    contains an 8 bit mac type field which identifies the mac
    encapsulated. these types are assigned as follows:

    type mac
    ---- -----------
    0 reserved
    1 ieee 802.3/ethernet with cannonical addresses
    2 ieee 802.4 with cannonical addresses
    3 ieee 802.5 with non-cannonical addresses
    4 fddi with non-cannonical addresses
    5-10 reserved
    11 ieee 802.5 with cannonical addresses
    12 fddi with cannonical addresses

    ppp bridging spanning tree

    the point-to-point protocol (ppp) bridging control protocol (bcp)
    spanning tree configuration option contains an 8-bit protocol field
    which identifies the spanning tree used. these are assigned as
    follows:

    protocol spanning tree
    -------- ---------------
    0 null - no spanning tree protocol supported
    1 ieee 802.1d spanning tree protocol

    reynolds & postel [page 205]

    rfc 1700 assigned numbers october 1994

    2 ieee 802.1g extended spanning tree protocol
    3 ibm source route spanning tree protocol
    4 dec lanbridge 100 spanning tree protocol

    references

    [rfc1661] simpson, w., editor, "the point-to-point protocol (ppp)",
    std 51, rfc 1661, daydreamer, july 1994.

    [rfc1662] simpson, w., editor, "ppp in hdlc-like framing", std 51, rfc
    1662, daydreamer, july 1994.

    people

    [ken] <ken@funk.com>

    [schneider] kevin schneider <kevin@adtran.com>

    []

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

    reynolds & postel [page 206]

    rfc 1700 assigned numbers october 1994

    machine names

    these are the official machine names as they appear in the domain name
    system hinfo records and the nic host table. their use is described
    in [rfc952].

    a machine name or cpu type may be up to 40 characters taken from the
    set of uppercase letters, digits, and the two punctuation characters
    hyphen and slash. it must start with a letter, and end with a letter
    or digit.

    amiga-500
    amiga-500/010
    amiga-500/020
    amiga-500/ec030
    amiga-500/030
    amiga-600
    amiga-1000
    amiga-1000/010
    amiga-1000/020
    amiga-1000/ec030
    amiga-1000/030
    amiga-1200
    amiga-1200/ec030
    amiga-1200/030
    amiga-1200/ec040
    amiga-1200/lc040
    amiga-1200/040
    amiga-2000
    amiga-2000/010
    amiga-2000/020
    amiga-2000/ec030
    amiga-2000/030
    amiga-2000/lc040
    amiga-2000/ec040
    amiga-2000/040
    amiga-3000
    amiga-3000/ec040
    amiga-3000/lc040
    amiga-3000/040
    amiga-3000/060
    amiga-4000/ec030
    amiga-4000/030
    amiga-4000/lc040
    amiga-4000/040
    amiga-4000/060
    alto

    reynolds & postel [page 207]

    rfc 1700 assigned numbers october 1994

    altos-6800
    amdahl-v7
    apollo
    apple-macintosh
    apple-powerbook
    atari-104st
    att-3b1
    att-3b2
    att-3b20
    att-7300
    axp
    bbn-c/60
    burroughs-b/29
    burroughs-b/4800
    butterfly
    c/30
    c/70
    cadlinc
    cadr
    cdc-170
    cdc-170/750
    cdc-173
    cdtv
    cdtv/060
    cd32
    celerity-1200
    club-386
    compaq-386/20
    comten-3690
    cp8040
    cray-1
    cray-x/mp
    cray-2
    ctiws-117
    dandelion
    dec-10
    dec-1050
    dec-1077
    dec-1080
    dec-1090
    dec-1090b
    dec-1090t
    dec-2020t
    dec-2040
    dec-2040t
    dec-2050t
    dec-2060
    dec-2060t

    reynolds & postel [page 208]

    rfc 1700 assigned numbers october 1994

    dec-2065
    dec-axp
    dec-falcon
    dec-ks10
    decstation
    dec-vax
    dec-vaxcluster
    dec-vaxstation
    dec-vax-11730
    dorado
    dps8/70m
    elxsi-6400
    everex-386
    foonly-f2
    foonly-f3
    foonly-f4
    gould
    gould-6050
    gould-6080
    gould-9050
    gould-9080
    h-316
    h-60/68
    h-68
    h-68/80
    h-89
    honeywell-dps-6
    honeywell-dps-8/70
    hp3000
    hp3000/64
    ibm-158
    ibm-360/67
    ibm-370/3033
    ibm-3081
    ibm-3084qx
    ibm-3101
    ibm-4331
    ibm-4341
    ibm-4361
    ibm-4381
    ibm-4956
    ibm-6152
    ibm-pc
    ibm-pc/at
    ibm-pc/rt
    ibm-pc/xt
    ibm-rs/6000
    ibm-series/1

    reynolds & postel [page 209]

    rfc 1700 assigned numbers october 1994

    imagen
    imagen-8/300
    imsai
    integrated-solutions
    integrated-solutions-68k
    integrated-solutions-creator
    integrated-solutions-creator-8
    intel-386
    intel-ipsc
    is-1
    is-68010
    lmi
    lsi-11
    lsi-11/2
    lsi-11/23
    lsi-11/73
    m68000
    mac-ii
    mac-powerbook
    macintosh
    masscomp
    mc500
    mc68000
    microport
    microvax
    microvax-i
    mv/8000
    nas3-5
    ncr-comten-3690
    next/n1000-316
    now
    onyx-z8000
    pdp-11
    pdp-11/3
    pdp-11/23
    pdp-11/24
    pdp-11/34
    pdp-11/40
    pdp-11/44
    pdp-11/45
    pdp-11/50
    pdp-11/70
    pdp-11/73
    pe-7/32
    pe-3205
    perq
    plexus-p/60
    pli

    reynolds & postel [page 210]

    rfc 1700 assigned numbers october 1994

    pluribus
    prime-2350
    prime-2450
    prime-2755
    prime-9655
    prime-9755
    prime-9955ii
    prime-2250
    prime-2655
    prime-9955
    prime-9950
    prime-9650
    prime-9750
    prime-2250
    prime-750
    prime-850
    prime-550ii
    pyramid-90
    pyramid-90mx
    pyramid-90x
    ridge
    ridge-32
    ridge-32c
    rolm-1666
    rs/6000
    s1-mkiia
    smi
    sequent-balance-8000
    siemens
    silicon-graphics
    silicon-graphics-iris
    sgi-iris-2400
    sgi-iris-2500
    sgi-iris-3010
    sgi-iris-3020
    sgi-iris-3030
    sgi-iris-3110
    sgi-iris-3115
    sgi-iris-3120
    sgi-iris-3130
    sgi-iris-4d/20
    sgi-iris-4d/20g
    sgi-iris-4d/25
    sgi-iris-4d/25g
    sgi-iris-4d/25s
    sgi-iris-4d/50
    sgi-iris-4d/50g
    sgi-iris-4d/50gt

    reynolds & postel [page 211]

    rfc 1700 assigned numbers october 1994

    sgi-iris-4d/60
    sgi-iris-4d/60g
    sgi-iris-4d/60t
    sgi-iris-4d/60gt
    sgi-iris-4d/70
    sgi-iris-4d/70g
    sgi-iris-4d/70gt
    sgi-iris-4d/80gt
    sgi-iris-4d/80s
    sgi-iris-4d/120gtx
    sgi-iris-4d/120s
    sgi-iris-4d/210gtx
    sgi-iris-4d/210s
    sgi-iris-4d/220gtx
    sgi-iris-4d/220s
    sgi-iris-4d/240gtx
    sgi-iris-4d/240s
    sgi-iris-4d/280gtx
    sgi-iris-4d/280s
    sgi-iris-cs/12
    sgi-iris-4server-8
    sperry-dcp/10
    sun
    sun-2
    sun-2/50
    sun-2/100
    sun-2/120
    sun-2/130
    sun-2/140
    sun-2/150
    sun-2/160
    sun-2/170
    sun-3/50
    sun-3/60
    sun-3/75
    sun-3/80
    sun-3/110
    sun-3/140
    sun-3/150
    sun-3/160
    sun-3/180
    sun-3/200
    sun-3/260
    sun-3/280
    sun-3/470
    sun-3/480
    sun-4/60
    sun-4/110

    reynolds & postel [page 212]

    rfc 1700 assigned numbers october 1994

    sun-4/150
    sun-4/200
    sun-4/260
    sun-4/280
    sun-4/330
    sun-4/370
    sun-4/390
    sun-50
    sun-100
    sun-120
    sun-130
    sun-150
    sun-170
    sun-386i/250
    sun-68000
    symbolics-3600
    symbolics-3670
    symmetric-375
    symult
    tandem-txp
    tandy-6000
    tek-6130
    ti-explorer
    tp-4000
    trs-80
    univac-1100
    univac-1100/60
    univac-1100/62
    univac-1100/63
    univac-1100/64
    univac-1100/70
    univac-1160
    unknown
    vax
    vax-11/725
    vax-11/730
    vax-11/750
    vax-11/780
    vax-11/785
    vax-11/790
    vax-11/8600
    vax-8600
    vaxcluster
    vaxstation
    wang-pc002
    wang-vs100
    wang-vs400
    wyse-386

    reynolds & postel [page 213]

    rfc 1700 assigned numbers october 1994

    wyse-wn5004
    wyse-wn5008
    wyse-wn5104
    wyse-wn5108
    wyse-wx15c
    wyse-wx17c
    wyse-wx17m
    wyse-wx19c
    wyse-wx19m
    wyse-wyx14m
    wyse-wyx5
    xerox-1108
    xerox-8010
    zenith-148

    references

    [rfc952] harrenstien, k., stahl, m., and e. feinler, "dod internet
    host table specification", rfc 952, sri, october 1985.

    []

    url = ftp://ftp.isi.edu/…s/iana/assignments/machine-names

    reynolds & postel [page 214]

    rfc 1700 assigned numbers october 1994

    operating system names

    these are the official system names as they appear in the domain name
    system hinfo records and the nic host table. their use is described in
    [rfc952].

    a system name may be up to 40 characters taken from the set of
    uppercase letters, digits, and the three punctuation characters
    hyphen, period, and slash. it must start with a letter, and end with
    a letter or digit.

    aegis
    amiga-os-1.2
    amiga-os-1.3
    amiga-os-2.0
    amiga-os-2.1
    amiga-os-3.0
    amiga-os-3.1
    apollo
    aix/370
    aix-ps/2
    bs-2000
    cedar
    cgw
    chorus
    chrysalis
    cmos
    cms
    cos
    cpix
    ctos
    ctss
    dcn
    ddnos
    domain
    dos
    edx
    elf
    embos
    emmos
    epos
    foonex
    forth
    fuzz
    gcos
    gpos

    reynolds & postel [page 215]

    rfc 1700 assigned numbers october 1994

    hdos
    imagen
    intercom
    impress
    interlisp
    ios
    irix
    isi-68020
    its
    lisp
    lispm
    locus
    macos
    minos
    mos
    mpe5
    mpe/v
    mpe/ix
    msdos
    multics
    music
    music/sp
    mvs
    mvs/sp
    nexus
    nms
    nonstop
    nos-2
    ntos
    openvms
    os/ddp
    os/2
    os4
    os86
    osx
    pcdos
    perq/os
    pli
    psdos/mit
    primos
    rmx/rdos
    ros
    rsx11m
    rte-a
    satops
    sco-open-desktop-1.0
    sco-open-desktop-1.1
    sco-open-desktop-2.0

    reynolds & postel [page 216]

    rfc 1700 assigned numbers october 1994

    sco-open-desktop-3.0
    sco-open-desktop-lite-3.0
    sco-open-server-3.0
    sco-unix-3.2.0
    sco-unix-3.2v2.0
    sco-unix-3.2v2.1
    sco-unix-3.2v4.0
    sco-unix-3.2v4.1
    sco-unix-3.2v4.2
    sco-xenix-386-2.3.2
    sco-xenix-386-2.3.3
    sco-xenix-386-2.3.4
    scs
    simp
    sun
    sun-os-3.5
    sun-os-4.0
    swift
    tac
    tandem
    tenex
    the-major-bbs
    tops10
    tops20
    tos
    tp3010
    trsdos
    ultrix
    unix
    unix-bsd
    unix-v1at
    unix-v
    unix-v.1
    unix-v.2
    unix-v.3
    unix-pc
    unknown
    ut2d
    v
    vm
    vm/370
    vm/cms
    vm/sp
    vms
    vms/eunice
    vrtx
    waits
    wang

    reynolds & postel [page 217]

    rfc 1700 assigned numbers october 1994

    win32
    wyse-wyxware
    x11r3
    xde
    xenix

    references

    [rfc952] harrenstien, k., stahl, m., and e. feinler, "dod internet
    host table specification", rfc 952, sri, october 1985.

    []

    url = ftp://ftp.isi.edu/…signments/operating-system-names

    reynolds & postel [page 218]

    rfc 1700 assigned numbers october 1994

    terminal type names

    these are the official terminal type names. their use is described in
    [rfc930]. the maximum length of a name is 40 characters.

    a terminal names may be up to 40 characters taken from the set of
    uppercase letters, digits, and the two punctuation characters hyphen
    and slash. it must start with a letter, and end with a letter or
    digit.

    adds-consul-980
    adds-regent-100
    adds-regent-20
    adds-regent-200
    adds-regent-25
    adds-regent-40
    adds-regent-60
    adds-viewpoint
    adds-viewpoint-60
    aed-512
    ampex-dialogue-210
    ampex-dialogue-80
    ampex-210
    ampex-230
    anderson-jacobson-510
    anderson-jacobson-630
    anderson-jacobson-832
    anderson-jacobson-841
    ann-arbor-ambassador
    ansi
    ards
    bitgraph
    bussiplexer
    calcomp-565
    cdc-456
    cdi-1030
    cdi-1203
    c-itoh-101
    c-itoh-50
    c-itoh-80
    clnz
    compucolor-ii
    concept-100
    concept-104
    concept-108
    data-100

    reynolds & postel [page 219]

    rfc 1700 assigned numbers october 1994

    data-general-6053
    datagraphix-132a
    datamedia-1520
    datamedia-1521
    datamedia-2500
    datamedia-3025
    datamedia-3025a
    datamedia-3045
    datamedia-3045a
    datamedia-dt80/1
    datapoint-2200
    datapoint-3000
    datapoint-3300
    datapoint-3360
    dec-decwriter-i
    dec-decwriter-ii
    dec-gigi
    dec-gt40
    dec-gt40a
    dec-gt42
    dec-la120
    dec-la30
    dec-la36
    dec-la38
    dec-vt05
    dec-vt100
    dec-vt101
    dec-vt102
    dec-vt125
    dec-vt131
    dec-vt132
    dec-vt200
    dec-vt220
    dec-vt240
    dec-vt241
    dec-vt300
    dec-vt320
    dec-vt340
    dec-vt50
    dec-vt50h
    dec-vt52
    dec-vt55
    dec-vt61
    dec-vt62
    delta-data-5000
    delta-data-nih-7000
    delta-telterm-2
    diablo-1620

    reynolds & postel [page 220]

    rfc 1700 assigned numbers october 1994

    diablo-1640
    digilog-333
    dtc-300s
    dtc-382
    edt-1200
    etos52-apl
    etos52-crt
    etos52-fdw
    etos52-fup
    etos52-gfm
    etos52-spr
    execuport-4000
    execuport-4080
    facit-twist-4440
    freedom-100
    freedom-110
    freedom-200
    general-terminal-100a
    general-terminal-101
    gipsi-tx-m
    gipsi-tx-me
    gipsi-tx-c4
    gipsi-tx-c8
    gsi
    hazeltine-1420
    hazeltine-1500
    hazeltine-1510
    hazeltine-1520
    hazeltine-1552
    hazeltine-2000
    hazeltine-esprit
    hitachi-5601
    hitachi-5603
    hitachi-5603e
    hitachi-5603ea
    hitachi-560x
    hitachi-560xe
    hitachi-560xea
    hitachi-560pr
    hitachi-hoap1
    hitachi-hoap2
    hitachi-hoap3
    hitachi-hoap4
    hp-2392
    hp-2621
    hp-2621a
    hp-2621p
    hp-2623

    reynolds & postel [page 221]

    rfc 1700 assigned numbers october 1994

    hp-2626
    hp-2626a
    hp-2626p
    hp-2627
    hp-2640
    hp-2640a
    hp-2640b
    hp-2645
    hp-2645a
    hp-2648
    hp-2648a
    hp-2649
    hp-2649a
    ibm-1050
    ibm-2741
    ibm-3101
    ibm-3101-10
    ibm-3151
    ibm-3179-2
    ibm-3180-2
    ibm-3196-a1
    ibm-3275-2
    ibm-3276-2
    ibm-3276-3
    ibm-3276-4
    ibm-3277-2
    ibm-3278-2
    ibm-3278-3
    ibm-3278-4
    ibm-3278-5
    ibm-3279-2
    ibm-3279-3
    ibm-3477-fc
    ibm-3477-fg
    ibm-5081
    ibm-5151
    ibm-5154
    ibm-5251-11
    ibm-5291-1
    ibm-5292-2
    ibm-5555-b01
    ibm-5555-c01
    ibm-6153
    ibm-6154
    ibm-6155
    ibm-aed
    ibm-3278-2-e
    ibm-3278-3-e

    reynolds & postel [page 222]

    rfc 1700 assigned numbers october 1994

    ibm-3278-4-e
    ibm-3278-5-e
    ibm-3279-2-e
    ibm-3279-3-e
    imlac
    infoton-100
    infoton-400
    infotonkas
    isc-8001
    lsi-adm-1
    lsi-adm-11
    lsi-adm-12
    lsi-adm-2
    lsi-adm-20
    lsi-adm-22
    lsi-adm-220
    lsi-adm-3
    lsi-adm-31
    lsi-adm-3a
    lsi-adm-42
    lsi-adm-5
    memorex-1240
    microbee
    microterm-act-iv
    microterm-act-v
    microterm-ergo-301
    microterm-mime-1
    microterm-mime-2
    microterm-act-5a
    microterm-twist
    nec-5520
    netronics
    network-virtual-terminal
    omron-8025ag
    perkin-elmer-550
    perkin-elmer-1100
    perkin-elmer-1200
    perq
    plasma-panel
    qume-sprint-5
    qume-101
    qume-102
    soroc
    soroc-120
    southwest-technical-products-ct82
    sun
    superbee
    superbee-iii-m

    reynolds & postel [page 223]

    rfc 1700 assigned numbers october 1994

    tec
    tektronix-4006
    tektronix-4010
    tektronix-4012
    tektronix-4013
    tektronix-4014
    tektronix-4023
    tektronix-4024
    tektronix-4025
    tektronix-4027
    tektronix-4105
    tektronix-4107
    tektronix-4110
    tektronix-4112
    tektronix-4113
    tektronix-4114
    tektronix-4115
    tektronix-4125
    tektronix-4404
    teleray-1061
    teleray-3700
    teleray-3800
    teletec-datascreen
    teleterm-1030
    teletype-33
    teletype-35
    teletype-37
    teletype-38
    teletype-40
    teletype-43
    televideo-910
    televideo-912
    televideo-920
    televideo-920b
    televideo-920c
    televideo-925
    televideo-955
    televideo-950
    televideo-970
    televideo-975
    terminet-1200
    terminet-300
    ti-700
    ti-733
    ti-735
    ti-743
    ti-745
    ti-800

    reynolds & postel [page 224]

    rfc 1700 assigned numbers october 1994

    tycom
    univac-dct-500
    video-systems-1200
    video-systems-5000
    volker-craig-303
    volker-craig-303a
    volker-craig-404
    visual-200
    visual-55
    wyse-30
    wyse-50
    wyse-60
    wyse-75
    wyse-85
    wyse-99gt
    wyse-100
    wyse-120
    wyse-120es
    wyse-150
    wyse-150es
    wyse-160
    wyse-160es
    wyse-185
    wyse-185es
    wyse-285
    wyse-285es
    wyse-325
    wyse-325es
    wyse-350
    wyse-370
    xerox-1720
    xterm
    zenith-h19
    zenith-z29
    zentec-30

    references

    [rfc930] solomon, m., and e. wimmers, "telnet terminal type option",
    rfc 930, university of wisconsin, madison, january 1985.

    []

    url = ftp://ftp.isi.edu/…/assignments/terminal-type-names

    reynolds & postel [page 225]

    rfc 1700 assigned numbers october 1994

    protocol and service names

    these are the official protocol names as they appear in the domain
    name system wks records and the nic host table. their use is
    described in [rfc952].

    a protocol or service may be up to 40 characters taken from the set of
    uppercase letters, digits, and the punctuation character hyphen. it
    must start with a letter, and end with a letter or digit.

    argus - argus protocol
    arp - address resolution protocol
    auth - authentication service
    bbn-rcc-mon - bbn rcc monitoring
    bl-idm - britton lee intelligent database machine
    bootp - bootstrap protocol
    bootpc - bootstrap protocol client
    bootps - bootstrap protocol server
    br-sat-mon - backroom satnet monitoring
    cftp - cftp
    chaos - chaos protocol
    chargen - character generator protocol
    cisco-fna - cisco fnative
    cisco-tna - cisco tnative
    cisco-sys - cisco sysmaint
    clock - dcnet time server protocol
    cmot - common mgmnt info ser and prot over tcp/ip
    cookie-jar - authentication scheme
    csnet-ns - csnet mailbox nameserver protocol
    daytime - daytime protocol
    dcn-meas - dcn measurement subsystems protocol
    dcp - device control protocol
    dgp - dissimilar gateway protocol
    discard - discard protocol
    dmf-mail - digest message format for mail
    domain - domain name system
    echo - echo protocol
    egp - exterior gateway protocol
    ehf-mail - encoding header field for mail
    emcon - emission control protocol
    emfis-cntl - emfis control service
    emfis-data - emfis data service
    fconfig - fujitsu config protocol
    finger - finger protocol
    ftp - file transfer protocol
    ftp-data - file transfer protocol data

    reynolds & postel [page 226]

    rfc 1700 assigned numbers october 1994

    ggp - gateway gateway protocol
    graphics - graphics protocol
    hmp - host monitoring protocol
    host2-ns - host2 name server
    hostname - hostname protocol
    icmp - internet control message protocol
    igmp - internet group management protocol
    igp - interior gateway protocol
    imap2 - interim mail access protocol version 2
    ingres-net - ingres-net service
    ip - internet protocol
    ipcu - internet packet core utility
    ippc - internet pluribus packet core
    ip-arc - internet protocol on arcnet
    ip-arpa - internet protocol on arpanet
    ip-cmprs - compressing tcp/ip headers
    ip-dc - internet protocol on dc networks
    ip-dvmrp - distance vector multicast routing protocol
    ip-e - internet protocol on ethernet networks
    ip-ee - internet protocol on exp. ethernet nets
    ip-fddi - transmission of ip over fddi
    ip-hc - internet protocol on hyperchannnel
    ip-ieee - internet protocol on ieee 802
    ip-ipx - transmission of 802.2 over ipx networks
    ip-mtu - ip mtu discovery options
    ip-netbios - internet protocol over netbios networks
    ip-slip - transmission of ip over serial lines
    ip-wb - internet protocol on wideband network
    ip-x25 - internet protocol on x.25 networks
    irtp - internet reliable transaction protocol
    isi-gl - isi graphics language protocol
    iso-tp4 - iso transport protocol class 4
    iso-tsap - iso tsap
    la-maint - imp logical address maintenance
    larp - locus address resoultion protocol
    ldp - loader debugger protocol
    leaf-1 - leaf-1 protocol
    leaf-2 - leaf-2 protocol
    link - link protocol
    loc-srv - location service
    login - login host protocol
    mail - format of electronic mail messages
    merit-inp - merit internodal protocol
    metagram - metagram relay
    mib - management information base
    mit-ml-dev - mit ml device
    mfe-nsp - mfe network services protocol
    mit-subnet - mit subnet support

    reynolds & postel [page 227]

    rfc 1700 assigned numbers october 1994

    mit-dov - mit dover spooler
    mpm - internet message protocol (multimedia mail)
    mpm-flags - mpm flags protocol
    mpm-snd - mpm send protocol
    msg-auth - msg authentication protocol
    msg-icp - msg icp protocol
    mux - multiplexing protocol
    nameserver - host name server
    netbios-dgm - netbios datagram service
    netbios-ns - netbios name service
    netbios-ssn - netbios session service
    netblt - bulk data transfer protocol
    neted - network standard text editor
    netrjs - remote job service
    ni-ftp - ni file transfer protocol
    ni-mail - ni mail protocol
    nicname - who is protocol
    nfile - a file access protocol
    nntp - network news transfer protocol
    nsw-fe - nsw user system front end
    ntp - network time protocol
    nvp-ii - network voice protocol
    ospf - open shortest path first interior gw protocol
    pcmail - pcmail transport protocol
    pop2 - post office protocol - version 2
    pop3 - post office protocol - version 3
    ppp - point-to-point protocol
    prm - packet radio measurement
    pup - pup protocol
    pwdgen - password generator protocol
    quote - quote of the day protocol
    rarp - a reverse address resolution protocol
    ratp - reliable asynchronous transfer protocol
    re-mail-ck - remote mail checking protocol
    rdp - reliable data protocol
    rip - routing information protocol
    rje - remote job entry
    rlp - resource location protocol
    rtelnet - remote telnet service
    rvd - remote virtual disk protocol
    sat-expak - satnet and backroom expak
    sat-mon - satnet monitoring
    sep - sequential exchange protocol
    sftp - simple file transfer protocol
    sgmp - simple gateway monitoring protocol
    snmp - simple network management protocol
    smi - structure of management information
    smtp - simple mail transfer protocol

    reynolds & postel [page 228]

    rfc 1700 assigned numbers october 1994

    sqlsrv - sql service
    st - stream protocol
    statsrv - statistics service
    su-mit-tg - su/mit telnet gateway protocol
    sun-rpc - sun remote procedure call
    supdup - supdup protocol
    sur-meas - survey measurement
    swift-rvf - remote virtual file protocol
    tacacs-ds - tacacs-database service
    tacnews - tac news
    tcp - transmission control protocol
    tcp-aco - tcp alternate checksum option
    telnet - telnet protocol
    tftp - trivial file transfer protocol
    thinwire - thinwire protocol
    time - time server protocol
    tp-tcp - iso transport service on top of the tcp
    trunk-1 - trunk-1 protocol
    trunk-2 - trunk-2 protocol
    ucl - university college london protocol
    udp - user datagram protocol
    nntp - network news transfer protocol
    users - active users protocol
    uucp-path - uucp path service
    via-ftp - via systems-file transfer protocol
    visa - visa protocol
    vmtp - versatile message transaction protocol
    wb-expak - wideband expak
    wb-mon - wideband monitoring
    xnet - cross net debugger
    xns-idp - xerox ns idp

    references

    [rfc952] harrenstien, k., stahl, m., and e. feinler, "dod internet
    host table specification", rfc 952, sri, october 1985.

    []

    url = ftp://ftp.isi.edu/…s/iana/assignments/service-names

    reynolds & postel [page 229]

    rfc 1700 assigned numbers october 1994

    security considerations

    security issues are not discussed in this memo.

    authors' addresses

    joyce k. reynolds
    usc/information sciences institute
    4676 admiralty way
    marina del rey, california 90292-6695

    phone: +1 310-822-1511
    email: jkrey@isi.edu

    jon postel
    usc/information sciences institute
    4676 admiralty way
    marina del rey, california 90292-6695

    phone: +1 310-822-1511
    email: postel@isi.edu

    []

    reynolds & postel [page 230]
  • obsolete edilmis, yerini http://www.iana.org/numbers.html sayfasina birakmistir.
    (bkz: rfc 3232)
hesabın var mı? giriş yap