Difference between protocol and service interface

14,090

I suggest you to do a tiny research before posting here. ;)

Protocols have two kinds of interfaces:

  1. Peer to peer interface
  2. Service interface.

Take IP for example. In a network or otherwisely host, it's service interface is what it provides for higher leveled protocols. But also IP can send data to the IPs in another host. So it uses its peer to peer interface to communicate.

In other word, all protocols communicate with the layer (in OSI model) below and above it - which it uses service interface for, and also with the same protocol in another host - which it uses peer to peer interface for. ;)

Because of service interface being "in" the protocol, you can not differentiate them. the protocols consist of interfaces.

Share:
14,090

Related videos on Youtube

cjds
Author by

cjds

Hello. I work at Fetch Robotics as a Robototcist doing robot things!! I'm interested in: Social and Web Robotics, and Robot Collaboration Artificial Intelligence Augmented and Mixed Reality

Updated on September 18, 2022

Comments

  • cjds
    cjds over 1 year

    I came across the terms Protocol and Service interface while studying the OSI model and as far as I can tell they seem to be doing the same thing.

    So what's the difference between the protocol and service interface

  • cjds
    cjds over 11 years
    Yep Sorry. Did find the answer with a little bit of research but thanks anyway