Lecture Notes for Client-Server Interfaces

17 April 2001 - Multi-protocol servers


  1. what - a single server that responds to more than one protocol

    1. a service defined over more than one transport protocol

    2. internet services - echo, discard, daytime, chargen, time, domain, sunrpc, ldap, ldaps

    3. host-specific services - ntp

    4. unix services - kerberos-adm, kerberos, ufsd, www-ldap-gw, nfsd, lockd

  2. these are multiple transport protocols, not application protocols

  3. why - a more difficult question

    1. client choice - reliability and overhead vs unreliability and speed

    2. client necessity - system types

    3. administrator choice - pre-empts client choice

    4. process sharing

    5. code sharing - ever hear of libraries

    6. data administration and sharing

    7. hardware sharing

    8. not-yet standard protocols - e-commerce

  4. server architecture

    1. asynchronous io is required - n listener sockets

    2. concurrent, single-threaded servers are multi-protocol ready

    3. single-threaded servers are also ready - asynchrony may be missing

    4. concurrent servers may be missing asynchrony too

  5. comments

    1. gateways are multi-protocol servers

    2. printers are multi-protocol servers (sorta)

    3. multi-protocol issues are important below transport

    4. don't forget multi-protocol clients


This page last modified on 27 April 2001.