{"id":1231,"date":"2025-07-29T15:06:32","date_gmt":"2025-07-29T15:06:32","guid":{"rendered":"https:\/\/www.zframez.com\/articles\/?p=1231"},"modified":"2025-07-29T15:06:35","modified_gmt":"2025-07-29T15:06:35","slug":"networking-terminologies-a-beginners-guide-part-2","status":"publish","type":"post","link":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2","title":{"rendered":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2"},"content":{"rendered":"<body>\n<p>This post continues from Part 1 and covers a few more important networking concepts. These terms often come up when learning how data moves through a network, especially when understanding how devices identify each other, how applications communicate, and how data is structured at each layer.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>1. MAC Address \u2013 Device-Level Identification<\/strong><\/p>\n\n\n\n<p>A MAC (Media Access Control) address is a unique identifier assigned to a device\u2019s network interface card (NIC). It works at the Data Link layer (Layer 2) and is mainly used for communication within a local area network.<\/p>\n\n\n\n<p>Format:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Usually shown in hexadecimal format.<\/li>\n\n\n\n<li>Example: 00:1A:2B:3C:4D:5E or 00-1A-2B-3C-4D-5E<\/li>\n<\/ul>\n\n\n\n<p>Purpose:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>MAC addresses are factory-assigned by the NIC manufacturer, and they are meant to be globally unique.<\/li>\n\n\n\n<li>Though often described as being \u201cburned into the hardware,\u201d most operating systems allow users to manually change or override the MAC address via software configuration.<\/li>\n\n\n\n<li>Switches use MAC addresses to forward Ethernet frames to the correct destination within a LAN.<\/li>\n<\/ul>\n\n\n\n<p><strong>MAC addresses are used to represent the Next-Hop (Next device) in communication.<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>2. Port Numbers \u2013 Process-to-Process Communication<\/strong><\/p>\n\n\n\n<p>When two devices communicate, it\u2019s not enough to just reach the device (IP address) \u2014 we also need to reach the correct <strong>application or process<\/strong> on that device. That\u2019s where <strong>port numbers<\/strong> come in.<\/p>\n\n\n\n<p>Port numbers are part of the <strong>Transport layer (Layer 4)<\/strong> and are used by protocols like TCP and UDP.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Web traffic: Port 80 (HTTP), Port 443 (HTTPS)<\/li>\n\n\n\n<li>SSH: Port 22<\/li>\n\n\n\n<li>DNS: Port 53<\/li>\n<\/ul>\n\n\n\n<p><strong>Port Ranges:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><td><strong>Range<\/strong><\/td><td><strong>Purpose<\/strong><\/td><\/tr><\/thead><tbody><tr><td>0 \u2013 1023<\/td><td><strong>Well-known ports<\/strong> (e.g., HTTP, FTP)<\/td><\/tr><tr><td>1024 \u2013 49151<\/td><td><strong>Registered ports<\/strong> (for user processes)<\/td><\/tr><tr><td>49152 \u2013 65535<\/td><td><strong>Dynamic\/Ephemeral ports<\/strong> (temporary)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>When your browser connects to a website:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Destination port = 443 (HTTPS)<\/li>\n\n\n\n<li>Source port = some <strong>random dynamic port<\/strong> (e.g., 51234) assigned temporarily<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>3. Protocol Data Unit (PDU) \u2013 The Payload at Each Layer<\/strong><\/p>\n\n\n\n<p>A <strong>Protocol Data Unit (PDU)<\/strong> is the <strong>formatted unit of data<\/strong> that each layer of the OSI model works with. As data moves down the layers, it gets wrapped with the necessary headers at each stage.<\/p>\n\n\n\n<p>Here\u2019s how the PDU is named at each layer:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><td><strong>OSI Layer<\/strong><\/td><td><strong>PDU Name<\/strong><\/td><\/tr><\/thead><tbody><tr><td>Application<\/td><td>Data<\/td><\/tr><tr><td>Transport<\/td><td>Segment (TCP) \/ Datagram (UDP)<\/td><\/tr><tr><td>Network<\/td><td>Packet or Datagram<\/td><\/tr><tr><td>Data Link<\/td><td>Frame<\/td><\/tr><tr><td>Physical<\/td><td>Bits<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A user sends a message \u2192 becomes application <strong>data<\/strong><\/li>\n\n\n\n<li>Transport adds TCP header \u2192 becomes a <strong>segment<\/strong><\/li>\n\n\n\n<li>IP header added \u2192 becomes a <strong>packet<\/strong><\/li>\n\n\n\n<li>Ethernet header \u2192 becomes a <strong>frame<\/strong><\/li>\n\n\n\n<li>Converted to bits \u2192 sent on the wire<\/li>\n<\/ul>\n\n\n\n<p>Understanding these terms helps when you\u2019re analyzing packet captures or discussing where certain headers are added.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>4. Types of Communication \u2013 Who Gets the Data?<\/strong><\/p>\n\n\n\n<p>When a device sends data, it can send it to one or many recipients. Here are the common types of network communication:<\/p>\n\n\n\n<p><strong>Unicast<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>One-to-one communication<\/li>\n\n\n\n<li>Most common form<\/li>\n\n\n\n<li>Example: your laptop browsing a website<\/li>\n<\/ul>\n\n\n\n<p><strong>Multicast<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>One-to-many communication (but not to everyone)<\/li>\n\n\n\n<li>Used in video streaming, online classrooms, routing protocols (e.g., OSPF)<\/li>\n\n\n\n<li>IP Range: 224.0.0.0 to 239.255.255.255<\/li>\n<\/ul>\n\n\n\n<p><strong>Broadcast<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>One-to-all communication in a local network<\/li>\n\n\n\n<li>Sent to all devices in the same broadcast domain<\/li>\n\n\n\n<li>Example: ARP request (Who has 192.168.1.1?)<\/li>\n\n\n\n<li>Limited to Layer 2 networks (e.g., switches)<\/li>\n<\/ul>\n\n\n\n<p><strong>Anycast<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>One-to-nearest communication<\/li>\n\n\n\n<li>Used mostly in IPv6 and CDN networks (like DNS root servers)<\/li>\n\n\n\n<li>All receivers share the same IP, but the <strong>closest one responds<\/strong><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><strong>Summary Table<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><td><strong>Term<\/strong><\/td><td><strong>What It Refers To<\/strong><\/td><\/tr><\/thead><tbody><tr><td>MAC Address<\/td><td>Unique Layer 2 identifier for a device<\/td><\/tr><tr><td>Port Number<\/td><td>Layer 4 identifier for application traffic<\/td><\/tr><tr><td>PDU<\/td><td>Data format unit used at each OSI layer<\/td><\/tr><tr><td>Unicast<\/td><td>One-to-one communication<\/td><\/tr><tr><td>Multicast<\/td><td>One-to-selected group communication<\/td><\/tr><tr><td>Broadcast<\/td><td>One-to-all in the same network<\/td><\/tr><tr><td>Anycast<\/td><td>One-to-nearest receiver (IP shared)<\/td><\/tr><tr><td><\/td><td>\u00a0<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\">\n\n\n\n<p><\/p>\n<\/body>","protected":false},"excerpt":{"rendered":"<p>This post continues from Part 1 and covers a few more important networking concepts. These terms often come up when learning how data moves through a network, especially when understanding how devices identify each other, how applications communicate, and how data is structured at each layer. 1. MAC Address \u2013 Device-Level Identification A MAC (Media [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"wp-custom-template-post-with-sidebar2","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[330],"tags":[339,338,40,335,337,336,334,332,333],"class_list":["post-1231","post","type-post","status-publish","format-standard","hentry","category-networking-fundamentals","tag-anycast","tag-broadcast","tag-mac-address","tag-multicast","tag-networking-basics","tag-pdu","tag-port-numbers","tag-protocol-data-unit","tag-unicast"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2 - Tutorials<\/title>\n<meta name=\"description\" content=\"Understand key networking concepts like MAC addresses, port numbers, protocol data units (PDU), and communication types including unicast, multicast, and broadcast.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Networking Basics: MAC Address, Port Numbers, PDU &amp; Communication Types\" \/>\n<meta property=\"og:description\" content=\"Explore important networking terms including MAC addresses, port ranges, PDU formats across layers, and unicast vs multicast vs broadcast.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2\" \/>\n<meta property=\"og:site_name\" content=\"Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/zframez\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-29T15:06:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-29T15:06:35+00:00\" \/>\n<meta name=\"author\" content=\"sajith achipra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@zframez\" \/>\n<meta name=\"twitter:site\" content=\"@zframez\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sajith achipra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2\"},\"author\":{\"name\":\"sajith achipra\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/person\\\/8b3b88007644501771d2452d3cc80f41\"},\"headline\":\"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2\",\"datePublished\":\"2025-07-29T15:06:32+00:00\",\"dateModified\":\"2025-07-29T15:06:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2\"},\"wordCount\":580,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#organization\"},\"keywords\":[\"anycast\",\"broadcast\",\"mac address\",\"multicast\",\"networking basics\",\"pdu\",\"port numbers\",\"protocol data unit\",\"unicast\"],\"articleSection\":[\"Networking Fundamentals\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2\",\"url\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2\",\"name\":\"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2 - Tutorials\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#website\"},\"datePublished\":\"2025-07-29T15:06:32+00:00\",\"dateModified\":\"2025-07-29T15:06:35+00:00\",\"description\":\"Understand key networking concepts like MAC addresses, port numbers, protocol data units (PDU), and communication types including unicast, multicast, and broadcast.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/networking-fundamentals\\\/networking-terminologies-a-beginners-guide-part-2#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Tutorials\",\"item\":\"https:\\\/\\\/www.zframez.com\\\/articles\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#website\",\"url\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/\",\"name\":\"zframez tutorials\",\"description\":\"Learn networking bit by bit\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#organization\",\"name\":\"zframez technologies\",\"url\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/zframez-logo.jpg?fit=864%2C864&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/www.zframez.com\\\/articles\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/zframez-logo.jpg?fit=864%2C864&ssl=1\",\"width\":864,\"height\":864,\"caption\":\"zframez technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/zframez\\\/\",\"https:\\\/\\\/x.com\\\/zframez\",\"https:\\\/\\\/www.instagram.com\\\/zframez_technologies\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.zframez.com\\\/articles\\\/#\\\/schema\\\/person\\\/8b3b88007644501771d2452d3cc80f41\",\"name\":\"sajith achipra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g\",\"caption\":\"sajith achipra\"},\"sameAs\":[\"http:\\\/\\\/www.zframez.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2 - Tutorials","description":"Understand key networking concepts like MAC addresses, port numbers, protocol data units (PDU), and communication types including unicast, multicast, and broadcast.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2","og_locale":"en_US","og_type":"article","og_title":"Networking Basics: MAC Address, Port Numbers, PDU & Communication Types","og_description":"Explore important networking terms including MAC addresses, port ranges, PDU formats across layers, and unicast vs multicast vs broadcast.","og_url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2","og_site_name":"Tutorials","article_publisher":"https:\/\/www.facebook.com\/zframez\/","article_published_time":"2025-07-29T15:06:32+00:00","article_modified_time":"2025-07-29T15:06:35+00:00","author":"sajith achipra","twitter_card":"summary_large_image","twitter_creator":"@zframez","twitter_site":"@zframez","twitter_misc":{"Written by":"sajith achipra","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2#article","isPartOf":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2"},"author":{"name":"sajith achipra","@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/person\/8b3b88007644501771d2452d3cc80f41"},"headline":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2","datePublished":"2025-07-29T15:06:32+00:00","dateModified":"2025-07-29T15:06:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2"},"wordCount":580,"commentCount":0,"publisher":{"@id":"https:\/\/www.zframez.com\/articles\/#organization"},"keywords":["anycast","broadcast","mac address","multicast","networking basics","pdu","port numbers","protocol data unit","unicast"],"articleSection":["Networking Fundamentals"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2","url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2","name":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2 - Tutorials","isPartOf":{"@id":"https:\/\/www.zframez.com\/articles\/#website"},"datePublished":"2025-07-29T15:06:32+00:00","dateModified":"2025-07-29T15:06:35+00:00","description":"Understand key networking concepts like MAC addresses, port numbers, protocol data units (PDU), and communication types including unicast, multicast, and broadcast.","breadcrumb":{"@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-2#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Tutorials","item":"https:\/\/www.zframez.com\/articles"},{"@type":"ListItem","position":2,"name":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 2"}]},{"@type":"WebSite","@id":"https:\/\/www.zframez.com\/articles\/#website","url":"https:\/\/www.zframez.com\/articles\/","name":"zframez tutorials","description":"Learn networking bit by bit","publisher":{"@id":"https:\/\/www.zframez.com\/articles\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.zframez.com\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.zframez.com\/articles\/#organization","name":"zframez technologies","url":"https:\/\/www.zframez.com\/articles\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/zframez-logo.jpg?fit=864%2C864&ssl=1","contentUrl":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/zframez-logo.jpg?fit=864%2C864&ssl=1","width":864,"height":864,"caption":"zframez technologies"},"image":{"@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/zframez\/","https:\/\/x.com\/zframez","https:\/\/www.instagram.com\/zframez_technologies\/"]},{"@type":"Person","@id":"https:\/\/www.zframez.com\/articles\/#\/schema\/person\/8b3b88007644501771d2452d3cc80f41","name":"sajith achipra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3d9f27c5311500982b6f19d03d0506f1c328f30f51d8d5f73f46577687fd81f8?s=96&d=mm&r=g","caption":"sajith achipra"},"sameAs":["http:\/\/www.zframez.com"]}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":1221,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/networking-terminologies-a-beginners-guide-part-1","url_meta":{"origin":1231,"position":0},"title":"Networking Terminologies \u2013 A Beginner\u2019s Guide Part 1","author":"sajith achipra","date":"July 29, 2025","format":false,"excerpt":"Understanding how computer networks work starts with learning a few essential terms. This post introduces some of the core networking concepts in a simple and practical way. If you're just getting started with networking or brushing up on the basics, this will give you a solid foundation to build on.\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/07\/OSI-vs-TCP-IP-1.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":11,"url":"https:\/\/www.zframez.com\/articles\/switching\/what-is-an-ethernet-switch-understanding-how-network-switches-work","url_meta":{"origin":1231,"position":1},"title":"Understanding How Ethernet Switches  Work","author":"sajith achipra","date":"June 26, 2024","format":false,"excerpt":"An Overview of Mac Learning, Flooding, Collision and Broadcast Domain in Ethernet Switches This tutorial answers key interview questions about Ethernet switching to help you understand the Ethernet switch and the layer 2 frame forwarding process. You will learn how the switch works, why it is better than hubs, and\u2026","rel":"","context":"In &quot;switching&quot;","block_context":{"text":"switching","link":"https:\/\/www.zframez.com\/articles\/category\/switching"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/how-a-switch-works.png?fit=1200%2C588&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/how-a-switch-works.png?fit=1200%2C588&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/how-a-switch-works.png?fit=1200%2C588&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/how-a-switch-works.png?fit=1200%2C588&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2024\/07\/how-a-switch-works.png?fit=1200%2C588&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":1277,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-ethernet-features-devices-and-frame-format","url_meta":{"origin":1231,"position":2},"title":"Understanding Ethernet: Features, Devices, and Frame Format","author":"sajith achipra","date":"August 6, 2025","format":false,"excerpt":"Ethernet Basics: Features, Devices, and Frame Structure Ethernet is the most widely used technology in local wired networks. Almost all the LANs we work with today use Ethernet to connect systems and devices. In this tutorial, we\u2019ll look at some important features of Ethernet, the devices used, and how the\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DIX-ethernet-header-structure.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DIX-ethernet-header-structure.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DIX-ethernet-header-structure.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DIX-ethernet-header-structure.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DIX-ethernet-header-structure.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/DIX-ethernet-header-structure.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":1281,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-address-resolution-protocol-how-arp-works","url_meta":{"origin":1231,"position":3},"title":"Understanding Address Resolution Protocol \u2013 How ARP Works","author":"sajith achipra","date":"August 11, 2025","format":false,"excerpt":"ARP \u00a0- Address Resolution Protocol ARP is used to find the MAC address of the next device to which the packet should be sent. When a device creates a packet, in the Ethernet header we need two MAC addresses - source MAC and destination MAC.The source MAC will always be\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Screenshot-2025-08-11-220219.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":1243,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-ip-addressing-cidr-subnet-masks-network-and-host-calculation","url_meta":{"origin":1231,"position":4},"title":"Understanding IP Addressing \u2013 CIDR, Subnet Masks, Network and Host Calculation","author":"sajith achipra","date":"July 30, 2025","format":false,"excerpt":"Understanding IP Addressing \u2013 Network and Host, CIDR, and Address Calculations When we look at an IP address like 192.168.1.20, it just looks like a bunch of numbers. But the truth is, that address is made up of two parts: one part tells us which network it belongs to, and\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1256,"url":"https:\/\/www.zframez.com\/articles\/networking-fundamentals\/understanding-network-addresses-and-routing-tables-in-ip-networks","url_meta":{"origin":1231,"position":5},"title":"Understanding Network Addresses and Routing Tables in IP Networks","author":"sajith achipra","date":"August 1, 2025","format":false,"excerpt":"Understanding Network Addresses and Their Role in Routing When we assign an IP address to a device, like 1.2.3.4\/24, it's not just about identifying a single machine. That IP belongs to a network, and the address 1.2.3.0 in this case is known as the network address. But why do we\u2026","rel":"","context":"In &quot;Networking Fundamentals&quot;","block_context":{"text":"Networking Fundamentals","link":"https:\/\/www.zframez.com\/articles\/category\/networking-fundamentals"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/www.zframez.com\/articles\/wp-content\/uploads\/2025\/08\/Routing-table-of-a-PC-with-2-interfaces.png?resize=1400%2C800&ssl=1 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts\/1231","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/comments?post=1231"}],"version-history":[{"count":1,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts\/1231\/revisions"}],"predecessor-version":[{"id":1232,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/posts\/1231\/revisions\/1232"}],"wp:attachment":[{"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/media?parent=1231"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/categories?post=1231"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zframez.com\/articles\/wp-json\/wp\/v2\/tags?post=1231"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}