Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Network Devices (Hub, Repeater, Bridge, Switch, Router, Gateways and Brouter)
Network devices or networking hardware are the physical devices that are used for establishing connections and facilitating interaction between different devices in a computer network. Each device operates at specific layers of the OSI model and serves distinct purposes in network communication.
Hub
Hubs work in the physical layer of the OSI model. A hub is a device for connecting multiple Ethernet devices and making them act as a single network segment. It has multiple input and output ports where a signal introduced at any port appears at the output of every port except the original incoming port.
Hubs operate with both digital and analog data but do not perform packet filtering or addressing functions. They send data packets to all connected devices, creating a single collision domain.
Types of Hub
Active Hub − Amplifies and regenerates signals while forwarding them
Passive Hub − Simply connects devices without signal amplification
Intelligent Hub − Provides additional features like network monitoring
Repeater
A repeater operates at the physical layer of the OSI model and serves to extend network reach by regenerating weakened signals.
Connects two segments of a network cable
Regenerates signals to proper amplitudes and forwards them
Copies signals bit by bit and regenerates them at original strength
Functions as a 2-port device
Bridge
A bridge operates at the data link layer of the OSI model. It reads MAC addresses but cannot interpret IP addresses. Bridges examine the destination address in data packets to determine forwarding decisions, reducing unnecessary traffic by filtering packets based on MAC address tables.
Bridges divide networks into separate collision domains while maintaining a single broadcast domain, making them more intelligent than hubs.
Switch
Switches operate primarily at the data link layer but can function at multiple OSI layers. A device operating at multiple layers simultaneously is called a multilayer switch.
Switches can detect errors before forwarding data, improving efficiency and performance. They maintain MAC address tables to make intelligent forwarding decisions, essentially functioning as multi-port bridges with dedicated bandwidth per port.
Router
Routers operate at the network layer to join multiple networks together by routing data packets based on IP addresses.
Connect LANs and WANs using dynamically updated routing tables
Create separate broadcast domains for connected hosts
Perform traffic directing functions on the Internet
Can connect logical groups of devices (subnets) with different network addresses
Types of Routers
Static routers − Use manually configured routing tables
Dynamic routers − Use adaptive routing protocols to automatically update routes
Gateway
A gateway is an internetworking device capable of joining networks that use different protocols. Gateways can operate at any level of the OSI model, from physical to application layer.
Gateways can be implemented in software, hardware, or a combination of both. They perform protocol translation between different network architectures and serve as entry/exit points between networks.
Brouter
A brouter combines the functionality of a bridge and router, operating at both data link and network layers of the OSI model.
Can connect networks using different protocols
Configurable to work as bridge-only or router-only
As a bridge: forwards packets using MAC addresses within the same protocol
As a router: routes packets using IP addresses across different networks
Comparison of Network Devices
| Device | OSI Layer | Function | Domain Separation |
|---|---|---|---|
| Hub | Physical | Signal regeneration | None |
| Bridge | Data Link | MAC-based forwarding | Collision |
| Switch | Data Link | Intelligent MAC forwarding | Collision |
| Router | Network | IP-based routing | Broadcast & Collision |
| Gateway | All Layers | Protocol translation | Network |
Conclusion
Network devices serve specific functions at different OSI layers, from simple signal regeneration in hubs and repeaters to intelligent routing and protocol translation in routers and gateways. Understanding these devices helps in designing efficient network architectures and troubleshooting connectivity issues.
