<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Understanding Network Devices]]></title><description><![CDATA[Understanding Network Devices]]></description><link>https://easycn.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Tue, 15 Sep 2026 20:38:38 GMT</lastBuildDate><atom:link href="https://easycn.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Understanding Network Devices]]></title><description><![CDATA[In today’s world about 70% of human population use the Internet daily . But have you ever thought how we connect our Phones or PC or laptop or any devices to this World Wide Web . You connect to a ISP and they provide you a Network device which you u...]]></description><link>https://easycn.hashnode.dev/understanding-network-devices</link><guid isPermaLink="true">https://easycn.hashnode.dev/understanding-network-devices</guid><category><![CDATA[network devices]]></category><category><![CDATA[ChaiCode]]></category><category><![CDATA[Chaiaurcode]]></category><dc:creator><![CDATA[SAMIT MANDAL]]></dc:creator><pubDate>Sat, 24 Jan 2026 13:16:01 GMT</pubDate><content:encoded><![CDATA[<p>In today’s world about 70% of human population use the Internet daily . But have you ever thought how we connect our Phones or PC or laptop or any devices to this World Wide Web . You connect to a ISP and they provide you a Network device which you use to surf web , pay bills , play Videogame or Learn something on the Internet . But what are these Network devices -</p>
<p>Network devices are machines which computers use to communicate and interact between themselves on a network . Depending on their functionality, these devices performs routing, protocol conversion, signal regeneration , packet switching etc. to ensure reliable, efficient, and secure communication.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1769235025782/b80cd30e-1b0b-4959-83cd-a65c76b4e11f.png" alt class="image--center mx-auto" /></p>
<p>Now lets talk about these Network Devices-</p>
<h2 id="heading-physical-layer-devices">Physical Layer Devices :</h2>
<p>These devices works with electrical signal or optical signal , they don’t understand IP addresses or MAC addresses .</p>
<h3 id="heading-hub">Hub :</h3>
<p>It acts as a connection point for multiple devices like-pc, phone , printer etc. and act as a junction point where data from one devices is broadcasted to others.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1769236525627/87d06a71-f651-46c8-a82a-650a08685a11.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-repeater">Repeater :</h3>
<p>It is a hardware device that receives weak signal cleans it up , restores it’s original strength and retransmit it . It extends WIFI range and Ethernet cable over 100m .</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1769236825318/0bea5cf8-e62f-4cd0-ac5a-40ff9f044ca2.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-modem">Modem :</h3>
<p>A Modem or a Modular-DE modular is a important device which converts digital signal from our devices like- pc to analog signal for the transmission in the physical lines and vise-versa . It connects our PC to the ISP.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1769237114093/d748ce0f-fd8a-4e77-a4c9-da95665e2627.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-data-link-layer-devices">Data Link Layer Devices :</h2>
<p>These Devices work with Physical Addresses.</p>
<h3 id="heading-switch">Switch :</h3>
<p>Unlike a Hub, a Switch learns the MAC address of every connected device. It sends data <strong>only</strong> to the specific port where the destination device is connected.</p>
<h3 id="heading-bridge">Bridge :</h3>
<p> Filters traffic based on MAC addresses to keep local traffic local, reducing congestion. Largely replaced by Switches (which are essentially multi-port bridges).</p>
<h3 id="heading-access-point">Access Point :</h3>
<p>Creates a wireless LAN , It acts as a bridge between wired Ethernet and wireless WiFi devices.</p>
<h2 id="heading-network-layer-devices"><strong>Network Layer Devices :</strong></h2>
<p>These devices work with IP Addresses (Logical Addresses). They connect different networks together.</p>
<h3 id="heading-router">Router :</h3>
<p>Connects multiple networks (e.g., Home LAN to the Internet WAN). it uses IP Addresses to determine the best path for data packets to travel. It maintains a Routing Table to make these decisions.</p>
<h2 id="heading-advanced-processing-devices"><strong>Advanced Processing Devices :</strong></h2>
<h3 id="heading-gateway"><strong>Gateway :</strong></h3>
<p>A translator between two dissimilar networks. It can convert protocols, data formats, or architectures (e.g., connecting a TCP/IP network to a legacy Mainframe network).</p>
<h3 id="heading-firewall">Firewall :</h3>
<p>This is a Security Guard who Controls incoming and outgoing traffic based on security rules.</p>
<p>firewall Can be of two types - Hardware and Software .</p>
<p>It act as a barrier between a trusted network and an untrusted network like the Internet. It protects systems from unauthorized access, malicious threats, and can perform content filtering. </p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1769260261350/9dc480fb-dba2-48ec-a502-4df29344f0da.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-confusion-between-devices">Confusion between devices :</h2>
<h3 id="heading-switch-vs-hub">Switch vs Hub :</h3>
<p>A <strong>hub is like a loudspeaker</strong> in a classroom. Whatever data comes in, it <strong>sends to ALL computers</strong> connected to it. Even if the message is for only 1 PC, <strong>everyone gets it</strong>.</p>
<p>but A <strong>switch is like a teacher giving a note to only one student</strong>. It sends data <strong>only to the correct computer</strong>, not all. It remembers devices using <strong>MAC address</strong>.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1769260105528/405c60f5-9ea7-44f4-aec0-65d622d382ae.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-router-vs-modem">Router vs Modem :</h3>
<p>Modem Brings <strong>internet from your ISP company to your home &amp; Router</strong> takes internet from modem and <strong>shares it to multiple devices</strong> like: PC , laptop , phones etc.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1769260153185/788d9573-9ebf-4a2f-89a5-d0cc0248023a.png" alt class="image--center mx-auto" /></p>
]]></content:encoded></item></channel></rss>