0
4.1kviews
Explain the following network connecting devices:

(a) Switch

(b)Router

(c)Gateway

(d) Bridge

(e)Hub

1 Answer
0
83views

Switch:

  • We can have a two-layer switch or a three-layer switch. A three-layer switch is used at the network layer; it is a kind of router. The two-layer switch performs at the physical and data link layers.
  • A two-layer switch is a bridge, a bridge with many ports and a design that allows better (faster) performance. A bridge with a few ports can connect a few LANs together.
  • A bridge with many ports may be able to allocate a unique port to each station, with each station on its own independent entity. This means no competing traffic (no collision, as we saw in Ethernet).
  • A two-layer switch, as a bridge does, makes a filtering decision based on the MAC Address of the frame it received. However, a two-layer switch can be more sophisti­cated.
  • It can have a buffer to hold the frames for processing. It can have a switching factor that forwards the frames faster.
  • Some new two-layer switches, called cut-through switches, have been designed to forward the frame as soon as they check the MAC addresses in the header of the frame.

Router:

  • A router is a three-layer device that routes packets based on their logical addresses (host-to-host addressing).
  • A router normally connects LANs and WANs in the Internet and has a routing table that is used for making decisions about the route. The routing tables are normally dynamic and are updated using routing protocols.
  • Data is grouped into packets, or blocks of data. Each packet has a physical device address as well as logical network address. The network address allows routers to calculate the optimal path to a workstation or computer.

enter image description here

Gateway:

  • A gateway is normally a computer that operates in all five layers of the Internet or seven layers of OSI model. A gateway takes an application message, reads it, and interprets it.
  • This means that it can be used as a connecting device between two internetworks that use different models. For example, a network designed to use the OSI model can be connected to another network using the Internet model.
  • The gateway connecting the two systems can take a frame as it arrives from the first system, move it up to the OSI application layer, and remove the message.

enter image description here

Bridges:

  • A bridge operates in the physical layer as well as in the data link layer. It can regenerate the signal that it receives and as a data link layer device, it can check the physical (MAC) addresses of source and destination contained in the frame. - - The major difference between the bridge and the repeater is that the bridge and the repeater is that the bridge has a filtering capability.
  • That means it can check the destination address of a frame and decide if the frame should be forwarded or dropped. If the frame is forwarded, then the bridge should specify the port over which it should be forwarded.

enter image description here

Hub:

Passive Hubs

A passive hub is just a connector. It connects the wires coming from different branches. In a star-topology Ethernet LAN, a passive hub is just a point where the signals coming from different stations collide; the hub is the collision point. This type of a hub is part of the media; its location in the Internet model is below the physical layer.

Active Hubs :

An active hub is actually a multipart repeater. It is normally used to create connections between stations in a physical star topology. We have seen examples of hubs in some Ethernet implementations (lOBaseT, for example). However, hubs can also be used to create multiple levels of hierarchy, as shown in Figure. The hierarchical use of hubs removes the length limitation of 10Base-T (100 m).

enter image description here

Please log in to add an answer.