Transport and network layer form of addressing

thomas130thomas130 Member Posts: 184
Hello

I have got a question of my coursework which goes like this

"The transport layer and network layer each have their own form of addressing. Compare and contrast these forms and how they relate to the functions of the layers ?"

I am a little stuck as I’m not too sure what I really meant to explain as I don’t whether I am meant to discuss things like tcp and udp or am I meant to discuss what is in a tcp segment like source port etc.

I not looking so much for the answer If someone could point me in the right direction I would be very grateful

Comments

  • miller811miller811 Member Posts: 897
    I don't claim to be an expert, but I sure would like to become one someday.

    Quest for 11K pages read in 2011
    Page Count total to date - 1283
  • thomas130thomas130 Member Posts: 184
    Would you say I just need to put this into my own words to answer the question

    Thank you for posting the link for the information anyway

    NETWORK LAYER

    The network layer controls the operation of the subnet, deciding which physical path the data should take based on network conditions, priority of service, and other factors. It provides:

    • Routing: routes frames among networks.
    • Subnet traffic control: routers (network layer intermediate systems) can instruct a sending station to "throttle back" its frame transmission when the router's buffer fills up.
    • Frame fragmentation: if it determines that a downstream router's maximum transmission unit (MTU) size is less than the frame size, a router can fragment a frame for transmission and re-assembly at the destination station.
    • Logical-physical address mapping: translates logical addresses, or names, into physical addresses.
    • Subnet usage accounting: has accounting functions to keep track of frames forwarded by subnet intermediate systems, to produce billing information.
    Communications Subnet

    The network layer software must build headers so that the network layer software residing in the subnet intermediate systems can recognize them and use them to route data to the destination address.

    This layer relieves the upper layers of the need to know anything about the data transmission and intermediate switching technologies used to connect systems. It establishes, maintains and terminates connections across the intervening communications facility (one or several intermediate systems in the communication subnet).

    In the network layer and the layers below, peer protocols exist between a node and its immediate neighbor, but the neighbor may be a node through which data is routed, not the destination station. The source and destination stations may be separated by many intermediate systems. uparrow.gifBack to the top
    TRANSPORT LAYER

    The transport layer ensures that messages are delivered error-free, in sequence, and with no losses or duplications. It relieves the higher layer protocols from any concern with the transfer of data between them and their peers.

    The size and complexity of a transport protocol depends on the type of service it can get from the network layer. For a reliable network layer with virtual circuit capability, a minimal transport layer is required. If the network layer is unreliable and/or only supports datagrams, the transport protocol should include extensive error detection and recovery.

    The transport layer provides:
    • Message segmentation: accepts a message from the (session) layer above it, splits the message into smaller units (if not already small enough), and passes the smaller units down to the network layer. The transport layer at the destination station reassembles the message.
    • Message acknowledgment: provides reliable end-to-end message delivery with acknowledgments.
    • Message traffic control: tells the transmitting station to "back-off" when no message buffers are available.
    • Session multiplexing: multiplexes several message streams, or sessions onto one logical link and keeps track of which messages belong to which sessions (see session layer).
    Typically, the transport layer can accept relatively large messages, but there are strict message size limits imposed by the network (or lower) layer. Consequently, the transport layer must break up the messages into smaller units, or frames, prepending a header to each frame.

    The transport layer header information must then include control information, such as message start and message end flags, to enable the transport layer on the other end to recognize message boundaries. In addition, if the lower layers do not maintain sequence, the transport header must contain sequence information to enable the transport layer on the receiving end to get the pieces back together in the right order before handing the received message up to the layer above. End-to-end layers

    Unlike the lower "subnet" layers whose protocol is between immediately adjacent nodes, the transport layer and the layers above are true "source to destination" or end-to-end layers, and are not concerned with the details of the underlying communications facility. Transport layer software (and software above it) on the source station carries on a conversation with similar software on the destination station by using message headers and control messages.
  • NeekoNeeko Member Posts: 170
    Just focus on IP Addressing and ports, they're very different and what you've just posted explains why.
  • thomas130thomas130 Member Posts: 184
    Thank you guys for your help
Sign In or Register to comment.